* {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: sans-serif;
}
 body {
     background-color: #ffffff;
     color: #333;
     line-height: 1.6;
}
 a {
     text-decoration: none;
     color: #0066cc;
}
 ul {
     list-style: none;
}
 img {
     max-width: 100%;
     height: auto;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.15;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    line-height: 1.15;
}


 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 20px 15px 0 15px; /* top right bottom left */
}
/* Header Styles */
 .header-container {
     background: #fff;
     box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
 .nav-mobile {
     display: none;
}
 .top-header {
     display: block;
}
 .mobile-flex {
     display: flex;
     justify-content: space-between;
     align-items: center;
    /* Ensure mobile-flex occupies full width if needed */
     width: 100%;
}
/* Desktop styles */
 @media (min-width: 1025px) {
    /* Make the top-header a flex container for all four elements */
     .top-header {
         display: flex;
         justify-content: space-between;
         align-items: center;
    }
    /* Flatten the .mobile-flex container so its children act as direct children of .top-header */
     .mobile-flex {
         display: contents;
    }
    /* Now, the direct children of .top-header are: .search-container, .logo, .auth-links, .mobile-nav */
     .top-header > .search-container, .top-header > .logo, .top-header > .auth-links, .top-header > .mobile-nav {
         flex: 1;
         text-align: center;
    }
    /* Optional: Align left/right for the extreme items */
     .search-container {
         text-align: left;
    }
     .mobile-nav {
         text-align: right;
    }
}
 .top-header {
     max-width: 1200px;
     margin: 0 auto;
     padding: 10px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap:100px;
}
 .mobile-flex {
     margin: 0 auto;
     padding: 15px;
     display: flex;
     justify-content: end;
     align-items: center;
     column-gap: 50px;
}
 .search-container {
     position: relative;
     width: 300px;
}
 .search-bar {
     width: 300px;
     padding: 8px 35px 8px 12px;
     border: 1px solid #ccc;
     border-radius: 3px;
     font-size: 15px;
}
 .search-icon {
     position: absolute;
     right: 10px;
     top: 50%;
     transform: translateY(-50%);
     color: var(--muted);
     cursor: pointer;
}
 .logo {
     text-align: center;
}
 .logo img {
     height: 40px;
}
 .auth-links {
     color: var(--muted);
     font-size: 18px;
}
 .auth-links a {
     text-decoration: none;
     color: var(--muted);
}
 .auth-links a:hover {
     color: #333;
}
 .mobile-nav img{
     width: 40px;
}
 .nav-container {
     border-top: 1px solid #eee;
     background: #fff;
}
/* Main Navigation Container */
 .main-nav {
     display: flex;
     gap: 10px;
     padding: 15px;
     align-items: center;
}
/* Each nav item wrapper is inline-block so that items are horizontal */
 .nav-item-wrapper {
     position: relative;
     display: inline-block;
     min-width: max-content;
}
/* Navigation links styling */
 .nav-item {
     color: rgb(0, 0, 0);
     text-decoration: none;
     padding: 10px 15px;
     font-size: 16px;
     font-weight: 500;
     transition: color 0.3s ease;
}
/* Change link color on hover */
 .nav-item:hover {
     color: #f4a261;
}
/* Hide the checkbox used for toggling */
 .toggle-dropdown {
     display: none;
}
/* Style the toggle icon (down arrow) */
 .toggle-icon {
     color: white;
     cursor: pointer;
     margin-left: 5px;
     font-size: 12px;
}
/* Dropdown menu styling */
 .drp-dn {
     display: none;
    /* hidden by default */
     position: absolute;
     top: 100%;
    /* Position it directly below the nav item */
     left: 0;
     background: white;
     border: 1px solid #ddd;
     min-width: 150px;
     flex-direction: column;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     z-index: 100;
}
/* Individual dropdown item styling */
 .dropdn {
     padding: 10px 15px;
     font-size: 14px;
     color: #333;
     border-bottom: 1px solid #eee;
     cursor: pointer;
     transition: background 0.3s ease;
}
/* Last item - remove bottom border */
 .dropdn:last-child {
     border-bottom: none;
}
/* Hover effect for dropdown items */
 .dropdn:hover {
     background: #f8f9fa;
}
/* Toggle the dropdown when the hidden checkbox is checked */
 .toggle-dropdown:checked + .toggle-icon + .drp-dn {
     display: flex;
}
 .nav-item.dropdown::after {
     content: "▼";
     font-size: 8px;
     margin-left: 5px;
     position: relative;
     top: 1px;
}
/* Multicolor border below header */
 .rainbow-bar {
     display: flex;
     height: 6px;
    /* Adjust height if needed */
     width: 100%;
}
 .rainbow-bar div {
     height: 100%;
}
 .color1 {
     background-color: #808080;
     flex: 2;
}
/* Gray */
 .color2 {
     background-color: #FFFF00;
     flex: 2;
}
/* Yellow */
 .color3 {
     background-color: #FF0000;
     flex: 2;
}
/* Red */
 .color4 {
     background-color: #008080;
     flex: 2;
}
/* Teal */
 .color5 {
     background-color: #4df152;
     flex: 2;
}
 .color6 {
     background-color: #d31c8d;
     flex: 2;
}
/* Banner Image */
 .banner-image {
     width: 100%;
     height: 100%;
     background-color: #fff;
     display: flex;
     justify-content: center;
     margin: 20px 0;
     max-height: 190px;
}
/* Breadcrumb */
 .breadcrumb {
     display: flex;
     margin: 10px 0;
     font-size: 15px;
     color: var(--muted);
}
 .breadcrumb a {
     color: var(--muted);
     margin-right: 5px;
}
 .breadcrumb span {
     margin: 0 5px;
     color: #6bad34;
}
/* Page Title */
 .page-title {    
    color: #333;
    font-size: 35;
    font-weight: 700;
    letter-spacing: -0.08rem;
}
/* Category Links */
 .category-links {
     display: flex;
     flex-wrap: wrap;
     margin: 20px 0;
     gap: 20px;
}
 .category-column {
     flex: 1;
     min-width: 200px;
}
 .category-column h3 {
     font-size: 1.2rem;
     margin-bottom: 10px;
     color: #333;
}
 .category-column ul li {
     margin-bottom: 8px;
}
 .category-column ul li a {
     color: #0066cc;
     font-size: 1rem;
}
/* Product Description */
 .product-description {
     margin: 10px 0;
     line-height: 1.8;
     color: var(--muted);
}
 .product-description h3 {
     font-weight: 500;
}

.product-description h2 {
     font-weight: bold;
	 line-height:2.5;
	 
}
.product-description h2::before {  
 content: "❤️ ";
}
.product-description ol {
    padding-left: 1.25rem;
}
.product-description ul li {
     font-weight: 500;
	 font-size:1.17em;
}
.product-description ol li {
     font-weight: 500;
	  font-size:1.17em;
}

/* Product Tabs - Updated to match screenshot exactly */
 .product-tabs {
     display: flex;
     margin: 30px 0;
     gap: 5px;
}
 .tab {
     padding: 12px 25px;
     background: #f5f5f5;
     border-radius: 5px;
     font-size: 18px;
     cursor: pointer;
     color: #333;
     border: none;
     transition: all 0.2s ease;
     min-width: 180px;
}
 .tab.active {
     background: #1162b3;
     color: white;
}
 .tab:hover:not(.active) {
     background: #e5e5e5;
}
/* Products Grid - Updated to match screenshot */
 .products-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 10px;
     margin: 20px 0;
}
 .flex-price {
     display: flex;
     justify-content: space-between;
}
 .product-card h2 {
     /*font-size: 20px;*/
     font-family: sans-serif!important;
}
 .product-card {
     background: #fff;
     border: 0px solid #eee;
     border-radius: 0;
     overflow: hidden;
     transition: transform 0.3s ease;
}
 /*.product-image {
     height: 200px;
     position: relative;
     overflow: hidden;
}
 .product-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
}*/
 .product-info {
     padding: 3px;
}
 .product-title {
     font-size: 20px;
     color: #333;
     margin-bottom: 8px;
     line-height: 1.4;
}
/* .product-description {
     color: var(--muted);
     font-size: 18px;
     margin-bottom: 15px;
     line-height: 1.3;
     font-weight: 400;
}*/
 .product-price {
     font-size: 18px;
     font-weight: bold;
     margin: 10px 0;
}
 .check-it-out {
     background: #ff9900;
     color: white;
     border: none;
     padding: 8px 15px;
     border-radius: 3px;
     font-weight: 500;
     text-transform: uppercase;
     font-size: 14px;
     cursor: pointer;
}
 .check-it-out:hover {
     background: #e68a00;
}
/* Zero Gravity Workstation - Updated to match screenshot */
 .featured-product {
     margin: 30px 0;
}
 .featured-product-card {
     background: #fff;
     border: 1px solid #eee;
     border-radius: 0;
     overflow: hidden;
     padding: 20px;
}
 .featured-product-content {
     display: flex;
     flex-direction: column;
}
 .featured-product-image {
     width: 100%;
     margin-bottom: 15px;
}
 .featured-product-title {
     font-size: 20px;
     font-weight: bold;
     margin-bottom: 10px;
     color: #333;
}
 .featured-product-description {
     color: var(--muted);
     font-size: 16px;
     line-height: 1.6;
     margin-bottom: 15px;
}
 .featured-product-price {
     font-size: 24px;
     color: #ff9900;
     font-weight: bold;
     margin: 10px 0;
     display: flex;
     align-items: baseline;
}
 .price-tag {
     display: flex;
     align-items: baseline;
}
 .price-currency {
     font-size: 16px;
     margin-right: 2px;
}
 .price-amount {
     font-size: 24px;
     font-weight: bold;
}
 .price-cents {
     font-size: 16px;
     margin-left: 1px;
}
 .savings {
     font-size: 16px;
     color: #4CAF50;
     margin-left: 10px;
}
/* Celebrity Message Section - Updated to match screenshot */
 .celebrity-section {
     display: flex;
     background: #fff;
     border: 1px solid #eee;
     border-radius: 0;
     padding: 20px;
     margin: 30px 0;
     box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
/* .celebrity-images {
     flex: 0 0 40%;
}
 .celebrity-images img {
     width: 100%;
     height: auto;
}*/
 .celebrity-info {
     flex: 1;
     padding-left: 20px;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
}
 .celebrity-title {
     font-size: 20px;
     font-weight: bold;
     margin-bottom: 10px;
     color: #333;
}
 .celebrity-description {
     margin-bottom: 20px;
     line-height: 1.6;
     font-size: 18px;
     color: var(--muted);
     font-weight: 400;
}
 .celebrity-price {
     font-size: 24px;
     font-weight: bold;
     margin: 15px 0;
     color: #ff9900;
     display: flex;
     justify-content: space-between;
     align-items: center;
}
 .celebrity-price button {
     width: auto;
     padding: 10px 20px;
}
/* Father's Day Card Section - Updated to match screenshot */
 .card-section {
     display: flex;
     background: #fff;
     border: 1px solid #eee;
     border-radius: 0;
     padding: 20px;
     margin: 30px 0;
     box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
/* .card-image {
     flex: 0 0 40%;
}
 .card-image img {
     width: 100%;
     height: auto;
}*/
 .card-info {
     flex: 1;
     padding-left: 20px;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
}
 .card-title {
     font-size: 20px;
     font-weight: bold;
     margin-bottom: 10px;
     color: #333;
}
 .card-description {
     margin-bottom: 20px;
     line-height: 1.6;
     font-size: 18px;
     color: var(--muted);
     font-weight: 400;
}
 .card-price {
     font-size: 24px;
     font-weight: bold;
     margin: 15px 0;
     color: #ff9900;
     display: flex;
     justify-content: space-between;
     align-items: center;
}
 .card-price button {
     width: auto;
     padding: 10px 20px;
}
/* Pokemon Terrarium Section - Updated to match screenshot */
 .terrarium-section {
     background: #fff;
     border: 1px solid #eee;
     border-radius: 0;
     padding: 20px;
     margin: 30px 0;
     box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
 .terrarium-title {
     font-size: 20px;
     font-weight: bold;
     margin-bottom: 20px;
     color: #333;
}
 .terrarium-content {
     display: flex;
}
/* .terrarium-image {
     flex: 0 0 50%;
}
 .terrarium-image img {
     width: 100%;
     height: auto;
}*/
 .terrarium-info {
     flex: 1;
     padding-left: 20px;
}
 .terrarium-description {
     margin-bottom: 20px;
     line-height: 1.6;
     font-size: 18px;
     color: var(--muted);
     font-weight: 400;
}
 .full-btn {
     padding: 6px 20px !important;
     font-size: 16px;
     background: #ff9900;
     color: white;
     border: none;
     border-radius: 3px;
     font-weight: bold;
     text-transform: uppercase;
     cursor: pointer;
     width: 180px;
     height: 60px;
}
 .terrarium-price {
     font-size: 26px;
     font-weight: bold;
     margin: 15px 0;
     text-align: center;
     color: #ff9900;
}
 .terrarium-button {
     text-align: right;
     display: flex;
     justify-content: space-between;
}
/* Special Offer Section - Updated to match screenshot */
 .special-offer {
     background: #fff;
     border: 1px solid #eee;
     border-radius: 0;
     padding: 20px;
     margin: 30px 0;
     box-shadow: 0 1px 3px rgba(0,0,0,0.1);
     display: flex;
     gap: 15px;
}
 .special-offer-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 15px;
}
 .special-offer-tag {
     display: inline-block;
     background: #ff9900;
     color: white;
     padding: 5px 10px;
     border-radius: 3px;
     font-size: 16px;
     font-weight: bold;
     font-family: Poppins;
}
 .free-shipping {
     display: flex;
     align-items: center;
     color: #043d06;
     font-size: 18px;
     padding: 20px;
     background-color: #eef88f;
     width: 100%;
     justify-content: space-between;
     border-radius: 4px;
}
 .free-shipping i {
     margin-right: 5px;
}
 .special-offer-content {
     padding: 0;
}
 .special-offer-title {
     font-weight: bold;
     margin-bottom: 5px;
     font-size: 16px;
}
 .special-offer-description {
     font-size: 18px;
     color: var(--muted);
     margin-bottom: 10px;
     font-weight: 400;
}
 .special-offer-rating {
     color: #ff9900;
     margin: 10px 0;
}
 .special-offer-details {
     display: flex;
     margin: 15px 0;
     flex-direction:column;
}
 .special-offer-details p {
     font-size: 16px;
     font-weight: 400;
}
 .special-offer-column {
     display: flex;
     flex: 2;
     flex-direction: row;
}
 .special-offer-label p{
     font-weight: 600;
     font-size: 14px;
}
 .special-offer-value {
     font-size: 12px;
     color: var(--muted);
}
/* Store Logos - Updated to match screenshot */
 .store-logos {
     width: 30%;
     display: grid;
     grid-template-columns: repeat(3, 1fr);
    /* Three columns */
     gap: 12px;
     margin: 15px 0;
}
 .store-logo {
     display: flex;
     justify-content: center;
     align-items: center;
     text-align: center;
}
 .store-logo img {
     max-width: 140px;
     height: auto;
     object-fit: contain;
     border-radius: 5px;
     border: 1px solid lightgrey;
}
 .special-offer-buttons {
     display: flex;
     gap: 10px;
     margin-top: 15px;
}
 .order-now {
     background: #4CAF50;
     color: white;
     border: none;
     padding: 8px 18px;
     border-radius: 3px;
     font-size: 16px;
     cursor: pointer;
     font-weight: 500;
}
 .add-to-cart-small {
     background: #ff9900;
     color: white;
     border: none;
     padding: 8px 18px;
     border-radius: 3px;
     font-size: 14px;
     cursor: pointer;
     font-weight: 500;
}
/* Shoes Section - Updated to match screenshot */
 .shoes-section {
     margin: 30px 0;
     padding: 20px;
     border-radius: 4px;
}
 .flex-box-sh {
     margin: 30px 0;
     border-radius: 4px;
     display: flex;
}
 .shoes-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 15px;
    /* Adjust spacing between columns */
     max-width: 450px;
}
 .shoe-card {
     background: #fff;
     border: 1px solid #eee;
     border-radius: 0;
     overflow: hidden;
     box-shadow: 0 1px 3px rgba(0,0,0,0.1);
     width: 200px;
}
 .shoe-side {
     width: 65%;
     padding: 30px;
}
 .shoe-side h3 {
     font-weight: 400;
     padding: 16px;
}
 .shoe-image {
     height: 230px;
     position: relative;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: rgba(0, 0, 0, 0.05);
}
 .discount-badge {
     position: absolute;
     top: 10px;
     left: 10px;
     background: #ff4444;
     color: white;
     padding: 2px 6px;
     border-radius: 3px;
     font-size: 12px;
     font-weight: bold;
}
 .shoe-image img {
     max-width: 100%;
     max-height: 100%;
     object-fit: contain;
}
 .shoe-info {
     padding: 10px;
}
 .shoe-title {
     font-weight: normal;
     font-size: 16px;
     margin-bottom: 5px;
     color: #333;
}
 .shoe-price {
     color: #ff9900;
     font-weight: bold;
     font-size: 16px;
     margin: 5px 0;
}
 .shoe-price span {
     color: #4CAF50;
     font-size: 14px;
     margin-left: 5px;
}
 .shoe-stock {
     font-size: 14px;
     color: var(--muted);
     display: flex;
     align-items: center;
}
 .shoe-stock-dot {
     display: inline-flex;
     align-items: top;
     justify-content: center;
     margin-right: 5px;
}
 .shoe-stock-dot img {
     width: 16px;
    /* Adjust icon size */
     height: 16px;
}
/* Tags Section - Updated to match screenshot */
/* Tags Section - Updated to match screenshot */
.tags-section {
    margin: 30px 0;
    background: #f5f5f5;
    padding: 20px;
    border-radius: 4px;
}

.tags-title {
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.tag-radio {
    display: none;
}

.tag-label {
    background: #fff;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    border: 1px solid #ddd;
}

.tag-radio:checked + .tag-label {
    background-color: #0066cc;
    color: white;
    border-color: #0066cc;
}

/* Contact Form - Updated to match screenshot */
 .contact-section {
     background: #f5f5f5;
     border: 1px solid #eee;
     border-radius: 0;
     padding: 30px;
     margin: 30px 0;
}
 .contact-container {
     display: flex;
     gap: 30px;
}
 .contact-form {
     flex: 1;
     background: #fff;
     padding: 20px;
     border-radius: 0;
     box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
 .contact-title {
     font-weight: bold;
     margin-bottom: 20px;
     display: flex;
     align-items: center;
     font-size: 18px;
     text-transform: uppercase;
     color: #333;
}
 .contact-title i {
     margin-right: 10px;
     color: #ff6600;
}
 .form-group {
     margin-bottom: 15px;
}
 .form-label {
     display: block;
     margin-bottom: 5px;
     font-size: 16px;
     color: #333;
}
 .form-control {
     width: 100%;
     padding: 10px;
     border: 1px solid #ddd;
     border-radius: 3px;
     font-size: 16px;
}
 .submit-btn {
     background-color: #ff9900;
     color: white;
     border: none;
     padding: 10px 20px;
     border-radius: 3px;
     cursor: pointer;
     font-weight: bold;
     font-size: 16px;
     text-transform: uppercase;
}
 .submit-product {
     flex: 1;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     background: #fff;
     padding: 20px;
     border-radius: 0;
     box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
 .submit-product-title {
     font-weight: bold;
     font-size: 16px;
     margin-bottom: 15px;
     text-transform: uppercase;
     color: #333;
}
 .submit-product-description {
     text-align: center;
     margin-bottom: 20px;
     line-height: 1.6;
     font-size: 18px;
     color: var(--muted);
     font-weight: 400;
}
 .submit-product-btn {
     background-color: #FF9900;
     color: white;
     border: none;
     padding: 10px 25px;
     border-radius: 3px;
     cursor: pointer;
     font-weight: bold;
     font-size: 16px;
     text-transform: uppercase;
}
/* Footer - Updated to match screenshot */
 footer {
     background: #333;
     color: #fff;
     padding: 20px 0;
     margin-top: 30px;
}
 .footer-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 15px;
     display: flex;
     flex-direction: column;
     align-items: center;
}
 .footer-logo {
     margin-bottom: 20px;
}
 .footer-logo img {
     height: 40px;
}
 .footer-social {
     display: flex;
     gap: 15px;
     margin: 15px 0;
}
 .footer-social a {
     color: #fff;
     font-size: 16px;
}
 .footer-links {
     display: flex;
     gap: 20px;
     margin: 15px 0;
}
 .footer-links a {
     color: #fff;
     font-size: 14px;
}
 .footer-copyright {
     margin-top: 20px;
     font-size: 14px;
     text-align: center;
}
 .footer-disclaimer {
     margin-top: 15px;
     font-size: 12px;
     text-align: center;
     max-width: 800px;
     color: #aaa;
}
/* Responsive Styles */
 @media (max-width: 1024px) {
     .main-nav {
         justify-content: flex-start;
         -webkit-overflow-scrolling: touch;
         position: absolute;
         background: white;
         flex-direction: column;
         width: -webkit-fill-available;
    }
     .nav-mobile {
         display: block;
    }
     .main-nav.active {
         display: block!important;
    }
     .main-nav {
         display: none!important 
    }
     .nav-item {
         padding: 15px 15px;
    }
     .products-grid {
         grid-template-columns: repeat(2, 1fr);
    }
     .celebrity-section, .card-section, .terrarium-content, .contact-container {
         flex-direction: column;
    }
     .celebrity-info, .card-info, .terrarium-info {
         padding-left: 0;
         padding-top: 20px;
    }
     .search-bar {
         width: 100%;
    }
     .special-offer {
         flex-direction: column;
         align-items: flex-start;
    }
     .special-offer-tag {
         margin-bottom: 10px;
    }
     .product-tabs {
         justify-content: flex-start;
         overflow-x: auto;
         -webkit-overflow-scrolling: touch;
    }
     .contact-section {
         background: #f5f5f5;
         border: 1px solid #eee;
         border-radius: 5;
         padding: 10px;
         margin: 30px 0;
    }
     .flex-box-sh {
         flex-direction: column;
    }
     .rlt {
         flex-direction: column-reverse;
    }
     .shoe-side {
         width: 100%;
         padding: 4px;
    }
     .shoe-card {
         width: 180px;
    }
     .shoe-image {
         height: fit-content;
         padding: 4px;
    }
     .shoes-section {
         padding: 0;
    }
}
 @media (max-width: 768px) {
     .top-header {
         flex-direction: column;
         gap: 15px;
    }
     .mobile-flex {
         flex-direction: row;
         gap: 5px;
         justify-content: space-between;
         padding: 0;
    }
     .search-container {
         width: 100%;
    }
     .auth-links {
         margin-top: 10px;
    }
     .products-grid {
         grid-template-columns: repeat(2, 1fr);
    }
     .special-section-content {
         flex-direction: column;
    }
     .special-section-image {
         flex: 0 0 100%;
         margin-bottom: 15px;
    }
     .image-products {
         grid-template-columns: 1fr;
    }
     .category-links {
         flex-direction: column;
    }
     .shoe-card {
         width: 160px;
         height: auto;
    }
     .shoe-side h3 {
         font-size: 16px;
         padding: 10px;
    }
}
 @media (max-width: 480px) {
     .products-grid {
         grid-template-columns: 1fr;
    }
     .user-actions {
         display: flex;
         justify-content: center;
         flex-wrap: wrap;
         gap: 10px;
    }
     .user-actions a {
         margin-left: 0;
         margin: 0 5px;
    }
     .categories {
         overflow-x: auto;
         white-space: nowrap;
         padding-bottom: 10px;
    }
     .store-logos {
         flex-direction: column;
    }
     .flex-box-sh {
         margin: 30px 0;
         border-radius: 4px;
         display: flex;
         flex-direction: column;
    }
     .rlt {
         flex-direction: column-reverse;
    }
     .shoe-side {
         width: 100%;
    }
     .shoe-card {
         width: 150px;
    }
     .footer-links {
         flex-direction: column;
         align-items: center;
    }
}
/* Promo Cards Section */
 .promo-row {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 20px;
     margin-bottom: 30px;
}
 .promo-card {
     background-color: #fff;
     border-radius: 12px;
     padding: 24px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
     display: flex;
     flex-direction: column;
}
 .logo-container {
     margin-bottom: 16px;
}
 .logo {
     width: 80;
     height: auto;
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
}
 .apple-logo {
     background-color: #000;
}
 .swift-logo {
     background-color: #0078d7;
}
 .logo img {
     width: 80px;
     height: auto;
     object-fit: contain;
}
 .swift-logo img {
     width: 40px;
     height: 40px;
}
 .promo-card h2 {
     font-size: 18px;
     font-weight: 600;
     margin-bottom: 12px;
     line-height: 1.3;
}
 .promo-card p {
     font-size: 14px;
     color: var(--muted);
     margin-bottom: 16px;
     flex-grow: 1;
}
 .find-link {
     color: #0066cc;
     text-decoration: none;
     font-size: 14px;
     font-weight: 500;
     display: inline-block;
     margin-top: auto;
}
 .arrow {
     font-size: 16px;
     margin-left: 2px;
}
/* Product Cards Section */
 .product-row {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 20px;
     margin-bottom: 30px;
}
 .product-card {
     background-color: #fff;
     border-radius: 12px;
     padding: 16px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
     display: flex;
     flex-direction: column;
}
 /*.product-image {
     height: 100%;
     margin-bottom: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
}
 .product-image img {
     max-width: 100%;
     max-height: 100%;
     object-fit: contain;
}*/
 .product-title {
     font-size: 14px;
     font-weight: 400;
     margin-bottom: 8px;
     line-height: 1.4;
     height: 60px;
     overflow: hidden;
     display: -webkit-box;
     -webkit-line-clamp: 3;
     -webkit-box-orient: vertical;
}
 .rating {
     display: flex;
     align-items: center;
     margin-bottom: 4px;
}
 .stars {
     color: #ffa41c;
     font-size: 18px;
     margin-right: 5px;
}
 .filled {
     color: #ffa41c;
     font-size: 25px;
}
 .half-filled {
     position: relative;
     color: #ffa41c;
     font-size: 25px;
}
 .empty {
     color: #e0e0e0;
     font-size: 25px;
}
 .review-count {
     color: #007185;
     font-size: 13px;
}
 .review-count::before {
     content: "";
     display: inline-block;
     width: 1px;
     height: 12px;
     background-color: #ddd;
     margin: 0 5px;
     vertical-align: middle;
}
 .purchase-info {
     font-size: 12px;
     color: #565959;
     margin-bottom: 8px;
}
 .price-container {
     display: flex;
     align-items: flex-start;
     margin-top: auto;
}
 .currency {
     font-size: 13px;
     font-weight: 400;
}
 .price {
     font-size: 22px;
     font-weight: 500;
}
 .cents {
     font-size: 13px;
     font-weight: 400;
}
 .original-price {
     font-size: 12px;
     color: #565959;
     margin-left: 8px;
}
/* Responsive styles */
 @media (max-width: 1024px) {
     .promo-row, .product-row {
         grid-template-columns: repeat(2, 1fr);
    }
}
 @media (max-width: 640px) {
     .promo-row, .product-row {
         grid-template-columns: 1fr;
    }
     .product-title {
         height: auto;
         -webkit-line-clamp: 2;
    }
}
 @media (max-width: 480px) {
 /* General container adjustments */
     .container {
         padding: 60px 10px;
    }
    /* Header adjustments */
     .top-header {
         flex-direction: column;
         gap: 10px;
    }
     .search-container {
         width: 100%;
    }
     .search-bar {
         font-size: 14px;
         padding: 8px 30px 8px 10px;
    }
}
 @media (max-width: 480px) {
    /* Adjust store logos to wrap and center */
     .store-logos {
         display: grid;
         grid-template-columns: repeat(2, 1fr);
         gap: 10px;
         margin: 20px 0;
    }
    /* Adjust special offer header to stack vertically and center content */
     .special-offer-header {
         display: flex;
         flex-direction: column;
         align-items: center;
         text-align: center;
         padding: 0;
    }
     .free-shipping {
         font-size: 14px;
    }
}
 .nav-container {
     border-top: 1px solid #eee;
     background: #fff;
}
 .nav-item {
     position: relative;
}
 .nav-item > a {
     display: block;
     color: rgb(0, 0, 0);
     padding: 8px 16px;
     text-decoration: none;
}
/* Dropdown menu styles */
 .drp-dn {
     display: none;
     position: absolute;
     top: 100%;
     left: 20%!important;
     background-color: #f9f9f9;
     min-width: 120px;
     box-shadow: 0 8px 16px rgba(0,0,0,0.2);
     z-index: 1;
     align-self: center;
}
 .dropdn {
     display: block;
     color: black;
     padding: 12px 16px;
     text-decoration: none;
}
 .dropdn:hover {
     background-color: #ddd;
}
/* Show dropdown on hover */
 .nav-item:hover .drp-dn {
     display: block;
}
 .main-nav {
     max-width: 1200px;
     margin: 0 auto;
     display: flex;
     justify-content: center;
     padding: 0 15px;
}
 .nav-item {
     padding: 7px 0px;
     color: #333;
     text-decoration: none;
     font-size: 14px;
     font-weight: bold;
     position: relative;
     display: flex;
     align-items: center;
     white-space: nowrap;
}
 .nav-item:hover {
     color: var(--muted);
}
 .nav-item:hover {
     color: #f4a261;
}
/* Dropdown Styling */
 .drp-dn {
     position: absolute;
     top: 100%;
     left: 0;
     background: white;
     border: 1px solid #ddd;
     display: none;
    /* Hidden by default */
     flex-direction: column;
     min-width: 180px;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     z-index: 100;
}
 .dropdn {
     padding: 10px 15px;
     font-size: 16px;
     color: #333;
     border-bottom: 1px solid #eee;
     cursor: pointer;
     transition: background 0.3s ease-in-out;
}
 .dropdn:hover {
     background: #f8f9fa;
}
/* Show dropdown on hover */
 .nav-item:hover + .drp-dn, .drp-dn:hover {
     display: block;
}
 .nav-item.dropdown::after {
     content: "▼";
     font-size: 8px;
     margin-left: 5px;
     position: relative;
     top: 1px;
}
/* Container for all items */
 .list-container {
     max-width: 1200px;
     margin: 0 auto;
     width: 100%;
}
/* Each item (row) */
 .list-item {
     display: flex;
     align-items: center;
     padding: 10px;
     border-bottom: 1px solid #ccc;
    /* Optional border for separation */
}
/* Icon section */
 .list-item .icon {
     flex: 0 0 auto;
    /* Fixed size, doesn't grow */
     margin-right: 10px;
     width: 50px;
     height: 50px;
     background-color: #000;
     padding: 8px;
     border-radius: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
}
 .list-item .icon img {
     width: auto;
     height: auto;
     max-width: 100%;
     max-height: 100%;
}
/* Description (takes remaining space) */
 .list-item .description {
     flex: 1;
     margin-right: 10px;
     font-size: 16px;
     line-height: 1.4;
}
/* Rating section */
 .list-item .rating {
     flex: 0 0 auto;
     margin-right: 10px;
     font-size: 16px;
     white-space: nowrap;
    /* Keep rating on one line */
}
 .stars {
     color: #ffa500;
    /* Gold star color */
     margin-right: 5px;
}
/* Link section */
 .list-item .action a {
     text-decoration: none;
     color: #007BFF;
    /* Link color */
     font-weight: 500;
}
 .list-item .action a:hover {
     text-decoration: underline;
}
/* Responsive: stack items on smaller screens */
 @media (max-width: 768px) {
     .list-item {
         flex-direction: column;
         align-items: flex-start;
    }
     .list-item .icon, .list-item .description, .list-item .rating, .list-item .action {
         margin-bottom: 10px;
         margin-right: 0;
        /* Reset right margin */
    }
}



/*UPDATES*/
.header-container {
    /*position: sticky;*/
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1000;
}
 .product-description {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 16px;
    flex-grow: 1;
    font-weight: normal;
}
.tagCloud {
    display: flex;
    align-items: start;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.tagCloud a {
    background: #fff;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 14px;
    color: var(--muted);
    cursor: pointer;
    border: 1px solid #ddd;
    text-decoration: none;
    display: inline-block;
    margin: 0;
    transition: all 0.3s ease;
}
.tagCloud a:hover {
    background-color: #1162b3;
    border-color: #1162b3;
    color: #fff;
}
.product-image {
     height: 300px;
     position: relative;
     overflow: hidden;     
}
.product-image img ,
.celebrity-images img {
     height: auto;
     max-width: calc(100% - 2rem);
     max-height: calc(100% - 2rem);
     transition: all .3s ease;
}
.product-image {
    display: inline;
    align-items: center;
    justify-content: center;
    text-align: center;
}
 .card-image ,
 .celebrity-images {
    flex: 0 0 40%;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-image img ,
.celebrity-images img ,
.terrarium-image img {
    height: auto;
    object-fit: cover;
    max-width: 100%;
    max-height: 100%;
}
.terrarium-image {
    flex: 0 0 50%;
}
.terrarium-image img {
    height: 100%;
    object-fit: cover;
    max-width: 100%;
    max-height: 100%;
    object-position: center;
}

@media screen and (max-width: 1024px) {
    .card-image {
        flex: 0 0 auto;
    }
}


/*for Header Shink*/
.header-container ,
.top-header ,
.mobile-flex ,
.nav-item {
    transition: all 0.3s ease;
}
.header-container.smaller .top-header ,
.header-container.smaller .mobile-flex {
    padding: 0 15px;
}
.header-container.smaller .nav-item {
    padding: 4px 25px;
}
.header-container.smaller .nav-container {
    display: none;
}
.header-container {
  transition: height 0.3s ease, padding 0.3s ease;
}


/*as header is fixed to top now*/
body {
    padding-top: 180px; 
}
@media screen and (max-width: 1024px) {
    body {
        padding-top: 120px; 
    }
}



/*Image Zoom Effect*/
/*.product-card .product-image {
    transition: all 0.3s ease;
}*/
.product-card:hover .product-image img {
    transform: scale(1.1);
}



/*ADDING VENDOR VIBE SECTION*/
.vendorVibe hgroup {
    margin-bottom: 2.5rem;
    text-align: center;
}
.vendorVibe hgroup h2 {
    margin-bottom: 0;
    color: #333;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.08rem;
}
.vendorVibe hgroup h6 {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 20px;
    font-weight: 500;
}
.vibe_container {
    width: 800px;
    margin: 0 auto;
    max-width: 100%;
}

@media screen and (min-width: 768px) {
    .vibe_list {
        column-count: 3;
        column-gap: 1em;
    }   
    .vibe_list .vibe_list_item.one ,
    .vibe_list .vibe_list_item.five {
        margin-top: 1.5rem;
    } 
    
}


.vibe_list .vibe_list_item {
    margin-bottom: 20px;
    height: 280px;
    background-color: #eee;
    display: inline-block;
    margin: 0 0 1em;
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
}
.vibe_list .vibe_list_item.one {
    background-color: #A1CDF4;
}
.vibe_list .vibe_list_item.two .vibe_list_inner {
    background: #6A6445 url(/assets/books-store.png) no-repeat center center / cover;
}
.vibe_list .vibe_list_item.three .vibe_list_inner {
    background: #37371B url(/assets/beauty-store.jpg) no-repeat center center / cover;
}
.vibe_list .vibe_list_item.four {
    background-color: #FF6F00;
}
.vibe_list .vibe_list_item.five {
    background-color: #FBBB01;
}
.vibe_list .vibe_list_item.six .vibe_list_inner {
    background: #50698F url(/assets/jewelry-store.jpg) no-repeat center center / cover;
}
.vibe_list .vibe_list_item.two p ,
.vibe_list .vibe_list_item.two h4 ,
.vibe_list .vibe_list_item.two a ,
.vibe_list .vibe_list_item.three p ,
.vibe_list .vibe_list_item.three h4 ,
.vibe_list .vibe_list_item.three a ,
.vibe_list .vibe_list_item.six p ,
.vibe_list .vibe_list_item.six h4 ,
.vibe_list .vibe_list_item.six a {
    color: #100f0f;
}
.vibe_list .vibe_list_item.two a ,
.vibe_list .vibe_list_item.three a ,
.vibe_list .vibe_list_item.six a {
    border-color: #fff;
}
.vibe_list_inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
    text-align: center;
    flex-direction: column;
}
.vibe_list_inner h4 ,
.vibe_list_inner p {
    margin: 0;
    color: #333;
}
.vibe_list_inner h4 {
    font-weight: 700;
    font-size: 18px;
}
.vibe_list_inner p {
    font-weight: 500;
    font-size: 14px;
}
.vibe_list_inner .hallow_button {
    margin-top: 0.2rem;
}
.hallow_button {
    background-color: transparent;
    color: #333;
    text-align: center;
    display: inline-block;
    width: auto;
    border: 1px solid #333;
    outline: none;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    padding: 0.375rem 1rem;
    border-radius: 100px;
    transition: all 0.3s ease;
}
.hallow_button:hover {
    background-color: rgba(0,0,0,0.1);
}
.img-fluid {
    width: auto;
    height: auto;
    max-width: 100%;
}

@media screen and (min-width: 481px) and (max-width: 767px) {
    .vibe_list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .vibe_list .vibe_list_item {
        width: calc(50% - 1rem);
        margin: 0;
    }
}

.vendorTags {
    margin-top: 50px;
}
.vendorTags h2 {
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -0.08rem;
    text-align: center;
}
.vendorTags .large_tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.vendorTags .large_tags a {
    margin: 0 1rem 1rem 0;
    background-color: #f8f8f8;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    padding: 2rem 2rem;
    transition: all .3s ease;
    color: #222;
}
.vendorTags .large_tags a:hover {
    background-color: #1162b3;
    color: #fff;
}
@media screen and (max-width: 480px) {
    .vendorTags .large_tags a {
        padding: 1rem;
    }
}


.vendorVibe .vvMain {
    text-align: center;
    background: url(../assets/shopping-background.svg) no-repeat center top / contain;
}
.vendorVibe {
    background: linear-gradient(to bottom,  #f6fcff 0%,#ffffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    padding: 60px; /* add padding all around */
}
.vendorVibe .vvMain h1 {
    color: #333;
    font-size: 72px;
    font-weight: 700;
    letter-spacing: -0.08rem;
    line-height: 1;
    width: 800px;
    max-width: 100%;
    margin: 0 auto;
}
.vendorVibe .vvMain .form_wrap {
    margin: 2rem 0;
}
.vendorVibe .vvMain .form_wrap h4 {
    color: #333;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    text-align: center;
}
.vendorVibe .vvMain .form_wrap .form_info_message {
    color: #999;
    font-size: 13px;
    font-weight: 500;
    margin: 0 0 .25rem 0;
    text-align: center;
}
.vendorVibe .vvMain .form_wrap .form_info_message a {
    text-decoration: underline;
    color: var(--muted);
    font-weight: 500;
}
.vendorVibe .vvMain .form_wrap form {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    justify-content: center;
}
.vendorVibe .vvMain .form_wrap input[type='text'] ,
.vendorVibe .vvMain .form_wrap input[type='email'] ,
.vendorVibe .vvMain .form_wrap input[type='password'] {
    background-color: #fff;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    padding: 0.8rem 1rem ;
    outline: none;
    border: 1px solid #999;
    width: 180px;
}
.vendorVibe .vvMain .form_wrap input[type='submit'] {
    background-color: #1162b3;
    border: 0;
    outline: none;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    padding: 0.5rem 1rem;
    height: 44px;
    width: 110px;
}

@media screen and (max-width: 1024px) {
    .vendorVibe .vvMain h1 {
        font-size: 62px;
    }
}
@media screen and (max-width: 640px) {
    .vendorVibe .vvMain h1 {
        font-size: 48px;
    }
}
@media screen and (max-width: 480px) {
    .vendorVibe .vvMain h1 {
        font-size: 46px;
    }
    .vendorVibe .vvMain .form_wrap form {
        flex-direction: column;
    }
    .vendorVibe .vvMain .form_wrap input[type='text'] ,
    .vendorVibe .vvMain .form_wrap input[type='email'] ,
    .vendorVibe .vvMain .form_wrap input[type='password'] ,
    .vendorVibe .vvMain .form_wrap input[type='submit'] {
        width: 100%;
    }
}



.vibe_list .vibe_list_item ,
.vibe_list .vibe_list_item .vibe_list_inner ,
.vibe_list .vibe_list_item .vibe_list_inner img {
    transition: all 0.3s ease;
}
.vibe_list .vibe_list_item.one:hover .vibe_list_inner img ,
.vibe_list .vibe_list_item.four:hover .vibe_list_inner img ,
.vibe_list .vibe_list_item.five:hover .vibe_list_inner img  {
    transform: scale(1.05) rotate(-4deg);
}
.vibe_list .vibe_list_item.two:hover .vibe_list_inner ,
.vibe_list .vibe_list_item.three:hover .vibe_list_inner ,
.vibe_list .vibe_list_item.six:hover .vibe_list_inner {
    transform: scale(1.05);
}

.section_title {
    margin: 2rem 0 1rem 0;
    font-size: 28px;
    font-weight: 700;
    color: #333;
}
h3 {
    position: relative;
}
h3 .productNumber {
    font-size: 72px;
    line-height: 64px;
    font-weight: 700;
    color: #aaa;
    position: absolute;
    left: 0px;
    top: 0;
    z-index: -1;
}
.product-card h3 {
    position: relative;
    z-index: 1;
}


.product-card .product_card_title {
    font-size: 22px;
    margin: 0 0 0.5rem;
    font-weight: 700;
    letter-spacing: -0.02rem;
}
.auth-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.d-flex {
    display: flex;
}
.country_dropdown {
    transition: all 0.3s ease;
    width: 120px;
    position: relative;
}
.country_dropdown .cd_head {

}
.country_dropdown .cd_body {    
    border: 1px solid #ccc;    
    position: absolute;
    left: 0;
    top: auto;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-radius: 4px;
}
.country_dropdown .cd_option {
    display: flex;
    width: 100%;
    border-bottom: 1px solid #eee;
    padding: 0.5rem;    
    background-color: #fff;
    align-items: center;    
}
.country_dropdown .cd_head .cd_option {
    border-bottom: 0;
}
.country_dropdown .cd_head .cd_option .chevron {
    width: 16px;
    height: 16px;
    opacity: 0.5;
}
.country_dropdown .cd_option img.flag {
    width: 18px;
    height: 18px;
    border-radius: 24px;
    border: 1px solid #eee;
    margin-right: 4px;
}
.country_dropdown .cd_option h6 {
    font-size: 13px;
    font-weight: 500;
    color: #444;
    margin: 0;
}
.country_dropdown:hover .cd_body {
    opacity: 1;
    bottom: auto;
    visibility: visible;
    top: auto;
    background-color: #fff;
    z-index: 1;
}
.country_dropdown .cd_body .cd_option:hover {
    background-color: #f8f8f8;
}
.auth-links .auth-linkss a {
    font-size: 14px;
    font-weight: 500;
}
.auth-links .auth-linkss {
    line-height: 1;
    gap: 0.2rem;
}

.spSection {
    margin-top: 10px;
}

/*for spSection*/
.spSection P{
    margin-top: 0.6rem;
    margin-bottom: 1rem;
    font-weight: 400;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.8; /* relative (scales better than px) */
    
}
.spSection h2 {
    font-weight: bold;
    line-height: 2.5;
}
/*
.spSection h2:before {
 content:url("assets/hearts.svg");
  display:block;
  width:50px;
  height:50px;
  background-repeat: no-repeat;
    margin: 0 0 -50px -52px;
}
*/
.spSection p a {
  color: black;
  font-weight: 600;
  padding-bottom: 3px;
  box-shadow: inset 0 -3px 0 #e19a4f;
}
.spSection ul {
    margin: 0;
    padding: 0 0 0 1rem;
    list-style-type: none;
}
.spSection ul li {
    margin: 0 0 0.25rem 0;
    padding: 0;
    list-style-type: none;
    position: relative;
}
.spSection ul li:before {
    content: "";
    background-color: var(--muted);
    width: 8px;
    height: 8px;
    border-radius: 8px;
    position: absolute;
    left: -1rem;
    top: 8px;
}
.spSection .sp_cta_wrap {
    text-align: center;
    margin: 1.5rem 0; 
}
.spSection .sp_cta_wrap a {
    background-color: #1162b3;
    border: 0;
    outline: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    padding: 0.5rem 1rem;
    height: auto;
    width: auto;
}
.spSection .sp_cta_wrap a:hover {
    opacity: 0.8;
}
.spSection ol {
    margin: 0;
    padding: 0 0 0 1rem;
}
.spSection .sp_table_wrap {
    margin: 1rem 0;
}
.spSection .sp_table_wrap table {
    width: 800px;
    margin: 0 auto;
    max-width: 100%;
}
.spSection .sp_table_wrap table thead th {
    text-align: left;
    border-top: 1px solid #eee;
    border-bottom: 2px solid #eee;
    font-size: 16px;
}
.spSection .sp_table_wrap table th ,
.spSection .sp_table_wrap table td {
    padding: 8px;
}
@media screen and (max-width: 360px) {
    .spSection .sp_table_wrap table th ,
    .spSection .sp_table_wrap table td {
        padding: 4px;
    }   
}
.spSection .sp_table_wrap table td {
    border-bottom: 1px solid #eee;
    font-size: 16px;
}





/*19-08-2025
Big Page*/

.img-fluid {
    height: 200px;
    width: auto;
    max-width: 100%;
}
.bp_banner {
    margin-bottom: 2.5rem;
}
.bp_banner > div {
    width: 100%;
    height: 550px;
    overflow: hidden;
}
.bp_banner img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    object-position: center;
}

@media screen and (max-width: 767px) {
    .bp_banner > div {
        height: 400px;
    }
}

@media screen and (max-width: 575px) {
    .bp_banner > div {
        height: 260px;
    }
}

.withFancy {
    margin-bottom: 1.5rem;
}
.withFancy h2 {
    font-size: 68px;
    font-family: "Birthstone", cursive;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 0;
    color: var(--pink);
    line-height: 1;
}
.withFancy h1 {
    font-size: 28px;
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
}
.withFancy h2 ,
.withFancy h1 {
    line-height: 1.2;
}
@media screen and (max-width: 575px) {
    .withFancy h2 {
        font-size: 54px;
    }
    .withFancy h1 {
        font-size: 22px;
    }
}
.text-center {
    text-align: center;
}
.prodGrid_One {
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1rem;
    margin: 2.5rem 0;
}
.prodGrid_One .prodBox {
    width: calc(50% - 0.5rem);
    height: 500px;
    overflow: hidden;
}
@media screen and (max-width: 1024px) {
    .prodGrid_One .prodBox {
        height: 400px;
    }
}
@media screen and (max-width: 767px) {
    .prodGrid_One .prodBox {
        height: 300px;
    }
}
@media screen and (max-width: 575px) {
    .prodGrid_One .prodBox {
        height: 260px;
        width: 100%;
    }
}
.prodBox a {
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}
.prodBox figure ,
.prodBox figcaption {
    margin: 0;
}
.prodBox figure {
    width: 100%;
    height: 100%;
}
.prodBox figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 2s ease;
}
.prodBox a:hover figure img {
    transform: scale(1.1);
    transform-origin: center;
}
.prodBox .captionhere {
    background: rgba(0,0,0,0.5);
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 1rem;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;    
    transition: all 0.3s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.prodBox a:hover .captionhere {
    background: rgba(0,0,0,0.75);
}
@media screen and (max-width: 1024px) {
    .prodBox {
        height: 400px;
    }
}
@media screen and (max-width: 767px) {
    .prodBox {
        height: 300px;
    }
}
@media screen and (max-width: 480px) {
    .prodBox {
        width: 100%;
        height: 240px;
    }
}



/*Spoiler Section*/
.spoiler_banner {
    background: url(assets/sp-bg.png) no-repeat center center / cover;
    width: 100%;
    height: auto;
    margin-bottom: 2.5rem;
    padding: 2rem 0;
}
.spoiler_inner {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.spoiler_inner .spoiler_left {
    width: 40%;
}
.spoiler_inner .spoiler_left h1 {
    margin: 0;
    font-size: 48px;
    line-height: 1.28;
    font-weight: bold;
    color: #fff;
}
.spoiler_inner .spoiler_right {
    width: 60%;
}
.spoiler_inner .spoiler_right img {
    width: 100%;
    height: auto;
}
.spoiler_inner .spoiler_right .spoiler_right_frame {
    display: flex;
    gap: 4px;
    flex-wrap: nowrap;
}
.spoiler_inner .spoiler_right .spoiler_right_frame img {
    width: 33%;
}
@media screen and (max-width: 1024px) {
    .spoiler_inner .spoiler_left h1 {
        font-size: 36px;
    }
}
@media screen and (max-width: 767px) {
    .spoiler_inner {
        flex-direction: column;        
    }
    .spoiler_inner .spoiler_left ,
    .spoiler_inner .spoiler_right {
        width: 100%;
    }
    .spoiler_inner .spoiler_left h1 {
        text-align: center;
        margin-bottom: 1.5rem;
    }
}
@media screen and (max-width: 480px) { 
    .spoiler_inner .spoiler_left h1 {
        font-size: 28px;
    }
}


/*Corporate Custom*/
.cc {
    padding: 2.5rem 0;
}
.cc h1 {
    margin-bottom: 2rem;
    font-size: 48px;
    line-height: 1.28;
    color: #000;
}
@media screen and (max-width: 767px) {
    .cc h1 {
        font-size: 36px;
    }
}
.cc p {
    font-size: 18px;
    color: #333;
}
.cc_button {
    background-color: #5E2A2D;
    border: 0;
    outline: none;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    padding: 0.5rem 1rem;
    height: auto;
    width: auto;
    text-transform: uppercase;
}
.cc .cc_button {
    margin-bottom: 1.5rem;
}
@media screen and (max-width: 480px) { 
    .cc h1 {
        font-size: 28px;
    }
}

/*As Seen*/
.as_seen {
    padding: 2.5rem 0;
}
.as_seen h1 {
    margin-bottom: 2rem;
    font-size: 36px;
    line-height: 1.28;
    color: #000;
}
.as_seen ul.brands {
    margin: 2rem 0;
    text-align: center;
    padding: 0;
    list-style-type: none;
}
.as_seen ul.brands li {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: inline-block;
}
.as_seen ul.brands li figure {
    margin: 0;
    padding: 0;
    width: 200px;
    height: 120px;    
    display: flex;
    align-items: center;
    justify-content: center;
}
.as_seen ul.brands li figure img {
    width: 100%;
    height: auto;
    filter: grayscale(1);
    opacity: 0.35;
    transition: all 0.3s ease;
}
.as_seen ul.brands li:hover figure img {
    filter: grayscale(0);
    opacity: 1;
}
@media screen and (max-width: 480px) {
    .as_seen ul.brands li figure {
        width: 140px;
        height: 80px;
    }
    .as_seen h1 {
        font-size: 28px;
    }
}


/*Footer B*/
.footerB {
    background: #f8f8f8;
    color: #000;
    padding: 2rem 0;
    margin-top: 30px;
}
.footerB .footerB_inner {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}
.footerB .footerB_inner .footerB_inner_x {
    width: 30%;
}
.footerB .footerB_inner .footerB_inner_y {
    width: 70%;
    display: flex;
    gap: 1.5rem;
}
.footerB .footerB_inner .footerB_inner_y .footerB_col {
    width: 100%;
    width: 25%;
}
.footerB_col h4 {
    margin-bottom: 0.75rem;
}
.footerB_col .linkList {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.footerB_col .linkList li {
    margin: 0 0 0.65rem 0;
    padding: 0;
    list-style-type: none;
    line-height: 1;
}
.footerB_col .linkList li a {
    font-size: 14px;
    line-height: 1.28;
    text-decoration: none;
    color: #999;
    transition: all 0.3s ease;
}
.footerB_col .linkList li a:hover {
    color: #000;
}
.footerB .copyrights {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 11px;
    color: #999;
}
.footerB .footer-social {
    margin: 0;
}
.footerB .orderbox {
    margin-bottom: 1rem;
}
.footerB .orderbox h6 ,
.footerB .orderbox h5 {
    margin: 0;
    line-height: 1.28;
}
.footerB .orderbox h6 {
    color: #444;
    font-size: 14px;
    font-weight: normal;
}
.footerB .orderbox h5 {
    color: #1162b3;
    font-size: 18px;
    font-weight: bold;
}
.footerB .postorderbox {
    margin-bottom: 1rem;
    font-size: 13px;
    color: #999;
}
.footerB .socials {
    margin: 0;
}
.footerB .socials .socialsline {
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
}
.footerB .socials .socialsline label {
    font-size: 13px;
    font-weight: bold;
    color: #000;
    margin-right: 0.5rem;
}
.footerB .socials .socialsline p {
    font-size: 13px;
    font-weight: normal;
    color: #444;
    margin: 0;
}
.footerB .socials .socialsline .footer-social a {
    color: #1162b3;
}
@media screen and (max-width: 1024px) {
    .footerB .socials .socialsline {
        flex-direction: column;
        align-items: flex-start;
    }
}
@media screen and (max-width: 767px) {
    .footerB .footerB_inner {
        flex-direction: column-reverse;
    }
    .footerB .footerB_inner .footerB_inner_x ,
    .footerB .footerB_inner .footerB_inner_y {
        width: 100%;
    }
    .footerB .footerB_inner .footerB_inner_x {
        text-align: center;
    }
    .footerB .socials .socialsline {
        align-items: center;
    }
}
@media screen and (max-width: 640px) {
    .footerB .footerB_inner .footerB_inner_y {
        gap: 0;
        flex-wrap: wrap;
    }
    .footerB .footerB_inner .footerB_inner_y .footerB_col {
        width: 50%;
        margin-bottom: 1.5rem;
    }
}
@media screen and (max-width: 360px) {
    .footerB .footerB_inner .footerB_inner_y .footerB_col {
        width: 100%;
        margin-bottom: 1.5rem;
    }
}

/*New Header*/
.nheader {

}
.nheader .nh_top {
    display: flex;
    align-items: center;
}
.nheader .nh_top .mobile-nav-wrapper ,
.nheader .nh_top .nh_search {
    width: 120px;
}

.nheader .nh_top .nh_carthandle .nh_cart_user_wrap ,
.nheader .nh_top .nh_carthandle .nh_cart_cart_wrap ,
.nheader .nh_top .nh_carthandle .nh_cart_search_wrap ,
.nheader .nh_top .mobile-nav-wrapper a ,
.cdropdown .cart_details_wrap .cart_details_header  {
    width: 24px;
    height: 24px;
}
.nheader .nh_top .nh_carthandle .nh_cart_search_wrap {
    display: none;
}
.nheader .nh_top .nh_search .search_wrap img ,
.nheader .nh_top .nh_search .search_wrap svg ,
.nheader .nh_top .nh_carthandle .nh_cart_user_wrap img ,
.nheader .nh_top .nh_carthandle .nh_cart_user_wrap svg ,
.nheader .nh_top .nh_carthandle .nh_cart_cart_wrap img ,
.nheader .nh_top .nh_carthandle .nh_cart_cart_wrap svg ,
.nheader .nh_top .nh_carthandle .nh_cart_search_wrap img ,
.nheader .nh_top .nh_carthandle .nh_cart_search_wrap svg ,
.nheader .nh_top .mobile-nav-wrapper a img ,
.nheader .nh_top .mobile-nav-wrapper a svg ,
.cdropdown .cart_details_wrap .cart_details_header img ,
.cdropdown .cart_details_wrap .cart_details_header svg ,
.cdropdown .cart_details_wrap .cart_details_header .cart_count img ,
.cdropdown .cart_details_wrap .cart_details_header .cart_count svg {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
}
.nh_cart_cart_wrap {
    position: relative;
}
.nh_cart_cart_wrap .redbadge {
    background-color: red;
    font-size: 10px;
    font-weight: bold;
    color: #ffffff;
    line-height: 1;
    padding: 4px 6px;
    border-radius: 10px;
    position: absolute;
    top: -6px;
    right: -6px;
}
.nheader .nh_top .nh_logo {
    width: 100%;
    text-align: center;
}
.nheader .nh_top .nh_logo a {
    text-decoration: none;
}
.nheader .nh_top .nh_logo a img {
    width: 220px;
    height: auto;
    max-height: 94px;
}
.nheader .nh_top .nh_carthandle {
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}
.nheader .nh_top .nh_carthandle {

}
.nheader .nh_bottom nav.active {
    display: flex;
}
.nheader .nh_bottom nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.nheader .nh_bottom nav ul li {
    margin: 0;
    padding: 0;
    list-style-type: none;
    position: relative;
}
.nheader .nh_bottom nav ul li a  {
    text-decoration: none;
}
.nheader .nh_bottom nav ul li ul.submenu {
    display: none;
}

@media screen and (min-width: 768px) {
    .nheader .nh_bottom nav ul li:hover > ul.submenu {
        display: block;
        position: absolute;
        left: 0;
        top: auto;    
    }
    .nheader .nh_top .mobile-nav-wrapper {
        display: none;
    }
}
.nheader .nh_bottom nav ul li ul.submenu {
    width: 160px;
    background-color: #fff;
    margin: 0;    
    padding: 0;
    list-style-type: none;
}
.nheader .nh_bottom nav ul li ul.submenu li {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: block;
}
.nheader .nh_bottom nav ul:not(.submenu) > li > a {
    text-decoration: none;
    font-size: 16px;
    font-weight: normal;
    color: #000;
    line-height: 1;
    text-transform: uppercase;
    padding: 14px 8px;
    display: block;
}
.nheader .nh_bottom nav ul.submenu li a {
    font-size: 14px;
    text-transform: none;
    color: #000;
    padding: 8px 8px;
    display: block;
    line-height: 1.25;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
}
.nheader .nh_bottom nav ul.submenu li a:hover {
    background-color: #f8f8f8;
}






@media screen and (max-width: 767px) {
    .nheader .nh_top {
        padding-top: 0.5rem;
    }
    .nheader .nh_top .nh_logo a img {
        width: 140px;
        max-height: 60px;
    }
    .nheader .nh_top .nh_carthandle ,
    .nheader .nh_top .mobile-nav-wrapper {
        width: 80px;
    }
    /*.nheader .nh_top .nh_carthandle .nh_cart_search_wrap ,*/
    .nheader .nh_top .mobile-nav-wrapper {
        display: flex;
    }
    .nheader .nh_top .nh_carthandle .nh_cart_user_wrap ,
    .nheader .nh_top .nh_search ,
    .nheader .nh_bottom nav {
        display: none;
    }
    .nheader .nh_bottom nav {
        position: absolute;
        left: 0;
        top: auto;
        width: 100%;
        background-color: #fff;
    }
    .nheader .nh_bottom nav ul {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    .nheader .nh_bottom nav ul li {
        width: 100%;
    }
    .nheader .nh_bottom nav ul li a {
        display: block;
    }
    .nheader .nh_bottom nav ul li:focus ul.submenu {
        display: block;
        position: relative;
        left: 0;
        top: auto;    
        width: 100%;
    }
    .nheader .nh_bottom nav ul {
        gap: 0.25rem;
    }
}




/*********** start of navbar code ************/
:root {
  --navbar-height: 56px;
  --navbar-background-color: white;
  --navbar-item-text-color: #222;
  --navbar-item-background-color: var(--navbar-background-color);
  --navbar-item-text-color-hover: #555;
  --navbar-item-font: normal 1rem/1.125rem "Open Sans", Arial, Helvetica, sans-serif;
  --navbar-item-background-color-hover: dimgray;
  --navbar-font-family: "Open Sans", Arial, Helvetica, sans-serif;
  --muted : #999;
}

.navbar {
  width: 100%;
  height: var(--navbar-height);
  background-color: var(--navbar-background-color);
  font-family: var(--navbar-font-family);
  /*z-index: 9999;*/
  z-index: 10;
  position: relative;
}

.navbar #togglericon {
  visibility: hidden;
}

.navbar #togglericon:after {
  content: "☰";
  position: absolute;
  visibility: visible;
  color: black;
  font-size: 1.5rem;
  width: 1.8rem;
  height: 1.8rem;
  text-align: center;
  margin: 0;
  padding: 0;
  line-height: 1.8rem;
  border-radius: 4px;
  border: 2px solid #ffffff00;
}

.navbar #togglericon:checked:after {
  color: black;
  border: 2px solid #f0f0f0;
}

.nav {
  visibility: hidden;
  opacity: 0;
  padding: 8px;
  transition: all 0.5s ease;
  margin: 0px;
  display: flex;
  flex-direction: column;
  background-color: var(--navbar-background-color);
  box-shadow: 0px 4px 4px 0px #00000088;
}

.navbar #togglericon:checked ~ div.nav {
  visibility: visible;
  transition: all 0.3s ease;
  opacity: 1;
}

.nav a {
  padding: 8px;
  font: var(--navbar-item-font);
  text-decoration: none;
  color: var(--navbar-item-text-color);
  background-color: var(--navbar-item-background-color);
  text-transform: uppercase;
}

.nav a:hover {
  color: var(--navbar-item-text-color-hover);
}

.nav p {
  margin: 0;
  padding: 8px;
  color: var(--navbar-item-text-color);
}

.dropdown {
  position: relative;
  display: block;
  color: var(--navbar-item-text-color);
  font: var(--navbar-item-font);
}
.dropdown label {
  display: block;
  padding: 8px;
  text-transform: uppercase;
}

.dropdown label:after {
  position: absolute;
  content: "▼";
  color: var(--navbar-item-text-color);
  font-size: 0.75rem;
  top: 8px;
  margin-left: 4px;
}

.dropdown label:hover {
  color: var(--navbar-item-text-color-hover);
}
.dropdown label:hover:after {
  color: var(--navbar-item-text-color-hover);
}
.dropdown input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.dropdown input:checked ~ ul {
  max-height: 500px;
  transition: max-height 0.5s ease;
  margin: 0;
}
.dropdown ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  max-height: 0px;
  transition: max-height 0.25s ease;
}
.dropdown li {
  margin: 0;
}

.dropdown a {
  color: black;
  text-decoration: none;
  font-weight: normal;
  display: block;
}



/* helpers */
.navbar-centered {
  justify-content: center;
}

@media (min-width: 768px) {
  .navbar #togglericon:checked ~ div.nav,
  .navbar #togglericon ~ div.nav {
    visibility: visible;
  }

  .navbar {
    height: var(--navbar-height);
    background-color: var(--navbar-background-color);
    flex-direction: row;
    display: flex;
    visibility: visible;
    opacity: 1;
    width: 100%;
  }

  .toggler {
    display: none;
  }

  .nav {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    top: 0;
    opacity: 1;
    box-shadow: none;
    background-color: #ffffff00; /* transparent */
  }

  .dropdown {
    margin: 0 8px;
  }
  .dropdown ul {
    position: absolute;
    top: 24px;
    display: flex;
    flex-direction: column;
    background-color: var(--navbar-background-color);
    padding: 0;
    border: 1px solid white;
  }
  .dropdown input:checked ~ ul {
    max-height: 500px;
    transition: max-height 0.5s ease;
    margin: 16px 0;
    border-left: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
    border-right: 1px solid #cccccc;
    box-shadow: 5px 5px 5px 0px #99999988;
  }

  .dropdown ul li {
    width: 100%;
    margin: 4px;
    padding: 0;
    display: flex;
  }
  .dropdown ul li a {
    padding: 8px;
    margin: 0;
    display: block;
    width: 100%;
    white-space: nowrap;
  }
}

@media (min-width: 768px) {
  .nav {
    justify-content: center;
    width: 100%;
  }
  .nav * {
    margin: 0px 8px;
  }
}


@media screen and (max-width: 768px) {
    .nheader > .container {
        padding: 0;
    }
    .nheader .nh_top  {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .navbar #togglericon {
        position: absolute;
        left: 10px;
        top: -50px;
    }
    .nheader .nh_top .nh_logo {
        padding-left: 80px;
    }
    .nheader .nh_bottom .navbar {
        height: 0;
    }
    .nav a ,
    .dropdown label {
        padding: 12px 8px;
    }
    .dropdown input:checked ~ ul { 
        padding: 0 0 0 1rem;
    }

}


:root {
    --pink : #F39F9D;
}

.page_section {
    padding: 50px 0;
}
@media screen and (max-width: 575px) {
    .page_section {
        padding: 30px 0;
    }
}
.spacer_lg {
    margin-bottom: 2rem;
}
.fancy_title {
    font-family: "Birthstone", cursive;
    font-size: 64px;
    line-height: 1.15;
    font-weight: normal;
    color: var(--pink);
}
@media screen and (max-width: 575px) {
    .fancy_title {
        font-size: 54px;
    }
}
.product_grid_a {
    display: flex;
    gap: 1rem;
    flex-direction: row;
    flex-wrap: wrap;
}
.product_grid_a .prodBox {
    width: calc(33% - 0.5rem);
    overflow: hidden;
}
@media screen and (max-width: 1024px) {
    .product_grid_a .prodBox {
        height: 300px;
        width: calc(33% - 0.65rem);
    }    
}
@media screen and (max-width: 767px) {
    .product_grid_a .prodBox {
        height: 300px;
        width: calc(50% - 0.65rem);
    }    
}
@media screen and (max-width: 480px) {
    .product_grid_a .prodBox {
        height: 240px;
        width: 100%;
    }    
}


.font-basker {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-style: normal;
}
.color-black {
    color: #000;
}
.fs-24 {
    font-size: 24px;
}
.why_us {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}
.why_us_x ,
.why_us_y {
    width: 100%;
}
.why_us_x figure {
    margin: 0;
    width: 100%;
    height: 100%;
}
.why_us_x figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.why_us_y h3 {
    margin-bottom: 1rem;
    color: var(--pink);
}
.why_us_y .button_wrap {
    width: 100%;
    margin: 1rem 0;
    display: flex;
    justify-content: flex-end;
}
.why_us_y .button_wrap a {
    color: var(--pink);
    font-size: 16px;
    font-weight: normal;
    line-height: 1;
    display: inline-block;
    padding: 1rem 1.5rem;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 4px;
    font-weight: 600;
    background-color: #f8f8f8;
}
.why_us_y .button_wrap a:hover {
    background-color: #eee;
}
.why_us_y .sl_arrows {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin: 2rem 0 0 0;
}
.sl_arrows .arrow_left ,
.sl_arrows .arrow_right {
    display: inline-block;
    padding: 0.5rem;
    border-radius: 4px;
    text-align: center;
    line-height: 1;
    transition: all 0.3s ease;
    background-color: #f8f8f8;
}
.sl_arrows .arrow_left img ,
.sl_arrows .arrow_left svg ,
.sl_arrows .arrow_right img ,
.sl_arrows .arrow_right svg {
    font-size: 24px;
    width: 24px;
    height: 24px;
    line-height: 1;
    color: inherit;
}
.sl_arrows .arrow_left:hover ,
.sl_arrows .arrow_right:hover {
    background-color: #eee;
}
@media screen and (min-width: 992px) {
    .why_us .why_us_y {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}
@media screen and (max-width: 991px) {
    .why_us {
        flex-direction: column;
        gap: 1rem;
    }
    .why_us .why_us_x figure {
        width: 100%;
        height: 240px;
    }
}

.cdropdown {
    background-color: #fff;
    padding: 0.75rem;
    border: 1px solid #eee;
    display: none;
    position: absolute;
    right: 0;
    top: auto;
    width: 220px;
    z-index: 11;
}
.isOpen {
    display: block;
}
.cartinfo_para {
    font-size: 14px;
    color: var(--muted);
    padding: 0.25rem;
    margin: 0;
}
.cdropdown .cart_details_wrap {
    
}
.cdropdown .cart_details_wrap .cart_details_header {
    padding: 0 0 0.5rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 12px;
}
.cdropdown .cart_details_wrap .cart_details_header .cart_count {
    position: relative;
}
.cdropdown .cart_details_wrap .cart_details_header .cart_totals {
    text-align: right;
    color: var(--muted);
}
.cdropdown .cart_details_wrap .cart_details_header .cart_totals span {
    color: #000;
}
.cdropdown .cart_items_wrap {
    height: auto;
    max-height: 240px;
    overflow: auto;
}
.cdropdown .cart_items_wrap .cart_item_individual a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
    width: 100%;
    transition: all 0.3s ease;
}
.cdropdown .cart_items_wrap .cart_item_individual a:hover {
    opacity: 0.8;
}
.cdropdown .cart_items_wrap .cart_item_individual .cart_item_individual_inner {
    display: flex;
    flex-direction: row;
    gap: 0.25rem;
}
.cdropdown .cart_items_wrap .cart_item_individual a figure {
    width: 32px;
    height: 32px;
    margin: 0 0.25rem 0 0;
    flex-shrink: 0;
}
.cdropdown .cart_items_wrap .cart_item_individual a figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cdropdown .cart_items_wrap .cart_item_individual a figcaption {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.cdropdown .cart_items_wrap .cart_item_individual a figcaption h6 {
    font-size: 12px;
    font-weight: normal;
    line-height: 1.15;
    color: #000;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Specifies the number of lines to display */
    -webkit-box-orient: vertical;
}
.cdropdown .cart_item_individual_info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.cdropdown .cart_items_wrap .cart_item_individual .item_price {
    font-size: 12px;
    color: #000;
}
.cdropdown .cart_items_wrap .cart_item_individual .item_quantity {
    font-size: 12px;
    color: var(--muted);
}
.cdropdown .checkout_button_wrap .checkout_button {
    background-color: #4594FD;
    display: block;
    width: 100%;
    padding: 0.65rem 1rem;
    text-align: center;
    text-decoration: none;
    border: 0;
    outline: 0;
    border-radius: 4px;
    font-size: 14px;
    font-weight: normal;
    color: #fff;
    text-transform: capitalize;
    transition: all 0.3s ease;
}
.cdropdown .checkout_button_wrap .checkout_button:hover {
    background-color: #2C7BDE;
}
.cdropdown .cart_details_wrap .cart_details_header .cart_count .redbadge {
    top: 0;
    right: -20px;
}

/*for Custom Search*/

#searchDemo input {
    outline: none;
}
#searchDemo input[type=search] {
    -webkit-appearance: textfield;
    -webkit-box-sizing: content-box;
    font-family: inherit;
    font-size: 100%;
}
#searchDemo input::-webkit-search-decoration,
#searchDemo input::-webkit-search-cancel-button {
    display: none; 
}
#searchDemo input[type=search] {
    background: #fff url(https://static.tumblr.com/ftv85bp/MIXmud4tx/search-icon.png) no-repeat 9px center;
    border: solid 1px #fff;
    padding: 9px 10px 9px 32px;
    width: 55px;
    
    -webkit-border-radius: 10em;
    -moz-border-radius: 10em;
    border-radius: 10em;
    
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
}
#searchDemo input[type=search]:focus {
    width: 130px;
    background-color: #fff;
    border-color: #66CC75;
    
    -webkit-box-shadow: 0 0 5px rgba(109,207,246,.5);
    -moz-box-shadow: 0 0 5px rgba(109,207,246,.5);
    box-shadow: 0 0 5px rgba(109,207,246,.5);
}


