*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --crimson: #c7566a;
    /* Soft Rose Pink */
    --crimson-dark: #a13d4e;
    --crimson-light: #d88c9a;
    --cream: #fff5f7;
    /* Very light pinkish-cream */
    --warm-white: #ffffff;
    /* Pure white for contrast */
    --sand: #fbe3e6;
    /* Blush sand */
    --sand-dark: #efcad0;
    --charcoal: #1c1c1c;
    --text: #423034;
    /* Soft dark berry for text */
    --muted: #a68b8f;
    --gold: #d4a373;
    /* Rose gold tone */
    --gold-light: #e9edc9;
}

html {
    scroll-behavior: initial;
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}


body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
    width: 100%;
}

.app {
    width: 100%;
}

section {
    padding: 64px 48px;
}

.section-header {
    margin-bottom: 32px;
    padding: 0;
}

.section-center {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.section-title-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.section-nav-mobile {
    display: none;
}

.nav-arrow {
    background: var(--crimson);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(199, 86, 106, 0.2);
    padding: 0;
    z-index: 5;
}

.nav-arrow:hover {
    background: var(--crimson-dark);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(199, 86, 106, 0.3);
}

.nav-arrow img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.desktop-nav {
    display: flex;
}


.fade-in {
    opacity: 1;
    /* Keeping visible for now, or you can add scroll logic later */
    transform: translateY(0);
    transition: transform .8s ease, opacity .8s ease;
}




.announcement-bar {
    background: var(--crimson);
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.announcement-bar .icon-img {
    width: 14px;
    height: 14px;
    filter: brightness(0) invert(1);
}

.announcement-bar a {
    color: #ffd6da;
    text-decoration: underline;
    font-weight: 600;
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}



.cat-card {
    flex: 0 0 200px;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .4s;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.cat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.cat-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.15) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 20px 12px;
    text-align: center;
}

.cat-card-name {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 8px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.cat-pill {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text);
    padding: 5px 14px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}



.categories-section {
    background: var(--warm-white);
    padding: 64px 48px;
}

.categories-scroll-wrapper {
    overflow: hidden;
}

.categories-track {
    display: flex;
    justify-content: flex-start;
    gap: 24px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: auto;
}

.categories-track::-webkit-scrollbar {
    display: none;
}

.carousel-track, .na-carousel-track {
    display: flex;
    justify-content: center !important;
    gap: 24px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: auto;
}

.carousel-track::-webkit-scrollbar, .na-carousel-track::-webkit-scrollbar {
    display: none;
}






.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}




footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.75);
    padding: 60px 48px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand .nav-logo {
    color: var(--gold);
    font-size: 24px;
    margin-bottom: 16px;
    display: block;
}

.footer-brand p {
    font-size: 13.5px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
    text-decoration: none;
}

.social-btn img {
    width: 14px;
    height: 14px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.social-btn:hover {
    background: var(--crimson);
}

.footer-col h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13.5px;
    margin-bottom: 12px;
    transition: color .2s;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 12px;
}

.payment-icons {
    display: flex;
    gap: 16px;
}




.hero {
    position: relative;
    min-height: 600px;
    height: 85vh;
    background: #111;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 48px 60px; /* Increased top padding for space after navbar */
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(20, 5, 8, 0.3) 0%, rgba(20, 5, 8, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 0px 0px 0px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 24px;
    border-radius: 30px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-tag::before {
    content: '';
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 5vw, 40px);
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #fff;
    color: var(--text);
    padding: 12px 36px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background: transparent;
    color: #fff;
    padding: 13px 28px;
    border-radius: 32px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: border-color .2s, background .2s;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

.hero-cards {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    z-index: 20;
    padding: 60px 20px 40px;
    width: 100%;
    margin-top: auto;
}

.hero-card {
    flex: 1 1 calc(25% - 20px);
    max-width: 220px;
    height: 250px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    border: 4px solid #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.hero-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 10;
}



.hero-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent);
}

.hero-card-label {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}






nav {
    background: #fff;
    border-bottom: 1px solid var(--sand);
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.nav-logo {
    font-family: 'Great Vibes', cursive;
    font-size: 32px;
    font-weight: 400;
    color: var(--crimson);
    letter-spacing: 1px;
    text-transform: none;
    line-height: 1;
    text-shadow: 0.5px 0 0 var(--crimson);
}

.nav-logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-header {
    display: none;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 6px;
    transition: all .25s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--crimson);
    background: #fdf0f2;
}

