/* :root {
    --black: #000000;
    --charcoal: #0F0F0F;
    --gold: #daa84c;
    --gold-hover: #C19F30;
    --white: #FFFFFF;
    --light-gray: #E0E0E0;
    --medium-gray: #A0A0A0;
    --dark-gray: #222222;
    --darker-gray: #1A1A1A;
} */


/* Global Styles & Layout */

:root {
    /* Light theme palette */
    --black: #FFFFFF; /* Base backgrounds now light */
    --charcoal: #f8f8f7; /* Light surface */
    /* --gold: #d8a929; */
    --gold: #f0b03a;
    --gold-hover: #C19F30;
    --white: #111111; /* Primary text on light */
    --light-gray: #333333; /* Body text */
    --medium-gray: #666666; /* Secondary text */
    --dark-gray: #E5E7EB; /* Borders/dividers */
    --darker-gray: #e4e6eb; /* Card/raised surfaces */
    /* Layout sizes */
    --banner-height: 36px;
    --navbar-height: 60px;
}

/* Carousel Controls - Remove Borders */
.carousel-control-prev,
.carousel-control-next {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.carousel-control-prev:focus,
.carousel-control-next:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--black);
    color: var(--light-gray);
    line-height: 1.7;
    margin: 0;
    padding-top: calc(var(--banner-height) + var(--navbar-height) + 30px);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    color: var(--gold);
    margin-bottom: 0.8em;
    letter-spacing: 0.05em;
}

h1, h2 {
    text-transform: uppercase;
    font-weight: 700; /* Bold */
}

h3, h4 {
    font-weight: 500; /* Medium weight */
}

h1 { font-size: 3.8rem; } /* Approx 60px */
h2 { font-size: 2.0rem; } /* Approx 45px */
h3 { font-size: 1.8rem; } /* Approx 29px */
h4 { font-size: 1.5rem; } /* Approx 24px */
h5 { font-size: 1.25rem; } /* Approx 20px */
h6 { font-size: 1rem; } /* Approx 16px */

p {
    margin-bottom: 1.5em;
}

/* Links & Buttons */
a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease, border-color 0.3s ease;
}
a:hover {
    color: var(--gold-hover);
}

.btn {
    font-family: 'Roboto', sans-serif;
    font-weight: 700; /* Bold */
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 30px; /* Larger padding */
    border-radius: 6px; /* Slightly more rounded */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); /* Smoother transition */
    cursor: pointer;
    font-size: 1rem; /* Consistent button font size */
}

.btn-gold {
    background-color: var(--gold);
    color: var(--black);
    border: 2px solid var(--gold); /* Thicker border */
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2); /* Soft shadow */
}
.btn-gold:hover {
    background-color: var(--gold-hover);
    color: var(--black);
    border-color: var(--gold-hover);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px); /* Slight lift effect */
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}
.btn-outline-gold:hover {
    background-color: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

/* Form elements */
.form-control, .form-select, .input-group-text {
    background-color: var(--charcoal) !important;
    border: 1px solid var(--dark-gray) !important;
    color: var(--light-gray) !important;
    padding: 12px 15px; /* More padding */
    border-radius: 6px;
    font-size: 1rem;
}
.form-control::placeholder {
    color: var(--medium-gray) !important;
}
.form-control:focus, .form-select:focus, .input-group-text:focus {
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.35) !important; /* Gold shadow */
    border-color: var(--gold) !important;
}
.form-check-input:checked {
    background-color: var(--gold);
    border-color: var(--gold);
}
.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

/* Global Layout Adjustments */
.container-fluid.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px; /* Increased side padding */
}

section {
    padding: 100px 0; /* More standard section padding for luxury feel */
}

/* Header */
.navbar {
    background-color: var(--black) !important;
    border-bottom: 1px solid var(--dark-gray);
    height: 90px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.navlinks-bar { top: 120px; }

.promo-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #0f0f0f;
    color: var(--light-gray);
    border-bottom: 1px solid var(--dark-gray);
    z-index: 1040;
    height: 32px;
    display: flex;
    align-items: center;
}
.promo-text { font-size: 0.9rem; }

/* Free Delivery Banner */
.free-delivery-banner {
    --banner-height: 36px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--banner-height);
    background: var(--gold);
    color: var(--black);
    padding: 0px 0 ;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    z-index: 1060;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.free-delivery-banner .marquee {
    width: 100%;
    overflow: hidden;
       padding:0px 0 ;
}
.free-delivery-banner .marquee-inner {
    display: inline-flex;
    gap: 48px; /* space between repeated messages */
    align-items: center;
    min-width: 200%; /* ensures two copies fit inline */
    animation: marquee 30s linear infinite !important;
    
}
.free-delivery-banner .marquee-item {
    white-space: nowrap;
    font-weight: 700;
    font-size: 0.95rem;
       padding: 10px 0 ;
}
.free-delivery-banner i { margin-right: 10px; }

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Move fixed navbar below the banner */
.navbar.fixed-top { top: var(--banner-height) !important; }

.utility-header {
    position: fixed;
    top: 32px;
    left: 0;
    right: 0;
    height: 88px;
    background: #111;
    border-bottom: 1px solid var(--dark-gray);
    z-index: 1040;
    display: flex;
    align-items: center;
}
.utility-logo {
    font-family: 'Roboto', sans-serif;
    color: var(--gold);
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
}
.utility-actions { display: flex; align-items: center; }

.utility-search {
    width: 420px;
    max-width: 100%;
    position: relative;
}
.utility-search input.form-control {
    background: #0f0f0f;
    border: 1px solid var(--dark-gray);
    color: #ddd;
    border-radius: 30px;
    padding-left: 16px;
    padding-right: 44px;
    height: 44px;
}
.utility-search .btn-search {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 0;
    color: var(--light-gray);
    font-size: 1.1rem;
}