#searchDemo input:-moz-placeholder {
    color: #999;
}
#searchDemo input::-webkit-input-placeholder {
    color: #999;
}

/* Demo 2 */
#searchDemo input[type=search] {
    width: 15px;
    padding-left: 10px;
    color: transparent;
    cursor: pointer;
}
#searchDemo input[type=search]:hover {
    background-color: #fff;
}
#searchDemo input[type=search]:focus {
    width: 130px;
    padding-left: 32px;
    color: #000;
    background-color: #fff;
    cursor: auto;
}
#searchDemo input:-moz-placeholder {
    color: transparent;
}
#searchDemo input::-webkit-input-placeholder {
    color: transparent;
}

.nheader .nh_top .nh_search .search_wrap {
    position: relative;
    height: 38px;
}
.nheader .nh_top .nh_search .search_wrap #searchDemo {
    position: absolute;
    left: 0;
    top: 0;
}

.cart-header {
  text-align: right;
  padding: 10px 15px;
}

.cart-link {
  position: relative;
  font-size: 16px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
}

.cart-text {
  position: relative;
  z-index: 1;
}

.cart-count {
  position: absolute;
  top: -8px;   /* adjust vertical position */
  right: -15px; /* adjust horizontal position */
  background: #F39F9D;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  border-radius: 50%;
  padding: 2px 6px;
  line-height: 1;
  min-width: 18px;
  text-align: center;
}
#whatsapp-button {
    position: fixed;
    bottom: 20px;   /* distance from bottom of screen */
    right: 20px;    /* distance from right of screen */
    z-index: 9999;  /* keep it on top of everything */
}