.nav-links a.active {
    color: var(--crimson);
}

.nav-links .dropdown {
    position: relative;
}

.nav-links .dropdown>a::after {
    content: '';
}

.nav-links .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid var(--sand);
    border-radius: 12px;
    width: 700px;
    padding: 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    z-index: 100;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.nav-links .dropdown-menu .mega-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-links .dropdown-menu .cat-group {
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--crimson);
    position: relative;
    padding-bottom: 6px;
}

.nav-links .dropdown-menu .cat-group::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.nav-links .dropdown-menu a {
    display: block;
    padding: 6px 0;
    font-size: 14px;
    color: var(--text);
    border-radius: 4px;
    transition: all 0.2s ease;
}

.nav-links .dropdown-menu a:hover {
    color: var(--crimson);
    padding-left: 5px;
    background: none;
}

.nav-links .dropdown:hover .dropdown-menu {
    display: grid;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-search {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid #e2e8f0;
    border-radius: 30px;
    padding: 9px 20px;
    margin-right: 12px;
    background: #f1f5f9;
    transition: all 0.3s ease;
}

.nav-search:focus-within {
    border-color: var(--crimson);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(139, 26, 42, 0.1);
}

.nav-search input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    width: 180px;
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
}

.nav-search .icon-img {
    width: 13px;
    height: 13px;
    opacity: 0.6;
}

.nav-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
    position: relative;
    text-decoration: none;
}

.nav-icon-btn img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.nav-icon-btn:hover {
    background: var(--cream);
    color: var(--crimson);
}

.badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--crimson);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}






.newsletter {
    background: var(--crimson);
    padding: 64px 48px;
    text-align: center;
}

.newsletter .nl-tag {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 14px;
}

.newsletter h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #fff;
    margin-bottom: 14px;
}

.newsletter p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.nl-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.nl-form input {
    flex: 1;
    padding: 15px 24px;
    border: none;
    font-size: 14px;
    outline: none;
}

.nl-form button {
    background: var(--charcoal);
    color: #fff;
    border: none;
    padding: 15px 28px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
}

.nl-form button:hover {
    background: #333;
}



.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #f1f5f9;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(139, 26, 42, 0.1);
    border-color: rgba(139, 26, 42, 0.1);
}

.product-img-wrap {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #f8fafc;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--crimson);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 2;
}

.product-badge.new { background: #10b981; }
.product-badge.trending { background: #f59e0b; }

.product-wishlist {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--crimson);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.product-wishlist:hover {
    background: var(--crimson);
    color: #fff;
    transform: scale(1.1);
}

.product-wishlist .icon-img {
    width: 18px;
    height: 18px;
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    font-weight: 600;
}

.product-name {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.4;
    font-family: 'Playfair Display', serif;
    min-height: 2.8em; /* Always reserve space for 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-prices {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.product-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--crimson);
}

.product-price-original {
    font-size: 14px;
    color: #94a3b8;
    text-decoration: line-through;
}

.product-add-btn {
    margin-top: auto;
    width: 100%;
    background: #fff;
    color: var(--crimson);
    border: 1.5px solid var(--crimson);
    border-radius: 10px;
    padding: 10px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-add-btn:hover {
    background: var(--crimson);
    color: #fff;
    box-shadow: 0 4px 15px rgba(139, 26, 42, 0.2);
}



.scroll-carousel {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    align-items: stretch; /* Force all cards to be equal height */
    gap: 20px;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
    user-select: none;
}

.carousel-track .product-card {
    flex: 0 0 220px;
    height: auto;
}

/* Mobile overlay: hidden by default on all screen sizes */
.na-mobile-overlay {
    display: none;
}



.promo-banners {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 64px 48px;
}

.promo-banner {
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: 320px;
    background: linear-gradient(135deg, var(--crimson-dark), #5a0e1a);
    transition: all 0.4s ease;
    cursor: pointer;
}

.promo-banner:nth-child(2) {
    grid-template-columns: 1fr 1.2fr;
    background: linear-gradient(135deg, #8a7376, #a68b8f);
}

.promo-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.promo-banner-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.promo-banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.promo-banner:hover .promo-banner-img img {
    transform: scale(1.08);
}

.promo-banner-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}

.promo-banner-tag {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.promo-banner h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.promo-banner p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
}

.promo-banner .btn-white {
    background: #fff;
    color: var(--crimson);
    padding: 12px 32px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-banner .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}





.section-header {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
    width: 100%;
}

.section-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.section-title-container {
    display: flex;
    align-items: center;
    gap: 32px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--crimson);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    text-align: center;
    margin: 0;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--gold);
    margin: 8px auto 0;
    border-radius: 2px;
}

.view-all-container {
    margin-top: 4px;
}

.view-all-link {
    color: var(--muted);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
}

.view-all-link:hover {
    color: var(--crimson);
}

.section-nav-mobile {
    display: none;
}

.nav-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #461111;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-arrow img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.view-all-link {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    padding: 8px 20px;
    background: var(--crimson);
    border: 1px solid var(--crimson);
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
}