/* push body content below fixed stacked headers */
/* body { padding-top: 210px; } */
.navbar-brand {
    font-family: 'Roboto', sans-serif;
    color: var(--gold) !important;
    font-size: 2rem; /* Larger logo */
    font-weight: bold;
    letter-spacing: 1px;
}
.navbar-nav .nav-link {
    color: var(--light-gray) !important;
    font-weight: 500;
    margin-left: 30px;
    position: relative;
    padding-bottom: 8px;
}
.navlinks-bar .navbar-nav { gap: 22px; }
.navlinks-bar .nav-link { text-transform: uppercase; letter-spacing: 2px; font-size: .9rem; }
.navbar-nav .nav-link:hover {
    color: var(--gold) !important;
}
.navbar-nav .nav-link.active {
    color: var(--gold) !important;
}
/* .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
} */
.navbar-toggler {
    border-color: var(--gold) !important;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23D4AF37' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Dropdown (Shop) theming to match site colors */
.navbar .dropdown-menu {
    position: absolute;
    left: 38px;
    background-color: var(--darker-gray);
    border: 1px solid var(--dark-gray);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.navbar .dropdown-item {
    color: var(--light-gray);
}
.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background-color: var(--charcoal);
    color: var(--gold);
}

/* Open dropdown on hover for desktop */
@media (min-width: 992px) {
    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
    }
    .navbar .dropdown .dropdown-menu {
        margin-top: 0;
    }
}
.navbar .dropdown-item.active,
.navbar .dropdown-item:active {
    background-color: var(--gold) !important; /* override Bootstrap blue */
    color: var(--black) !important;
}
.navbar .dropdown-divider {
    border-top-color: var(--dark-gray);
}

/* Cart Icon in Header */
.cart-icon-container {
    cursor: pointer;
    font-size: 1.6rem; /* Slightly larger icon */
    color: var(--gold);
    margin-left: 30px;
    position: relative;
    transition: color 0.3s ease;
}
.cart-icon-container:hover {
    color: var(--gold-hover);
}
.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--gold);
    color: var(--black);
    font-size: 0.8rem;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    border: 1px solid var(--black); /* Border for clarity */
}

/* Footer */
footer {
    background-color: var(--charcoal);
    color: var(--light-gray);
    padding: 80px 0 30px 0;
    border-top: 1px solid var(--dark-gray);
}
footer .footer-col h5 {
    color: var(--gold);
    font-size: 1.35rem; /* Larger title */
    margin-bottom: 25px;
    letter-spacing: 0.05em;
}
footer .footer-col ul {
    list-style: none;
    padding: 0;
}
footer .footer-col ul li a {
    color: var(--medium-gray);
    display: block;
    padding: 8px 0;
    transition: color 0.3s ease;
}
footer .footer-col ul li a:hover {
    color: var(--gold);
}
footer .footer-col p {
    color: var(--medium-gray);
    font-size: 0.95rem;
}
footer .social-icons a {
    font-size: 1.8rem; /* Larger social icons */
    margin-right: 20px;
    color: var(--gold);
    transition: color 0.3s ease;
}
footer .social-icons a:hover {
    color: var(--white);
}
footer .copyright-text {
    color: var(--medium-gray);
    font-size: 0.85rem;
    margin-top: 50px; /* More spacing */
    padding-top: 25px;
    border-top: 1px solid var(--dark-gray);
}

/* Home Page */
.product-card {
    position: relative;
    background-color: #ffffff;
    border-radius: 14px;
    text-align: left!important;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}
.product-card:hover {
    border-color: rgba(218, 168, 76, 0.35);
    box-shadow: 0 16px 40px rgba(212, 175, 55, 0.18), 0 10px 30px rgba(0,0,0,0.06);
    transform: translateY(-8px);
}
.product-card img {
    width: 100%;
    height: 240px;
    border-radius: 12px 12px 0 0;
    margin-bottom: 0;
    object-fit: cover;
    background-color: #d9d9d9;
    transform: scale(1);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-card:hover img { transform: scale(1.05); }
.product-card h3 { font-weight: 700; letter-spacing: 0.02em; margin: 12px 16px 4px; font-size: 1.1rem; color: var(--white); }
.product-card p { font-size: 0.9rem; color: var(--medium-gray); flex-grow: 1; margin: 0 16px 8px; }
.product-card .price, .product-card h4 { font-weight: 800; margin: 0 16px 14px; color: var(--gold); }
.product-card .btn { font-size: 0.95rem; padding: 10px 18px; border-width: 2px; margin: 6px 16px 16px; width: calc(100% - 32px); }
/* Stars for any card tagline/desc */
.product-card .tagline::after, .product-card .product-desc::after {
    content: '★★★★★';
    display: block;
    color: var(--gold);
    letter-spacing: 2px;
    margin: 6px 0 6px;
    font-size: 0.95rem;
}
.viewAll{
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 12px;
    background-color: transparent;
    color: var(--gold);
    text-decoration: underline;
}
.hero-section {
    min-height: 65vh;
    padding: 0px;
    margin-bottom: 30px;
}
@media (min-width: 768px){
    .hero-section img{
        height: 70vh;
        object-fit: cover;
        object-position: bottom;
    }
}
.hero-section h1 {
    font-size: 4.5rem; /* Larger for impact */
    color: var(--gold);
    margin-bottom: 0.75rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4); /* Subtle glow */
    z-index: 150;
    font-weight: bolder;
}
.hero-section h2 {
    font-size: 1.8rem; /* Larger subheading */
    color: var(--light-gray);
    margin-bottom: 3rem;
    font-weight: 500; /* Regular weight */
    letter-spacing: 0.02em;
}

.info-section {
    padding: 100px 0;
    background-color: var(--charcoal);
}
.info-section img {
    border-radius: 8px;
    max-width: 100%;
    height: auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6); /* Deeper shadow */
    transition: transform 0.3s ease;
}
.info-section img:hover {
    transform: translateY(-5px); /* Slight lift on hover */
}
.info-section p {
    font-size: 1.1rem; /* 18px */
    color: var(--light-gray);
}