#whatsapp-button img {
    width: 60px;       /* button size */
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
}

#whatsapp-button img:hover {
    transform: scale(1.1);
} 

/*16-09-2025*/
.product-card {
    position: relative;
}
.product-card .discount-badge {
   z-index: 1; 
}

/*Adding Top Info Bar*/
.info_bar {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    padding: 2px 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
}

.info_bar .info_bar_x p {
    font-size: 12px;
    color: #666;
    margin: 0;
}
.info_bar .info_bar_y {
    display: flex;
    justify-content: flex-end;
}
.info_bar .info_bar_y .phone_box_small {
    display: flex;
    align-items: center;    
}
.info_bar .info_bar_y .phone_box_small .phone_icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}
.info_bar .info_bar_y .phone_box_small .phone_icon svg ,
.info_bar .info_bar_y .phone_box_small .phone_icon img {
    width: 100%;
    height: 100%;
    font-size: 16px;
}
.info_bar .info_bar_y .phone_box_small .phone_link a:first-child {
    margin-right: 0.5rem;
}
.info_bar .info_bar_y .phone_box_small .phone_link a  {
    font-size: 12px;
    color: #666;
    margin: 0;
    text-decoration: none;
    font-weight: bold;
    color: #222;
}
.info_bar .info_bar_y .phone_box_small .phone_link a:hover {
    color: #1162b3;
}
@media screen and (max-width: 575px) {
    .info_bar {
        flex-direction: column;
    }
}
.delivery-note {
    background-color: #fff3cd;   /* Soft yellow highlight */
    color: #856404;             /* Dark yellow/brown text for readability */
    border-left: 5px solid #ffeeba; /* Small accent on the left */
    padding: 12px 15px;
    margin: 15px 0;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 1.4;
    border-radius: 4px;
}

.delivery-note strong {
    font-weight: 700; /* Make "Important" stand out */
}