.view-all-link:hover {
    background: var(--crimson-dark);
    border-color: var(--crimson-dark);
    box-shadow: 0 5px 15px rgba(139, 26, 42, 0.3);
    transform: translateY(-2px);
}





.testimonials-section {
    background: #fff;
}

.testimonials-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
    scroll-behavior: smooth;
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
}

.testimonials-section .section-nav {
    display: flex;
}

.testimonials-section .desktop-nav {
    display: flex !important;
}

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid var(--sand);
    flex: 0 0 calc(33.333% - 16px);
    scroll-snap-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 15px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testimonial-text {
    line-height: 1.6;
    color: var(--text);
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 18px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

.testimonial-loc {
    font-size: 13px;
    color: var(--muted);
}





.why-us {
    background: var(--cream);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 0;
    border-top: 1px solid var(--sand);
    border-bottom: 1px solid var(--sand);
}

.why-item {
    padding: 40px 32px;
    text-align: center;
    border-right: 1px solid var(--sand);
}

.why-item:last-child {
    border-right: none;
}

.why-icon {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.why-icon img {
    width: 32px;
    height: 32px;
}

.why-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.why-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}





.product-detail-page {
    background: var(--cream);
    min-height: 100vh;
    padding-bottom: 80px;
}

.detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: start;
}

@media (min-width: 901px) {
    .detail-container {
        padding: 20px 20px;
        align-items: stretch;
    }

    .product-gallery {
        display: flex;
        flex-direction: row-reverse;
        gap: 15px;
        height: auto;
    }
}

.product-gallery .main-img {
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: none;
    border: none;
}

@media (min-width: 901px) {
    .product-gallery .main-img {
        flex: 1;
        margin-bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        max-height: 80vh;
    }
}

.product-gallery .main-img img {
    width: 100%;
    max-height: 600px;
    object-fit: contain;
    display: block;
}

@media (min-width: 901px) {
    .product-gallery .main-img img {
        height: 100%;
        max-height: 100%;
    }
}

.thumb-row {
    display: flex;
    gap: 12px;
}

.thumb-row img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
}

.thumb-row img.active {
    border-color: var(--crimson);
}

.product-info-sect .detail-cat {
    color: #94a3b8;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-weight: 600;
}

.product-info-sect h1 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 24px;
    line-height: 1.3;
    font-weight: 800;
}

.detail-price-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 24px;
}

.current-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--crimson);
}

.orig-price {
    font-size: 20px;
    color: var(--muted);
    text-decoration: line-through;
}

.discount-tag {
    background: #fef2f2;
    color: var(--crimson);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid rgba(139, 26, 42, 0.1);
}

.gallery-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    overflow-x: auto;
    padding: 5px;
    scrollbar-width: thin;
}

.gallery-thumbnails .thumb {
    width: 70px;
    height: 90px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
}

.gallery-thumbnails .thumb.active {
    border-color: var(--crimson);
    transform: scale(1.05);
}

.gallery-thumbnails .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 901px) {
    .gallery-thumbnails {
        flex-direction: column;
        width: 80px;
        margin-top: 0;
        height: auto;
    }
    .gallery-thumbnails .thumb {
        width: 100%;
        height: 100px;
    }
    .product-info-sect {
        padding-right: 0;
    }
    .product-info-sect h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    .current-price {
        font-size: 24px;
    }
    .detail-price-row {
        margin-bottom: 15px;
    }
    .description {
        font-size: 14px;
        margin-bottom: 15px;
        line-height: 1.5;
    }
}