.featured-collection .product-card {
    position: relative;
    background-color: #ffffff;
    border-radius: 14px;
    /* padding: 22px 20px 20px 20px; */
    text-align: left!important;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}
.featured-collection .product-card:hover {
    border-color: rgba(218, 168, 76, 0.35);
    box-shadow: 0 16px 40px rgba(212, 175, 55, 0.18), 0 10px 30px rgba(0,0,0,0.06);
    transform: translateY(-8px);
}
.featured-collection .product-card img {
    width: 100%;
    height: 260px; /* taller like reference */
    border-radius: 12px 12px 0 0;
    margin-bottom: 0;
    object-fit: cover;
    background-color: #d9d9d9;
    transform: scale(1);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.featured-collection .product-card:hover img {
    transform: scale(1.05);
}

/* Floating actions (Quick View / Add to Cart) */
.product-card .floating-actions {
    position: absolute;
    top: 4px;
    right: 4px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 5;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.product-card:hover .floating-actions { opacity: 1; transform: translateY(0); }
.floating-actions .fabtn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
    background-color: var(--gold);
    color: #ffffff;
    box-shadow: 0 6px 14px rgba(218, 168, 76, 0.35);
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.floating-actions .fabtn:hover {
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
    color: #ffffff;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 18px rgba(218, 168, 76, 0.45);
}
.featured-collection .product-card h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin: 12px 16px 4px;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.featured-collection .product-card p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    flex-grow: 1;
    margin: 0 16px 8px;
}
/* Gold five-star row after tagline on featured cards */
.featured-collection .product-card .product-desc::after {
    content: '★★★★★';
    display: block;
    color: var(--gold);
    letter-spacing: 2px;
    margin: 6px 0 6px;
    font-size: 0.95rem;
}
.featured-collection .product-card h4 {
    color: var(--gold);
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0 16px 14px;
}
.featured-collection .product-card .btn {
    font-size: 0.95rem;
    padding: 10px 18px;
    border-width: 2px;
    margin: 6px 16px 16px;
    width: calc(100% - 32px);
}

/* Apply the same modern style to generic product grids (shop page) */
.product-grid .product-card {
    position: relative;
    background-color: #ffffff;
    border-radius: 14px;
    padding: 0;
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}
.product-grid .product-card:hover {
    border-color: rgba(218, 168, 76, 0.35);
    box-shadow: 0 16px 40px rgba(212, 175, 55, 0.18), 0 10px 30px rgba(0,0,0,0.06);
    transform: translateY(-8px);
}
.product-grid .product-card img {
    width: 100%;
    height: 260px; /* match featured */
    border-radius: 12px 12px 0 0;
    margin-bottom: 0;
    object-fit: cover;
    background-color: #d9d9d9;
    transform: scale(1);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-grid .product-card:hover img { transform: scale(1.05); }
.product-grid .product-card h3 { font-weight: 700; letter-spacing: 0.02em; margin: 12px 16px 4px; font-size: 1.1rem; }
.product-grid .product-card .price { font-weight: 800; margin: 0 16px 14px; color: var(--gold); }
/* Gold five-star row after tagline on grid cards */
.product-grid .product-card .tagline::after {
    content: '★★★★★';
    display: block;
    color: var(--gold);
    letter-spacing: 2px;
    margin: 6px 0 6px;
    font-size: 0.95rem;
}

.how-to-choose-section {
    background-color: var(--charcoal);
    padding: 80px 0;
    border-top: 1px solid var(--dark-gray);
    border-bottom: 1px solid var(--dark-gray);
}
.how-to-choose-section h2 {
    color: var(--white); /* White for this heading */
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
    margin-bottom: 60px;
}
.how-to-choose-section .col-md-4 {
    text-align: center;
    padding: 0 20px; /* Inner padding for columns */
}
.how-to-choose-section .col-md-4 i {
    font-size: 3.5rem; /* Larger icons */
    color: var(--gold);
    margin-bottom: 25px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5); /* Icon glow */
}
.how-to-choose-section .col-md-4 h5 {
    color: var(--white);
    font-weight: 700; /* Bold */
    font-size: 1.3rem; /* 20px */
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}
.how-to-choose-section .col-md-4 p {
    font-size: 0.95rem; /* 15px */
    color: var(--medium-gray);
}

.newsletter-input-group{
    position: relative;
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        justify-content: center;
        width: 100%;
}




.newsletter-section {
    text-align: center;
    padding: 100px 0;
    background-color: white;
}
.newsletter-section h2 {
    font-size: 2.2rem; /* 35px */
    margin-bottom: 20px;
}
.newsletter-section p {
    font-size: 1.1rem; /* 17px */
    color: var(--light-gray);
    margin-bottom: 40px;
}
.newsletter-section .input-group .form-control {
    background-color: var(--dark-gray);
    border: 1px solid var(--charcoal);
    color: var(--white);
    max-width: 500px; /* Wider input */
    /* margin: 0 auto; */
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    padding: 15px 20px; /* More padding */
}
.newsletter-section .input-group .btn-gold {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding: 15px 35px; /* Larger button */
    font-size: 1.05rem;
}
.newsletter-section .fine-print {
    font-size: 0.8rem; /* 13px */
    color: var(--medium-gray);
    margin-top: 20px;
}

/* Make standalone banner images in main responsive (index page banners) */
main > div > img {
    width: 100%;
    height: auto;
    display: block;
}

/* Shop Page */
.breadcrumb-nav {
    background-color: var(--charcoal);
    padding: 18px 0; /* More padding */
    border-bottom: 1px solid var(--dark-gray);
}
.breadcrumb-nav .breadcrumb-item a {
    color: var(--medium-gray);
}
.breadcrumb-nav .breadcrumb-item.active {
    color: var(--gold);
    font-weight: 500;
}

.shop-header {
    padding: 60px 0; /* More spacing */
    text-align: center;
}
.shop-header h1 {
    font-size: 3rem; /* 48px */
    color: var(--gold); /* White heading here for variety */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.filter-sort-bar {
    background-color: var(--darker-gray);
    padding: 30px; /* More padding */
    border-radius: 10px;
    margin-bottom: 60px; /* More spacing */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}
.filter-sort-bar .form-select {
    margin-right: 20px; /* More spacing */
    width: auto;
    min-width: 180px; /* Minimum width for dropdowns */
}
.filter-sort-bar .btn {
    white-space: nowrap;
}

.product-grid .product-card {
    position: relative;
    background-color: #ffffff;
    border-radius: 14px;
    text-align: left!important;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}
.product-grid .product-card:hover {
    border-color: rgba(218, 168, 76, 0.35);
    box-shadow: 0 16px 40px rgba(212, 175, 55, 0.18), 0 10px 30px rgba(0,0,0,0.06);
    transform: translateY(-8px);
}
.product-grid .product-card img {
    width: 100%;
    height: 240px;
    border-radius: 12px 12px 0 0;
    margin-bottom: 0;
    object-fit: cover;
    background-color: #d9d9d9;
    transform: scale(1);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-grid .product-card:hover img { transform: scale(1.05); }
.product-grid .product-card h3 { font-weight: 700; letter-spacing: 0.02em; margin: 12px 16px 4px; font-size: 1.1rem; color: var(--white); }
.product-grid .product-card p { font-size: 0.9rem; color: var(--medium-gray); flex-grow: 1; margin: 0 16px 8px; }
.product-grid .product-card .price, .product-grid .product-card h4 { font-weight: 800; margin: 0 16px 14px; color: var(--gold); }
.product-grid .product-card .btn { font-size: 0.95rem; padding: 10px 18px; border-width: 2px; margin: 6px 16px 16px; width: calc(100% - 32px); }
/* Gold five-star row after tagline on grid cards */
.product-grid .product-card .product-desc::after {
    content: '★★★★★';
    display: block;
    color: var(--gold);
    letter-spacing: 2px;
    margin: 6px 0 6px;
    font-size: 0.95rem;
}

.pagination-custom .page-item .page-link {
    background-color: var(--darker-gray);
    border: 1px solid var(--dark-gray);
    color: var(--light-gray);
    margin: 0 8px; /* More spacing */
    border-radius: 6px;
    padding: 10px 18px; /* Larger clickable area */
    transition: all 0.3s ease;
}
.pagination-custom .page-item .page-link:hover {
    background-color: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}
.pagination-custom .page-item.active .page-link {
    background-color: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}
.pagination-custom .page-item.disabled .page-link {
    color: var(--medium-gray);
    background-color: var(--charcoal);
    border-color: var(--dark-gray);
    cursor: not-allowed;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -760px; /* Wider sidebar */
    width: 400px;
    height: 100%;
    background-color: var(--darker-gray);
    z-index: 1050;
    box-shadow: -8px 0 25px rgba(0, 0, 0, 0.08);
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    padding: 30px; /* More padding */
    padding-top: 100px; /* Account for fixed header */
    border-left: 1px solid var(--dark-gray);
}
.cart-sidebar.show {
    right: 0;
}
.cart-sidebar .cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--dark-gray);
    padding-bottom: 20px;
}
.cart-sidebar .cart-header h2 {
    color: var(--white);
    font-size: 1.8rem; /* Larger heading */
    margin: 0;
    letter-spacing: 0.05em;
}
.cart-sidebar .close-cart {
    font-size: 2rem; /* Larger close icon */
    color: var(--light-gray);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    transition: color 0.3s ease;
}
.cart-sidebar .close-cart:hover {
    color: var(--gold);
}
.cart-sidebar .cart-items {
    flex-grow: 1;
    overflow-y: auto;
    padding-right: 15px; /* For scrollbar */
}
.cart-sidebar .cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px; /* More spacing */
    background-color: var(--charcoal);
    padding: 15px;
    border-radius: 6px;
    border: 1px solid var(--dark-gray);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.cart-sidebar .cart-item img {
    width: 70px; /* Larger thumbnails */
    height: 70px;
    border-radius: 4px;
    object-fit: cover;
    margin-right: 20px;
}
.cart-sidebar .cart-item-details {
    flex-grow: 1;
}
.cart-sidebar .cart-item-details h6 {
    color: var(--white);
    font-size: 1.1rem; /* 17px */
    margin-bottom: 5px;
}
.cart-sidebar .cart-item-details .price {
    color: var(--gold);
    font-weight: bold;
    font-size: 1rem; /* 16px */
}
.cart-sidebar .quantity-controls {
    display: flex;
    align-items: center;
    margin-top: 10px;
}
.cart-sidebar .quantity-controls button {
    background-color: var(--dark-gray);
    color: var(--gold);
    border: 1px solid var(--charcoal);
    padding: 4px 10px; /* Larger buttons */
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
}
.cart-sidebar .quantity-controls button:hover {
    background-color: var(--gold);
    color: var(--black);
}
.cart-sidebar .quantity-controls input {
    width: 45px;
    text-align: center;
    background-color: transparent;
    border: none;
    color: var(--white);
    margin: 0 8px;
    font-size: 1rem;
}
.cart-sidebar .cart-summary {
    border-top: 1px solid var(--dark-gray);
    padding-top: 30px;
    margin-top: 30px;
}
.cart-sidebar .cart-summary .subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem; /* 17px */
    font-weight: bold;
    color: var(--light-gray);
    margin-bottom: 20px;
}
.cart-sidebar .cart-summary .subtotal span:last-child {
    color: var(--gold);
    font-size: 1.25rem;
}
.cart-sidebar .cart-actions .btn {
    width: 100%;
    margin-bottom: 15px;
    padding: 15px 30px;
}

/* Product Detail Page */
.product-detail-section {
    padding-top: 60px;
    padding-bottom: 80px;
}
.product-detail-section .main-image img {
    border: 1px solid var(--dark-gray);
    border-radius: 8px;
    max-width: 100%;
    height: auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    background-color: #fff;
}
.product-detail-section .thumbnail-gallery img {
    width: 90px; /* Larger thumbnails */
    height: 90px;
    object-fit: cover;
    border: 1px solid var(--dark-gray);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: var(--charcoal);
}
.product-detail-section .thumbnail-gallery img:hover,
.product-detail-section .thumbnail-gallery img.active {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
}
.product-detail-section .product-title {
    color: var(--gold);
    font-size: 3rem; /* 48px */
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}
.product-detail-section .product-description {
    color: var(--light-gray);
    font-size: 1.05rem; /* 17px */
    margin-bottom: 25px;
}
.product-detail-section .product-price {
    color: var(--white);
    font-size: 1.5rem; /* 45px */
    font-weight: bold;
    letter-spacing: 0.02em;
}
.product-detail-section .size-selector,
.product-detail-section .quantity-selector {
    margin-bottom: 30px;
}
.product-detail-section .quantity-selector .input-group-text {
    background-color: var(--darker-gray);
    border: 1px solid var(--dark-gray);
    color: var(--gold);
    cursor: pointer;
    padding: 10px 18px; /* Larger buttons */
}
.product-detail-section .quantity-selector .form-control {
    text-align: center;
    background-color: var(--charcoal);
    border: 1px solid var(--dark-gray);
    color: var(--white);
    font-size: 1.1rem;
}
.product-detail-section .shipping-text {
    font-size: 0.8rem; /* 13px */
    color: var(--medium-gray);
    margin-top: 15px;
}