.product-description-table-container {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.desc-table-wrapper {
    background: #fff;
    border: 1px solid var(--sand);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.desc-table-wrapper h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--text);
    margin-bottom: 24px;
    text-align: left;
    border-bottom: 2px solid var(--cream);
    padding-bottom: 12px;
}

.product-desc-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    border-left: 1px solid var(--sand);
    border-right: 1px solid var(--sand);
    border-top: 1px solid var(--sand);
}

.product-desc-table th {
    text-align: left;
    padding: 16px;
    background: var(--cream);
    color: var(--text);
    font-weight: 700;
    font-size: 14px;
    width: 200px;
    border-bottom: 1px solid var(--sand);
    border-right: 1px solid var(--sand);
}

.product-desc-table td {
    padding: 16px;
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
    border-bottom: 1px solid var(--sand);
}

.trust-points-horizontal {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid var(--sand);
}

.trust-points-horizontal .point {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.related-products {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #f1f5f9;
}

.related-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: #1e293b;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 30px;
}

.variant-sect {
    margin-bottom: 24px;
}

.attr-select {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--sand-dark);
    border-radius: 12px;
    background: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%238b1a2a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.attr-select:hover {
    border-color: var(--crimson);
}

.attr-select:focus {
    outline: none;
    border-color: var(--crimson);
    box-shadow: 0 0 0 4px rgba(139, 26, 42, 0.08);
}

.attr-select option {
    color: #1e293b;
    background: #fff;
    padding: 12px;
}

.attr-select option:disabled {
    color: #94a3b8;
}

.variant-sect h4 {
    margin-bottom: 12px;
    font-size: 14px;
}

.size-options {
    display: flex;
    gap: 10px;
}

.size-options button {
    width: 44px;
    height: 44px;
    border: 1px solid var(--sand);
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.size-options button.active {
    background: var(--crimson);
    color: #fff;
    border-color: var(--crimson);
}

.action-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.action-btns button {
    flex: 1;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.add-to-cart {
    background: transparent;
    border: 2px solid var(--crimson) !important;
    color: var(--crimson);
}

.buy-now {
    background: var(--crimson);
    color: #fff;
}

.buy-now:hover {
    background: var(--crimson-dark);
}

.trust-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--sand);
}

.point {
    font-size: 14px;
    color: var(--muted);
}

.related-products {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.related-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.related-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--gold);
    margin: 10px auto 0;
}







.shop-page {
    background: var(--cream);
    min-height: 100vh;
}

.shop-banner {
    background: linear-gradient(rgba(199, 86, 106, 0.8), rgba(199, 86, 106, 0.8)), url('https://images.unsplash.com/photo-1441984904996-e0b6ba687e04?w=1600&q=80');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.shop-banner-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 12px;
}

.shop-banner-content p {
    font-size: 16px;
    letter-spacing: 1px;
}

.shop-container {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 48px;
    display: flex;
    gap: 40px;
}

.shop-sidebar {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    height: fit-content;
    align-self: flex-start;
}

.filter-group {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 20px;
    border: 1px solid var(--sand);
}

.filter-group h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--crimson);
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-options label {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--text);
}

.filter-options input[type="checkbox"] {
    accent-color: var(--crimson);
}

.price-slider input {
    width: 100%;
    accent-color: var(--crimson);
}

.price-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--muted);
    margin-top: 8px;
}

.filter-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--sand);
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    outline: none;
}

.shop-products {
    flex-grow: 1;
}

.shop-products-header {
    margin-bottom: 24px;
    display: flex;
    justify-content: flex-end;
    font-size: 14px;
    color: var(--muted);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}





.sidebar-header {
    display: none;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--sand);
}

.sidebar-header h3 {
    font-family: 'Playfair Display', serif;
    color: var(--crimson);
    font-size: 20px;
}

#closeSidebar {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--muted);
    cursor: pointer;
}

.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    backdrop-filter: blur(2px);
    animation: fadeIn 0.3s ease;
}

.sidebar-overlay.active {
    display: block;
}