.product-tabs .nav-tabs {
    border-bottom: 1px solid var(--dark-gray);
    margin-bottom: 30px;
}
.product-tabs .nav-tabs .nav-link {
    background-color: var(--darker-gray);
    border: 1px solid var(--dark-gray);
    border-bottom: none;
    color: var(--light-gray);
    margin-right: 8px; /* More spacing */
    border-radius: 8px 8px 0 0; /* More rounded tabs */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 12px 25px; /* Larger tabs */
    font-weight: 500;
}
.product-tabs .nav-tabs .nav-link:hover {
    color: var(--gold);
    border-color: var(--gold) var(--gold) var(--darker-gray) var(--gold);
    background-color: var(--charcoal);
}
.product-tabs .nav-tabs .nav-link.active {
    color: var(--gold);
    background-color: var(--charcoal);
    border-color: var(--gold) var(--gold) var(--charcoal) var(--gold);
    font-weight: bold;
    box-shadow: inset 0 3px 10px rgba(212, 175, 55, 0.12);
}
.product-tabs .tab-content {
    background-color: var(--darker-gray);
    border: 1px solid var(--dark-gray);
    border-top: none;
    border-radius: 0 0 10px 10px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}
/* Ensure readability for any injected white text within tab content */
.product-tabs .tab-content .text-white { color: var(--light-gray) !important; }
.product-tabs .tab-pane p,
.product-tabs .tab-pane ul li {
    color: var(--light-gray);
    font-size: 1rem; /* 16px */
    margin-bottom: 1em;
}
.product-tabs .review .stars {
    color: var(--gold);
    font-size: 1.2rem; /* Larger stars */
    margin-bottom: 8px;
}
.product-tabs .review .reviewer-name {
    color: var(--white);
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 5px;
}
.product-tabs .review-form .form-group {
    margin-bottom: 20px;
}
.product-tabs .review-form label {
    color: var(--white);
    margin-bottom: 8px;
}

.recommended-products-section {
    padding-top: 80px;
    padding-bottom: 100px;
}
.recommended-products-section h2 {
    font-size: 2.2rem; /* 35px */
    text-align: center;
    margin-bottom: 50px;
    color: var(--white);
}

/* About Page */
.about-hero {
    min-height: calc(75vh - 90px);
    /* background-color: #faf8f300; */
    position: relative;
    overflow: hidden;
    background-image: url('assets/NEW.png'); /* Replace with your GIF path */
    background-size: cover;
    background-position:bottom;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Subtle dark overlay */
    z-index: -1;
}

.about-hero h1 {
    font-size: 3.5rem; /* 56px */
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--gold);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3); /* Optional brightness boost */
}

.about-hero p {
    font-size: 1.25rem; /* 20px */
    color: var(--light-gray);
    letter-spacing: 0.02em;
    z-index: 1;
}

.history-section {
    padding: 100px 0;
    background-color: var(--charcoal);
}
.timeline {
    position: relative;
    padding-left: 60px; /* More space for the line and dots */
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px; /* Center the line */
    width: 3px; /* Thicker line */
    height: 100%;
    background-color: var(--gold);
    border-radius: 2px;
}
.timeline-item {
    position: relative;
    padding-bottom: 50px; /* More spacing */
    padding-left: 20px; /* Space for content from line */
}
.timeline-item::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 17px; /* Align with line */
    width: 20px; /* Larger dot */
    height: 20px;
    background-color: var(--gold);
    border-radius: 50%;
    z-index: 1;
    border: 3px solid var(--charcoal); /* To make it stand out against timeline */
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}
.timeline-item h5 {
    color: var(--white);
    font-size: 1.4rem; /* 22px */
    margin-bottom: 8px;
    letter-spacing: 0.03em;
    margin-left: 25px;
}
.timeline-item p {
    color: var(--medium-gray);
    font-size: 1rem; /* 16px */
}
.founder-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--charcoal);
}
.founder-section img {
    width: 220px; /* Larger portrait */
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--gold); /* Thicker border */
    margin-bottom: 30px;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}
.founder-section h3 {
    color: var(--white);
    font-size: 1.8rem; /* 28px */
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}
.founder-section .title {
    font-style: italic;
    font-size: 1.1rem; /* 18px */
    color: var(--light-gray);
    margin-bottom: 20px;
}
.founder-section .quote {
    font-family: 'Roboto', sans-serif; /* Use sans-serif for quote */
    font-style: italic;
    color: var(--gold);
    font-size: 1.5rem; /* 24px */
    margin-bottom: 30px;
    line-height: 1.4;
}

.brand-values-section {
    padding: 80px 0;
    background-color: var(--darker-gray);
}
.brand-values-section h2 {
    color: var(--white);
    margin-bottom: 60px;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}
.brand-values-section .col-md-4 {
    text-align: center;
    padding: 0 20px;
}
.brand-values-section .col-md-4 i {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 25px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}
.brand-values-section .col-md-4 h5 {
    color: var(--white);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}
.brand-values-section .col-md-4 p {
    font-size: 0.95rem;
    color: var(--medium-gray);
}

/* FAQ Page */
.faq-section {
    padding: 80px 0;
}
.faq-section h1 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 3rem; /* 48px */
    color: var(--gold);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
.accordion-item {
    background-color: var(--darker-gray);
    border: 1px solid var(--dark-gray);
    margin-bottom: 15px; /* More spacing */
    border-radius: 10px; /* More rounded */
    overflow: hidden; /* To keep border-radius on open items */
}
.accordion-button {
    background-color: var(--darker-gray) !important;
    color: var(--white) !important;
    font-weight: bold;
    font-size: 1.25rem; /* 20px */
    padding: 1.25rem 1.5rem; /* More padding */
    border-radius: 10px; /* Apply to top corners */
    transition: background-color 0.3s ease, color 0.3s ease;
}
.accordion-button:not(.collapsed) {
    background-color: var(--gold) !important;
    color: var(--black) !important;
    border-bottom: 1px solid var(--gold);
    border-radius: 10px 10px 0 0; /* No bottom radius when open */
    box-shadow: inset 0 3px 10px rgba(0, 0, 0, 0.2);
}
.accordion-button::after {
    filter: invert(1) brightness(0.7); /* Adjust icon color for dark background */
}
.accordion-button:not(.collapsed)::after {
    filter: invert(0) brightness(0.5); /* Adjust icon color for gold background */
}
.accordion-body {
    background-color: var(--charcoal); /* Slightly different background for content */
    color: var(--light-gray);
    padding: 1.5rem; /* More padding */
    border-top: 1px solid var(--dark-gray);
    font-size: 1rem;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
    text-align: center;
}
.contact-section h1 {
    margin-bottom: 60px;
    font-size: 3rem; /* 48px */
    color: var(--gold);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
.contact-form {
    max-width: 650px; /* Slightly wider form */
    margin: 0 auto;
    background-color: var(--darker-gray);
    padding: 50px; /* More padding */
    border-radius: 10px;
    border: 1px solid var(--dark-gray);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}
.contact-form .form-group {
    margin-bottom: 25px; /* More spacing */
    text-align: left;
}
.contact-form textarea {
    min-height: 180px; /* Taller textarea */
    resize: vertical;
}
.company-info {
    margin-top: 70px; /* More spacing */
    text-align: center;
    color: var(--medium-gray);
}
.company-info p {
    margin-bottom: 8px;
    font-size: 1.05rem;
}
.company-info a {
    color: var(--medium-gray);
}
.company-info a:hover {
    color: var(--gold);
}
.company-info .social-icons {
    margin-top: 25px;
}
.company-info .social-icons a {
    font-size: 2rem; /* Larger icons */
    margin: 0 12px;
    color: var(--gold);
}
.company-info .social-icons a:hover {
    color: var(--white);
}

/* Checkout Page */
.checkout-section {
    padding: 80px 0;
}
.checkout-section h1 {
    margin-bottom: 40px;
    font-size: 3rem; /* 48px */
    color: var(--white);
}
.order-summary {
    background-color: var(--darker-gray);
    padding: 35px; /* More padding */
    border-radius: 10px;
    border: 1px solid var(--dark-gray);
    height: fit-content;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}
/* Ensure readability for any injected white text within light cards */
.order-summary .text-white { color: var(--light-gray) !important; }
.cart-sidebar .text-white { color: var(--light-gray) !important; }
.modal-content .text-white { color: var(--light-gray) !important; }
.order-summary h5 {
    color: var(--white);
    font-size: 1.35rem; /* 22px */
    margin-bottom: 30px;
    letter-spacing: 0.03em;
}
.order-summary .item-list .cart-item {
    background-color: var(--charcoal);
    padding: 12px;
    border-radius: 6px;
    border: 1px solid var(--dark-gray);
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.order-summary .item-list .cart-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 15px;
}
.order-summary .item-list .cart-item-details h6 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 0;
}
.order-summary .item-list .cart-item-details small {
    /* color: var(--medium-gray); */
    color: #a09e9e!important;
    font-size: 0.88rem;
}
.order-summary .totals-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-top: 1px dashed var(--dark-gray);
    font-size: 1.05rem;
    color: var(--light-gray);
}
.order-summary .totals-row:last-of-type {
    border-bottom: 1px dashed var(--dark-gray);
    margin-bottom: 25px;
}
.order-summary .totals-row.total {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--white);
    border-top: 2px solid var(--gold); /* Stronger separator */
    padding-top: 20px;
}
.order-summary .totals-row.total span:last-child {
    color: var(--gold);
}

.shipping-details-form {
    background-color: var(--darker-gray);
    padding: 40px; /* More padding */
    border-radius: 10px;
    border: 1px solid var(--dark-gray);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}
.shipping-details-form h5 {
    color: var(--white);
    font-size: 1.35rem;
    margin-bottom: 30px;
    letter-spacing: 0.03em;
}
.shipping-details-form .form-group {
    margin-bottom: 25px;
}
.payment-method {
    margin-top: 40px;
    background-color: var(--charcoal);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--dark-gray);
}
.payment-method .form-check-input {
    margin-top: 0.45rem;
    border-color: var(--dark-gray); /* Match theme */
}
.payment-method label {
    font-size: 1.15rem;
    color: var(--gold);
    font-weight: 500;
}
.payment-method .description {
    font-size: 0.95rem;
    color: var(--medium-gray);
    margin-left: 2.2rem;
    margin-top: 0;
}