.apply-filters-btn {
    display: none;
    width: 100%;
    background: var(--crimson);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    margin-top: 20px;
}



@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.mobile-filter-btn {
    display: none;
    width: 100%;
    padding: 14px;
    background: var(--crimson);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(199, 86, 106, 0.2);
    transition: all 0.3s ease;
}



/* --- CART & WISHLIST PAGES --- */
.cart-page, .wishlist-page {
    background: var(--cream);
    min-height: 80vh;
    padding: 60px 0;
}

.cart-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cart-header {
    margin-bottom: 40px;
    text-align: center;
}

.cart-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--text);
    margin-bottom: 10px;
}

.cart-header p {
    color: var(--muted);
    font-size: 14px;
}

.cart-flex {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.cart-items-wrap {
    flex: 1;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.cart-table th {
    text-align: left;
    padding: 20px;
    background: #fdf8f9;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    border-bottom: 1px solid var(--sand);
}

.cart-table td {
    padding: 20px;
    border-bottom: 1px solid var(--sand-dark);
    vertical-align: middle;
}

.product-cell {
    width: 40%;
}

.cart-prod-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-prod-info img {
    width: 70px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-prod-cat {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--muted);
    letter-spacing: 0.5px;
}

.cart-prod-name {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text);
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--sand-dark);
    border-radius: 6px;
    width: fit-content;
}

.qty-control button {
    background: none;
    border: none;
    padding: 5px 12px;
    cursor: pointer;
    font-size: 16px;
    color: var(--text);
}

.qty-control input {
    width: 30px;
    text-align: center;
    border: none;
    background: none;
    font-size: 14px;
    font-weight: 600;
}

.item-total-cell {
    font-weight: 700;
    color: var(--crimson);
}

.remove-btn {
    opacity: 0.5;
    transition: opacity 0.2s;
}

.remove-btn:hover {
    opacity: 1;
}

.cart-footer-links {
    margin-top: 24px;
}

.continue-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--crimson);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.cart-summary {
    width: 380px;
    position: sticky;
    top: 100px;
}

.summary-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--sand);
}

.summary-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 24px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14.5px;
}

.free-text {
    color: #5a7a3b;
    font-weight: 700;
}

.summary-divider {
    height: 1px;
    background: var(--sand);
    margin: 20px 0;
}

.total-row {
    font-weight: 700;
    font-size: 18px;
    color: var(--crimson);
}

.tax-info {
    font-size: 12px;
    color: var(--muted);
    margin-top: 12px;
    line-height: 1.5;
}

.checkout-btn {
    width: 100%;
    background: var(--crimson);
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    margin-top: 24px;
    cursor: pointer;
    transition: background 0.3s;
}

.checkout-btn:hover {
    background: var(--crimson-dark);
}

.secure-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 11px;
    color: var(--muted);
    margin-top: 20px;
}

.empty-cart {
    text-align: center;
    padding: 80px 0;
}

.empty-cart img {
    width: 80px;
    margin-bottom: 24px;
    opacity: 0.5;
}

.empty-cart h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 12px;
}

.empty-cart p {
    color: var(--muted);
    margin-bottom: 32px;
}




/* Final Mobile Responsiveness Overhaul */






/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 1024px) {
    nav {
        padding: 0 5px;
    }

    .nav-logo {
        font-size: 20px;
        margin-left: 0px;
    }

    section {
        padding: 48px 24px;
    }

    .section-header {
        flex-direction: column;
        margin-bottom: 24px;
    }

    .section-title-container {
        gap: 0;
    }

    .desktop-nav {
        display: none !important;
    }

    .section-nav-mobile {
        display: flex !important;
        justify-content: center;
        gap: 16px;
        width: 100%;
        margin-top: 15px;
    }

    .view-all-container {
        margin-top: 10px;
    }
}