/* Global Modal Styling (for Quick View, Success) */
.modal-content {
    background-color: var(--darker-gray);
    color: var(--light-gray);
    border: 1px solid var(--dark-gray);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.modal-header {
    border-bottom: 1px solid var(--dark-gray);
    color: var(--white);
    padding: 20px 25px;
}
.modal-title {
    color: var(--gold);
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
}
.modal-body {
    padding: 25px;
}
.modal-footer {
    border-top: 1px solid var(--dark-gray);
    padding: 20px 25px;
}
.btn-close {
    filter: none;
    font-size: 1.2rem;
}

/* Responsive Breakpoints */
/* Tablet (≥768px & <1200px) */
@media (min-width: 768px) and (max-width: 1199.98px) {
    h1 { font-size: 3.2rem; } /* Approx 51px */
    h2 { font-size: 2.3rem; } /* Approx 37px */
    h3 { font-size: 1.6rem; }
    h4 { font-size: 1.3rem; }

    .hero-section h1 { font-size: 3.8rem; }
    .hero-section h2 { font-size: 1.5rem; }

    .info-section img { margin-bottom: 30px; } /* Space when stacked */

    .featured-collection .product-card { padding: 20px; }
    .featured-collection .product-card h3 { font-size: 1.25rem; }

    .shop-header h1 { font-size: 2.5rem; }

    .filter-sort-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .filter-sort-bar .form-select {
        margin-right: 0;
        margin-bottom: 15px;
        width: 100%;
        min-width: unset;
    }
    .filter-sort-bar .btn {
        width: 100%;
    }
    .product-grid .col-md-2 { /* Adjusting Bootstrap cols for tablet */
        flex: 0 0 50%;
        max-width: 50%;
    }

    .product-detail-section .main-image img { margin-bottom: 30px; } /* Stacked on tablet */

    .about-hero h1 { font-size: 2.8rem; }
    .about-hero p { font-size: 1.1rem; }

    .history-section .col-md-6 { margin-bottom: 50px; }
    .timeline { padding-left: 50px; }
    .timeline::before { left: 20px; }
    .timeline-item::before { left: 12px; }

    .brand-values-section .col-md-4 { margin-bottom: 40px; }

    .faq-section h1 { font-size: 2.5rem; }
    .accordion-button { font-size: 1.1rem; }

    .contact-section h1 { font-size: 2.5rem; }
    .contact-form { padding: 40px; }

    .checkout-section h1 { font-size: 2.5rem; }
    .order-summary { margin-bottom: 40px; }
}


/* Mobile (<768px) */
@media (max-width: 767.98px) {

    .navbar-toggler{
        margin-right: 10vw;
    }

    h2{
        font-size: 1.3rem!important;
    }

    .recommended-products-section h2 {
        font-size: 1.3rem!important;
        text-align: left!important;
        margin: 0 12px 6px!important;
    }

    body { padding-top: 130px; }
    .navlinks-bar { top: 170px; }
    .utility-header { height: 70px; }
    /* Keep search visible on mobile per design sample */
    /* .utility-search { display: none !important; } */
    .utility-header .container-fluid { gap: 12px; }
    .utility-search { flex: 1 1 auto; }
    .utility-search input.form-control { height: 40px; }
    .utility-logo { font-size: 1.4rem; }
    .utility-actions { display: flex; align-items: center; }
    .utility-logo { font-size: 1.5rem; }
    .navbar {
        height: 70px;
    }
    .navbar-brand {
        font-size: 1.3rem;
        margin-right: 0;
    }
    .navbar-collapse {
        background-color: var(--darker-gray);
        position: fixed;
        top: 70px; /* Below header */
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        overflow-y: auto;
        padding: 25px;
        transition: transform 0.3s ease-in-out;
        transform: translateX(-100%); /* Off-screen by default */
        z-index: 1040; /* Below cart sidebar */
    }
    .navbar-collapse.show {
        transform: translateX(0);
    }
    .navbar-nav .nav-link {
        font-size: 1.3rem;
        padding: 12px 0;
        margin-left: 0;
        color: var(--light-gray) !important;
        border-bottom: 1px solid var(--dark-gray);
    }
    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }
    .navbar-nav .nav-link:hover {
        color: var(--gold) !important;
    }
    .navbar-nav .nav-link::after { /* Disable underline for mobile nav */
        display: none;
    }
    .cart-icon-container {
        font-size: 1.4rem;
        margin-left: 20px;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.2rem; }

    section { padding: 60px 0; }

    .hero-section h1 { font-size: 2.8rem; }
    .hero-section h2 { font-size: 1.2rem; }
    .hero-section .btn { padding: 12px 25px; font-size: 0.9rem; }

    .hero-section , .about-hero {
        min-height: calc(28vh - 90px);
        width: 100vw!important;
    }

    .info-section .col-md-6 { margin-bottom: 40px; }
    .info-section img { margin-bottom: 25px; }

    .featured-collection .product-card { margin-bottom: 30px; }

    /* Featured Collection: horizontal scroll on mobile */
    .shop-page-row{
        justify-content: center!important;
    }
     .row-products-cards {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        gap: 2px; /* spacing between cards */
        padding-bottom: 8px; /* space for scrollbar */
        scrollbar-width: thin;
        scroll-snap-type: x mandatory;
    }
     .row-products-cards::-webkit-scrollbar { height: 8px; }
     .row-products-cards::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 6px; }
     .row-products-cards::-webkit-scrollbar-track { background: var(--charcoal); }

    /* Each product column becomes a fixed-width item */
     .col {
        flex: 0 0 auto;
        width: 185px; /* compact card width like reference */
        scroll-snap-align: start;
    }
    /* Compact card styling for mobile */
     .product-card {
        border-radius: 4px!important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        margin-bottom: 0px!important;
    }
    .product-card:hover {
        border: none!important;
        transform: translateY(0px)!important;
    }
     .product-card img {
        height: 160px!important;
        border-radius: 4px!important;
    }
     .product-card h3 { font-size: 1rem!important; margin: 10px 12px 2px; }
     .product-card p { font-size: 0.8rem; margin: 0 12px 6px; }
     .product-card h4 { font-size: 1rem; margin: 0 12px 12px; }
     .product-card .btn { font-size: 0.85rem; padding: 8px 14px; margin: 6px 12px 12px; }
     .product-card .floating-actions .fabtn { width: 30px; height: 30px; }

    .how-to-choose-section { padding: 60px 0; }
    .how-to-choose-section .col-md-4 { margin-bottom: 40px; }
    .how-to-choose-section h2 { margin-bottom: 40px; }

    .newsletter-section { padding: 60px 0; }
    .newsletter-section .input-group {
        flex-direction: column;
        width: 100%;
        max-width: 90%;
        margin: 0 auto;
    }
    .newsletter-section .input-group .form-control,
    .newsletter-section .input-group .btn-gold {
        width: 100% !important;
        border-radius: 6px !important;
        margin-bottom: 15px;
        border-right: 1px solid var(--charcoal); /* Re-add border */
    }
    .newsletter-section .input-group .form-control { margin-right: 0; }
    .newsletter-section .input-group .btn-gold { padding: 12px 25px; }

    .shop-header { padding: 30px 0; }
    .shop-header h1 { font-size: 2.2rem; }

    .filter-sort-bar {
        flex-direction: column;
        padding: 20px;
        margin-bottom: 40px;
    }
    .filter-sort-bar .form-select,
    .filter-sort-bar .btn {
        width: 100%;
        margin-bottom: 15px;
        margin-right: 0;
    }
    .product-grid .col-md-4, .product-grid .col-lg-3, .product-grid .col-sm-2 { /* Single column on mobile */
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 25px;
    }
    .pagination-custom { justify-content: center; }

    .cart-sidebar {
        width: 100%; /* Full width on mobile */
        padding: 20px;
        padding-top: 80px;
    }
    .cart-sidebar .cart-header h2 { font-size: 1.5rem; }
    .cart-sidebar .cart-item { padding: 10px; }
    .cart-sidebar .cart-item img { width: 60px; height: 60px; }

    .product-detail-section .col-lg-7,
    .product-detail-section .col-lg-5 {
        margin-bottom: 40px;
    }
    .product-detail-section .thumbnail-gallery { justify-content: center; }
    .product-detail-section .product-title { font-size: 2.2rem; }
    .product-detail-section .product-price { font-size: 2.2rem; }
    .product-tabs .nav-tabs { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; justify-content: flex-start; }
    .product-tabs .nav-tabs .nav-item { flex-shrink: 0; }
    .product-tabs .nav-tabs .nav-link { padding: 10px 18px; font-size: 0.9rem; }
    .product-tabs .tab-content { padding: 30px; }

    .about-hero h1 { font-size: 2.5rem; }
    .about-hero p { font-size: 1rem; }

    .history-section .col-md-6 { margin-bottom: 40px; }
    .timeline { padding-left: 30px; }
    .timeline::before { left: 10px; }
    .timeline-item::before { left: 2px; }

    .brand-values-section .col-md-4 { margin-bottom: 40px; }

    .faq-section h1 { font-size: 2.2rem; }
    .accordion-button { font-size: 1.1rem; padding: 1rem; }
    .accordion-body { padding: 1rem; }

    .contact-section h1 { font-size: 2.2rem; }
    .contact-form { padding: 30px; }

    .checkout-section h1 { font-size: 2.2rem; }
    .order-summary, .shipping-details-form { margin-bottom: 40px; padding: 30px; }
    .order-summary .totals-row.total { font-size: 1.2rem; }
}