@media (max-width: 900px) {
    .hero {
        padding: 40px 30px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-cards {
        gap: 20px;
        padding: 80px 20px 40px;
        justify-content: flex-start;
    }

    .hero-card {
        width: 200px;
        height: 110px;
    }

    .hero .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-logo {
        font-family: 'Great Vibes', cursive;
        font-size: 32px;
        text-transform: none;
        text-shadow: 0.5px 0 0 var(--crimson);
    }

    .nav-logo-link {
        gap: 6px;
    }

    .logo-img {
        height: 44px;
    }

    .mobile-menu-header {
        display: none;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 24px;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--sand);
    }

    .close-menu {
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.2s;
    }

    .close-menu:hover {
        transform: scale(1.1);
    }

    .close-menu img {
        width: 20px;
        height: 20px;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.4s ease, opacity 0.4s ease;
        z-index: 999;
    }

    .nav-links.mobile-active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links.mobile-active .mobile-menu-header {
        display: flex;
    }

    .nav-links .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        display: none;
        grid-template-columns: 1fr;
        padding: 15px 0 0;
        border: none;
    }

    .nav-links .dropdown:hover .dropdown-menu,
    .nav-links .dropdown.active .dropdown-menu {
        display: grid;
    }

    .nav-search {
        display: none;
    }

    .mobile-filter-btn {
        display: flex;
        width: max-content;
        margin-left: auto;
        margin-bottom: 20px;
        align-items: center;
        gap: 8px;
    }

    .shop-container {
        flex-direction: column;
        padding: 0 15px;
    }

    .shop-sidebar {
        position: fixed;
        left: -100%;
        top: 0;
        bottom: 0;
        width: 300px;
        max-width: 85vw;
        height: 100vh;
        background: #fff;
        z-index: 2000;
        transition: left 0.3s ease;
        padding: 20px;
        overflow-y: auto;
        box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
    }

    .shop-sidebar.active {
        left: 0;
    }

    .sidebar-header {
        display: flex;
    }

    .menu-toggle {
        display: block;
        margin-right: 8pxpx;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--cream);
        border: 1px solid var(--sand);
        border-radius: 8px;
    }

    .menu-toggle img {
        width: 30px;
        height: 30px;
    }

    .nav-icon-btn {
        width: 32px;
        height: 32px;
    }

    .nav-icon-btn img {
        width: 18px;
        height: 18px;
    }

    .nav-actions {
        gap: 5px;
    }



    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* ---- Trust / Why Us Section ---- */
    .why-us {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px 20px;
        padding: 20px 20px;
        background: var(--cream);
    }

    .why-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
        padding: 10px 0;
    }

    .why-icon {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
    }

    .why-icon img {
        width: 36px;
        height: 36px;
    }

    .why-title {
        font-size: 14px;
        font-weight: 700;
        color: var(--text);
    }

    .why-desc {
        font-size: 12px;
        color: var(--muted);
        line-height: 1.5;
    }

    .promo-banner-img::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
        z-index: 1;
    }

    /* --- PROMO BANNERS: 2 columns vertical --- */
    .promo-banners {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 0 12px 30px;
        overflow-x: visible;
    }

    .promo-banner {
        flex: none;
        display: flex !important;
        flex-direction: column !important;
        min-height: 480px;
        height: auto;
        grid-template-columns: 1fr !important;
        border-radius: 16px;
    }

    .promo-banner:nth-child(1) {
        background: #6d1a22 !important;
    }

    .promo-banner:nth-child(2) {
        background: #8b7376 !important;
    }

    .promo-banner-img {
        position: relative !important;
        height: 280px;
        width: 100%;
        flex: none;
    }

    .promo-banner-content {
        padding: 20px 15px;
        text-align: left;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }

    .promo-banner h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .promo-banner p {
        font-size: 11px;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .promo-banner .btn-white {
        padding: 10px 20px;
        font-size: 11px;
        width: 100%;
    }

    /* --- TOP CATEGORIES: horizontal row, 2 visible, arrow-scrollable --- */
    .categories-scroll-wrapper {
        overflow: hidden;
        width: 100%;
    }

    .categories-track {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 12px;
        padding: 0;
        width: 100%;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .categories-track::-webkit-scrollbar {
        display: none;
    }


    .categories-section {
        padding: 40px 20px;
    }

    .categories-section .section-header {
        padding: 0 15px;
    }

    .cat-card {
        flex: 0 0 calc(50% - 10px);
        width: calc(50% - 10px);
        height: 250px;
    }

    .cat-img-wrap {
        display: none;
    }

    /* --- NEW ARRIVALS: Standard cards with Add to Cart --- */
    #new-arrivals .scroll-carousel {
        overflow: hidden;
    }

    .na-carousel-track {
        display: flex !important;
        justify-content: center;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 12px;
        width: 100%;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .na-carousel-track::-webkit-scrollbar {
        display: none;
    }


    .na-carousel-track .product-card {
        flex: 0 0 calc(50% - 10px);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
        background: #fff;
        border: 1px solid var(--sand);
    }

    .na-carousel-track .product-img-wrap {
        height: 200px;
        position: relative;
    }

    .na-carousel-track .product-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .na-carousel-track .product-info {
        display: flex !important;
        padding: 12px;
        gap: 4px;
        background: #fff;
    }

    .na-carousel-track .product-name {
        font-size: 13px;
        margin-bottom: 4px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .na-carousel-track .product-prices {
        gap: 6px;
        margin-bottom: 8px;
    }

    .na-carousel-track .product-price {
        font-size: 14px;
    }

    .na-carousel-track .product-price-original {
        font-size: 11px;
    }

    .na-carousel-track .product-add-btn {
        padding: 6px;
        font-size: 11px;
        border-radius: 6px;
    }

    .na-carousel-track .na-mobile-overlay {
        display: none !important;
    }

    .hero-cards {
        padding: 20px 0 0;
        gap: 12px;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        width: 100%;
        overflow: visible;
        margin-bottom: 0;
    }

    .hero-card {
        flex: 0 0 130px;
        height: 185px;
        margin: 0;
    }

    /* Testimonials mobile slider */
    .desktop-nav {
        display: none !important;
    }

    .section-nav-mobile {
        display: flex !important;
        justify-content: center;
        gap: 12px;
        margin-top: 10px;
    }

    .testimonials-section .section-nav {
        display: none !important;
    }

    .testimonials-grid {
        display: flex !important;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 16px;
        width: 100%;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
        padding: 20px 0;
    }

    .testimonials-grid::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        flex: 0 0 calc(85% - 16px);
        padding: 20px;
        scroll-snap-align: center;
    }

    /* --- PRODUCT DETAIL MOBILE --- */
    .detail-container {
        grid-template-columns: 1fr;
        padding: 15px;
        gap: 20px;
    }

    .product-gallery {
        display: flex;
        flex-direction: column;
    }

    .product-gallery .main-img {
        margin-bottom: 12px;
        border-radius: 16px;
    }

    .product-gallery .main-img img {
        max-height: 450px;
    }

    .gallery-thumbnails {
        margin-top: 5px;
        order: 2;
        gap: 8px;
    }

    .gallery-thumbnails .thumb {
        width: 60px;
        height: 75px;
    }

    .size-chart-link-wrap {
        order: 3;
        text-align: left;
        margin: 10px 0 0;
    }

    .product-info-sect h1 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .detail-price-row {
        margin-bottom: 15px;
    }

    .current-price {
        font-size: 26px;
    }

    .description {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .product-description-table-container {
        padding: 0;
        margin-bottom: 40px;
    }

    .desc-table-wrapper {
        padding: 24px 15px;
        border-radius: 0;
        border-left: none;
        border-right: none;
        box-shadow: none;
    }

    .desc-table-wrapper h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .product-desc-table th {
        width: 110px;
        padding: 12px 8px;
        font-size: 12px;
    }

    .product-desc-table td {
        padding: 12px 8px;
        font-size: 12px;
    }

    .trust-points-horizontal {
        padding-top: 20px;
        gap: 15px;
    }

    .trust-points-horizontal .point {
        font-size: 12px;
    }

    .variant-sect {
        margin-bottom: 20px;
    }

    .variant-sect h4 {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .selector-group {
        gap: 8px;
        margin-bottom: 15px;
    }

    .attr-btn {
        padding: 8px 16px;
        font-size: 13px;
        border-radius: 10px;
    }

    .action-btns {
        margin-bottom: 30px;
        gap: 10px;
    }

    .add-to-cart {
        padding: 14px !important;
        font-size: 14px !important;
    }

    .wishlist-btn-large {
        width: 50px;
        height: 50px;
        flex: 0 0 50px !important;
    }
}

@media (max-width: 480px) {
    .announcement-bar {
        padding: 8px 10px;
        font-size: 10.5px;
        gap: 8px;
        flex-wrap: nowrap;
        white-space: nowrap;
    }

    .announcement-bar .icon-img {
        width: 12px;
        height: 12px;
        flex-shrink: 0;
    }

    nav {
        height: 60px;
        padding: 0 10px;
    }

    .nav-logo {
        font-size: 24px !important;
    }

    .logo-img {
        height: 38px !important;
    }

    .nav-actions {
        gap: 2px;
    }

    .nav-icon-btn {
        width: 28px;
        height: 28px;
    }

    .menu-toggle {
        width: 36px;
        height: 36px;
        margin-right: 0;
    }

    .hero {
        padding: 30px 15px 15px;
        min-height: auto;
        height: auto;
    }

    .hero h1 {
        font-size: 22px;
        letter-spacing: 1px;
        margin-bottom: 16px;
    }

    .hero-tag {
        font-size: 11px;
        padding: 6px 18px;
        margin-bottom: 8px;
    }

    .hero-btns {
        flex-direction: row;
        width: 100%;
        gap: 10px;
        margin-bottom: 20px;
    }

    .btn-primary,
    .btn-outline {
        flex: 1;
        justify-content: center;
        padding: 10px 10px;
        font-size: 11px;
        white-space: nowrap;
    }

    .hero-cards {
        padding: 12px 10px 10px;
        gap: 20px;
        overflow: hidden;
        margin-bottom: 0;
    }

    .hero-card {
        flex: 0 0 115px;
        height: 140px;
        margin: 0;
    }

    .shop-banner {
        height: 250px;
        padding: 15px;
    }

    .shop-banner-content h1 {
        font-size: 36px;
        margin-bottom: 8px;
    }

    .shop-banner-content p {
        font-size: 15px;
    }

    /* Categories: 2 cards visible via arrow scroll */
    .categories-scroll-wrapper {
        overflow: hidden;
    }

    .categories-track {
        display: flex;
        flex-wrap: nowrap;
        gap: 12px;
        transform: translateX(0);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .categories-section {
        padding: 30px 30px;
    }

    .categories-section .section-header {
        padding: 0px 25px;
    }

    .cat-card {
        flex: 0 0 calc(50% - 10px);
        width: calc(50% - 10px);
        height: 240px;
    }

    .cat-card-name {
        font-size: 15px;
        letter-spacing: 1.5px;
    }

    .cat-pill {
        font-size: 9px;
        padding: 4px 10px;
    }

    /* --- NEW ARRIVALS 480px adjustments --- */
    .na-carousel-track .product-img-wrap {
        height: 200px;
    }

    .na-mobile-name {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .na-mobile-price {
        font-size: 10px;
        padding: 3px 10px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 22px;
    }

    .newsletter {
        padding: 40px 20px;
    }

    .newsletter h2 {
        font-size: 28px;
    }

    .nl-form {
        border-radius: 30px;
        flex-direction: row;
        /* Keep it in a row if possible, or stacked if too tight */
        width: 100%;
    }

    .nl-form input {
        padding: 12px 16px;
        font-size: 13px;
        min-width: 0;
        /* Allow it to shrink */
    }

    .nl-form button {
        padding: 12px 20px;
        font-size: 13px;
        white-space: nowrap;
    }

    .na-carousel-track .product-card {
        flex: 0 0 calc(50% - 10px);
    }

    .shop-grid,
    .products-grid,
    .related-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }

    .na-carousel-track .product-img-wrap {
        height: 180px;
    }

    .cart-flex {
        flex-direction: column;
        gap: 30px;
    }

    .cart-summary {
        width: 100%;
        position: static;
    }

    .cart-table thead {
        display: none;
    }

    .cart-table tr {
        display: block;
        padding: 15px;
        border-bottom: 8px solid var(--cream);
    }

    .cart-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        border: none;
        width: 100% !important;
    }

    .cart-table td::before {
        content: attr(data-label);
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        color: var(--muted);
    }

    .product-cell::before {
        display: none;
    }

    .cart-prod-info {
        width: 100%;
    }

    .cart-prod-info img {
        width: 60px;
        height: 75px;
    }
}

/* PRODUCT PRICING STYLES */
.product-prices {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    margin-bottom: 12px;
}

.product-price {
    font-weight: 700;
    color: var(--crimson);
    font-size: 1.1rem;
}

.product-price-original {
    color: var(--muted);
    text-decoration: line-through;
    font-size: 0.9rem;
    font-weight: 400;
}