/* Accessibility */
*:focus {
    outline: 3px solid var(--gold) !important;
    outline-offset: 3px;
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.5) !important; /* Consistent focus shadow */
}

/* Custom Scrollbar for Webkit browsers (Chrome, Safari) */
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    background: var(--charcoal);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 6px;
    border: 3px solid var(--charcoal);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-hover);
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: none; }
/* Support existing JS that uses .reveal-visible */
.reveal.reveal-visible { opacity: 1; transform: none; }

/* Optional variants */
.reveal.fade { transform: none; }
.reveal.fade-left { transform: translateX(16px); }
.reveal.fade-right { transform: translateX(-16px); }

@media (prefers-reduced-motion: reduce) {
    .reveal { transition: none; opacity: 1; transform: none; }
}

/* Sale badge and price styling */
.sale-badge {
    position: absolute;
    top: 0px;
    left: 0px;
    background: #ff1900; /* red */
    color: #fff;
    padding: 6px 8px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 3px;
    z-index: 20;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.2);
    text-transform: uppercase;
}
.price-block { display: flex; gap: 8px; align-items: baseline; justify-content: flex-start; margin: 0 16px 8px; }
.original-price { color: #ff1900; text-decoration: line-through; font-weight: 700; }
.sale-price { color: var(--gold); font-weight: 900; font-size: 1.35rem; }

/* Slight responsive adjustments for price block on small cards */
@media (max-width: 767.98px) {
    .price-block { flex-direction: row; gap: 5px; align-items: center; margin-left: 12px; }
    .sale-price { font-size: 1rem; }
    .original-price { font-size: 0.85rem; }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    color: #fff;
    font-size: 32px;
}

/* Image loader wrapper & spinner (shows while images load) */
.img-loader-wrapper {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    background: rgba(0,0,0,0.02);
}
.img-loader-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: middle;
}
.img-loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.0);
    transition: opacity .18s ease, visibility .18s ease;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
}
.img-loader .spinner {
    width: 28px;
    height: 28px;
    border: 3px solid rgba(0,0,0,0.08);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: img-spin 0.9s linear infinite;
}
.img-loader-wrapper.loaded .img-loader { opacity: 0; visibility: hidden; }

@keyframes img-spin {
    to { transform: rotate(360deg); }
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
}

@media (max-width: 576px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    .whatsapp-float i {
        font-size: 28px;
    }
}