/* ============================================
   HOUSE OF DEVII — style.css
   Pixel-perfect match to design reference
=============================================== */

/* ============================================
   1. CSS VARIABLES — Brand palette
=============================================== */
:root {
    --cream:        #f4efe6;
    --cream-light:  #faf7f2;
    --cream-mid:    #ede8de;
    --gold:         #b5924c;
    --gold-hover:   #9a7a3e;
    --dark:         #1e1e1e;
    --dark-mid:     #2e2c29;
    --text-body:    #4a4540;
    --text-muted:   #8a857d;
    --border:       #ddd8ce;
    --white:        #ffffff;

    --font-display: 'Cormorant Garamond', serif;
    --font-ui:      'Jost', sans-serif;
}

/* ============================================
   2. RESET & BASE
=============================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-ui);
    background-color: var(--cream-light);
    color: var(--dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   3. ANNOUNCEMENT BAR
   — Matches design: dark bg, 3 items, small caps
=============================================== */
.announcement-bar {
    background-color: #2a2825;
    color: #d4cec4;
    padding: 9px 20px;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.5px;
}

.announcement-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.announcement-inner span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.announcement-inner i {
    color: var(--gold);
    font-size: 10px;
}

/* ============================================
   4. HEADER
   — Sticky, 3-col layout: icon | logo | icons
=============================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--cream-light);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 18px 48px;
    border-bottom: 1px solid var(--border);
}

/* Icon buttons */
.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: var(--dark);
    padding: 6px;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
}

.icon-btn:hover { color: var(--gold); }

.header-left {
    display: flex;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

/* Logo */
.header-center { text-align: center; }

.logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.logo-lotus { line-height: 0; }

.logo-text { text-align: center; }

.logo-name-row {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

.logo-dot {
    color: var(--gold);
    font-size: 18px;
    line-height: 1;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 10px;
    color: var(--dark);
    line-height: 1;
}

.logo-tagline {
    font-family: var(--font-ui);
    font-size: 9px;
    letter-spacing: 4px;
    color: var(--gold);
    font-weight: 400;
    margin-top: 2px;
}

/* Cart badge */
.cart-icon { position: relative; }

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: var(--gold);
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 9px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-ui);
}

/* Search bar */
.search-bar {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 14px 48px;
    gap: 12px;
    align-items: center;
    grid-column: 1 / -1;
}

.search-bar.open { display: flex; }

.search-bar input {
    flex: 1;
    border: none;
    border-bottom: 1px solid var(--border);
    background: transparent;
    padding: 8px 0;
    font-family: var(--font-ui);
    font-size: 14px;
    color: var(--dark);
    outline: none;
}

.search-bar button {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 14px;
}

/* ============================================
   5. NAVBAR
   — Centered links, gold active underline
=============================================== */
.navbar {
    background-color: var(--cream-light);
    border-bottom: 1px solid var(--border);
    padding: 0;
}

.navbar ul {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar ul li a {
    display: block;
    padding: 14px 22px;
    font-family: var(--font-ui);
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 1.8px;
    color: var(--text-body);
    transition: color 0.2s;
    position: relative;
}

.navbar ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s;
}

.navbar ul li a:hover,
.navbar ul li a.active {
    color: var(--gold);
}

.navbar ul li a.active::after,
.navbar ul li a:hover::after {
    width: calc(100% - 44px);
}

/* ============================================
   6. HERO SECTION
   — Left text, right image, cream background
=============================================== */
.hero {
    display: flex;
    align-items: stretch;
    min-height: 88vh;
    background-color: var(--cream-light);
    overflow: hidden;
    position: relative;
}

.hero-content {
    flex: 0 0 48%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 72px 80px 80px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 58px;
    font-weight: 400;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--dark);
}

.hero-ornament {
    margin: 6px 0 24px;
    line-height: 0;
}

.hero-desc {
    font-family: var(--font-ui);
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 36px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 13px 26px;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    text-align: center;
}

.btn-filled {
    background-color: var(--gold);
    color: var(--white);
}

.btn-filled:hover {
    background-color: var(--gold-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--dark);
    border: 1.5px solid var(--dark);
}

.btn-outline:hover {
    background-color: var(--dark);
    color: var(--white);
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--dark);
    border: 1.5px solid var(--dark);
    padding: 11px 24px;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.25s;
    display: inline-block;
}

.btn-outline-dark:hover {
    background-color: var(--dark);
    color: var(--white);
}

/* Hero image */
.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: var(--cream-light);
}

/* Fade from cream background into image on the left edge */
.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right,
        #faf7f2 0%,
        #faf7f2 5%,
        rgba(250, 247, 242, 0.95) 20%,
        rgba(250, 247, 242, 0.7) 40%,
        rgba(250, 247, 242, 0.2) 65%,
        rgba(250, 247, 242, 0) 100%
    );
    z-index: 2;
    pointer-events: none;
}


.hero-img-placeholder {
    width: 100%;
    height: 100%;
}

.hero-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-img-placeholder.no-img {
    background-color: var(--cream-mid);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   7. CATEGORY CARDS
   — Full-width 3-column, image with text overlay
=============================================== */
.categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.category-card {
    position: relative;
    height: 380px;
    overflow: hidden;
    cursor: pointer;
    background-color: var(--cream-mid);
}

.cat-img-wrap {
    position: absolute;
    inset: 0;
}

.cat-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover .cat-img-wrap img {
    transform: scale(1.06);
}

/* Dark gradient overlay — bottom half */
.cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 30%,
        rgba(20, 18, 14, 0.55) 100%
    );
}

.cat-info {
    position: absolute;
    bottom: 28px;
    left: 26px;
    color: var(--white);
    z-index: 2;
}

.cat-icon-svg {
    margin-bottom: 8px;
    line-height: 0;
    opacity: 0.9;
}

.cat-info h3 {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.5px;
    line-height: 1.5;
    margin-bottom: 10px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.cat-link {
    font-family: var(--font-ui);
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.7);
    padding-bottom: 2px;
    transition: border-color 0.2s;
}

.cat-link:hover {
    border-bottom-color: white;
}

/* ============================================
   8. BEST SELLERS
=============================================== */
.best-sellers {
    padding: 72px 60px;
    background-color: var(--cream-light);
}

.section-header {
    text-align: center;
    margin-bottom: 44px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 5px;
    color: var(--dark);
    margin-bottom: 14px;
}

.section-ornament {
    display: inline-block;
    line-height: 0;
}

/* Products grid — 5 columns */
.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* Product card */
.product-card {
    background: var(--white);
    cursor: pointer;
    transition: box-shadow 0.3s;
}

.product-card:hover {
    box-shadow: 0 6px 28px rgba(0,0,0,0.09);
}

.product-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
    background-color: var(--cream-mid);
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.04);
}

.product-img-wrap.no-img {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--border);
    font-size: 32px;
}

/* Wishlist button */
.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    color: #ccc;
    transition: color 0.25s, box-shadow 0.25s;
    box-shadow: 0 1px 6px rgba(0,0,0,0.1);
    z-index: 2;
}

.wishlist-btn:hover,
.wishlist-btn.active {
    color: #c0392b;
}

.wishlist-btn.active i {
    font-weight: 900; /* solid heart */
}

.product-info {
    padding: 14px 14px 16px;
}

.product-info h4 {
    font-family: var(--font-ui);
    font-size: 12.5px;
    font-weight: 400;
    color: var(--dark);
    line-height: 1.5;
    margin-bottom: 6px;
    min-height: 38px;
}

.price {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 12px;
}

.btn-add-cart {
    width: 100%;
    padding: 9px 10px;
    background: transparent;
    border: 1px solid var(--dark);
    font-family: var(--font-ui);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 1.8px;
    cursor: pointer;
    transition: all 0.25s;
    color: var(--dark);
}

.btn-add-cart:hover {
    background-color: var(--dark);
    color: var(--white);
}

/* Carousel dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--border);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: var(--gold);
}

/* ============================================
   9. TRUST BADGES
   — 4 items, gold icons, dividers between
=============================================== */
.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 44px 60px;
    background-color: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    gap: 0;
}

.trust-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0 20px;
}

.trust-divider {
    width: 1px;
    height: 48px;
    background-color: var(--border);
    flex-shrink: 0;
}

.trust-icon {
    line-height: 0;
    flex-shrink: 0;
}

.trust-text h4 {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--dark);
    margin-bottom: 2px;
}

.trust-text p {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* ============================================
   10. ABOUT SECTION
   — Left text, right image (half/half)
=============================================== */
.about-home {
    display: flex;
    align-items: stretch;
    min-height: 420px;
}

.about-text {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 72px 80px;
    background-color: var(--cream-light);
}

.about-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--dark);
    margin-bottom: 14px;
}

.about-ornament {
    margin-bottom: 20px;
    line-height: 0;
}

.about-text p {
    font-family: var(--font-ui);
    font-size: 13.5px;
    color: var(--text-body);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 28px;
    max-width: 380px;
}

.about-image {
    flex: 1;
    overflow: hidden;
    background-color: var(--cream-mid);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image.no-img {
    background-color: var(--cream-mid);
}

/* ============================================
   11. FOOTER
=============================================== */
.footer {
    background-color: #1e1c19;
    color: #c8c2b8;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 60px 80px 50px;
    border-bottom: 1px solid #333;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 4px;
    color: var(--white);
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 12.5px;
    color: #888;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
}

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    border: 1px solid #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #888;
    transition: all 0.25s;
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-col h4 {
    font-family: var(--font-ui);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #e8e2d8;
    margin-bottom: 18px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 12.5px;
    color: #888;
    font-weight: 300;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding: 18px 80px;
    font-size: 11.5px;
    color: #555;
    letter-spacing: 0.5px;
}

/* ============================================
   12. TOAST NOTIFICATION
=============================================== */
.toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(16px);
    background-color: var(--dark-mid);
    color: var(--white);
    padding: 13px 28px;
    font-family: var(--font-ui);
    font-size: 12.5px;
    letter-spacing: 0.5px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 9999;
    white-space: nowrap;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ============================================
   13. CART PAGE
=============================================== */
.cart-page {
    max-width: 1100px;
    margin: 64px auto;
    padding: 0 40px;
}

.cart-page-title {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 5px;
    font-weight: 400;
    margin-bottom: 10px;
    text-align: center;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    margin-top: 44px;
    align-items: start;
}

.cart-item {
    display: grid;
    grid-template-columns: 90px 1fr auto auto auto;
    gap: 20px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.cart-item-image {
    width: 90px;
    height: 90px;
    overflow: hidden;
    background-color: var(--cream-mid);
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details h4 {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 6px;
    line-height: 1.4;
}

.cart-item-price {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--gold);
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border);
    padding: 5px 12px;
}

.cart-item-quantity button {
    background: none;
    border: none;
    font-size: 17px;
    cursor: pointer;
    color: var(--dark);
    line-height: 1;
    padding: 0;
}

.cart-item-quantity span {
    font-size: 13px;
    min-width: 18px;
    text-align: center;
}

.cart-item-total {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 500;
    min-width: 80px;
    text-align: right;
}

.cart-item-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: #ccc;
    font-size: 15px;
    transition: color 0.2s;
    padding: 4px;
}

.cart-item-remove:hover { color: #c0392b; }

.empty-cart {
    text-align: center;
    padding: 80px 20px;
}

.empty-cart i {
    font-size: 52px;
    color: var(--border);
    display: block;
    margin-bottom: 20px;
}

.empty-cart h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 8px;
}

.empty-cart p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.cart-summary {
    background: var(--cream-light);
    border: 1px solid var(--border);
    padding: 28px;
}

.cart-summary h3 {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 12px;
    color: var(--text-body);
}

.summary-note {
    font-size: 11px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 12px;
}

.total-row {
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    margin-top: 6px;
    color: var(--dark);
}

.checkout-btn {
    width: 100%;
    text-align: center;
    margin-top: 22px;
    padding: 15px;
    font-size: 11.5px;
    cursor: pointer;
}

.continue-shopping {
    display: block;
    text-align: center;
    margin-top: 14px;
    font-size: 11.5px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.continue-shopping:hover { color: var(--gold); }

/* ============================================
   14. RESPONSIVE — Mobile
=============================================== */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .announcement-inner {
        gap: 20px;
        font-size: 10px;
    }

    .header {
        padding: 14px 20px;
    }

    .logo-name {
        font-size: 22px;
        letter-spacing: 6px;
    }

    .navbar ul {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 20px;
        gap: 0;
    }

    .navbar ul li a {
        font-size: 10px;
        padding: 12px 14px;
    }

    .hero {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content {
        padding: 48px 28px;
        flex: none;
    }

    .hero-title { font-size: 38px; }

    .hero-image {
        height: 320px;
        flex: none;
    }

    .categories {
        grid-template-columns: 1fr;
    }

    .category-card { height: 260px; }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-badges {
        flex-wrap: wrap;
        padding: 36px 24px;
        gap: 24px;
    }

    .trust-divider { display: none; }

    .trust-item {
        flex: 0 0 45%;
    }

    .about-home { flex-direction: column; }

    .about-text {
        padding: 48px 28px;
        flex: none;
    }

    .about-image {
        height: 300px;
        flex: none;
        width: 100%;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        padding: 40px 28px 32px;
        gap: 28px;
    }

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-item {
        grid-template-columns: 80px 1fr auto;
        grid-template-rows: auto auto;
    }

    .cart-item-total { text-align: left; }
}
/* ============================================
   SHOP PAGE
=============================================== */
.page-banner {
    background-color: var(--cream-mid);
    text-align: center;
    padding: 52px 20px;
    border-bottom: 1px solid var(--border);
}

.page-banner h1 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--dark);
    margin-bottom: 10px;
}

.page-banner p {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.shop-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    padding: 48px 60px;
    align-items: start;
}

/* Filters Sidebar */
.filters-sidebar {
    position: sticky;
    top: 120px;
    padding-right: 40px;
    border-right: 1px solid var(--border);
}

.filter-group {
    margin-bottom: 36px;
}

.filter-group h4 {
    font-family: var(--font-ui);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--dark);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.filter-list li {
    margin-bottom: 2px;
}

.filter-btn {
    background: none;
    border: none;
    font-family: var(--font-ui);
    font-size: 12.5px;
    font-weight: 300;
    color: var(--text-body);
    cursor: pointer;
    padding: 6px 0;
    transition: color 0.2s;
    text-align: left;
    width: 100%;
}

.filter-btn:hover {
    color: var(--gold);
}

.filter-btn.active {
    color: var(--gold);
    font-weight: 500;
}

/* Shop Products Area */
.shop-products {
    padding-left: 48px;
}

.shop-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.product-count {
    font-size: 12.5px;
    color: var(--text-muted);
    font-weight: 300;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Product badge (New / Best Seller) */
.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--gold);
    color: white;
    font-family: var(--font-ui);
    font-size: 9.5px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 4px 8px;
    z-index: 2;
}

/* No results */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    grid-column: 1 / -1;
}

.no-results i {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
    color: var(--border);
}

.no-results p {
    font-size: 13px;
}

@media (max-width: 768px) {
    .shop-layout {
        grid-template-columns: 1fr;
        padding: 28px 20px;
    }

    .filters-sidebar {
        position: static;
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding-bottom: 24px;
        margin-bottom: 28px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .shop-products { padding-left: 0; }

    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}
/* ============================================
   PRODUCT DETAIL PAGE
=============================================== */
.breadcrumb {
    padding: 16px 80px;
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border);
    background-color: var(--cream-light);
}

.breadcrumb a {
    color: var(--text-muted);
    transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--gold); }

.breadcrumb span { color: var(--text-muted); }

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 80px;
    align-items: start;
}

/* Images side */
.pd-images {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pd-main-image {
    width: 100%;
    height: 520px;
    overflow: hidden;
    background-color: var(--cream-mid);
}

.pd-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.pd-main-image:hover img {
    transform: scale(1.03);
}

.pd-thumbnails {
    display: flex;
    gap: 10px;
}

.pd-thumb {
    width: 80px;
    height: 80px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s;
    background-color: var(--cream-mid);
    flex-shrink: 0;
}

.pd-thumb.active {
    border-color: var(--gold);
}

.pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info side */
.pd-info {
    padding-top: 8px;
}

.pd-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--dark);
    margin: 10px 0 14px;
}

.pd-price {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 4px;
}

.pd-divider {
    height: 1px;
    background-color: var(--border);
    margin: 22px 0;
}

.pd-description {
    font-size: 13.5px;
    color: var(--text-body);
    line-height: 1.9;
    font-weight: 300;
}

.pd-quantity-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 22px;
}

.pd-quantity-row label {
    font-size: 10.5px;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--dark);
}

.pd-quantity {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--border);
}

.pd-quantity button {
    background: none;
    border: none;
    width: 36px;
    height: 36px;
    font-size: 18px;
    cursor: pointer;
    color: var(--dark);
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pd-quantity button:hover {
    background-color: var(--cream-mid);
}

.pd-quantity span {
    width: 44px;
    text-align: center;
    font-size: 14px;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    height: 36px;
    line-height: 36px;
}

.pd-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.pd-cart-btn {
    flex: 1;
    padding: 15px 20px;
    font-size: 12px;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
}

.pd-wishlist-btn {
    width: 48px;
    height: 48px;
    border: 1.5px solid var(--border);
    background: transparent;
    cursor: pointer;
    font-size: 16px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    border-radius: 0;
    position: static;
    box-shadow: none;
}

.pd-wishlist-btn:hover,
.pd-wishlist-btn.active {
    border-color: #c0392b;
    color: #c0392b;
}

.pd-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pd-meta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12.5px;
    color: var(--text-body);
    font-weight: 300;
}

.pd-meta-row i {
    color: var(--gold);
    width: 16px;
    font-size: 13px;
}

/* Related products section */
.related-products {
    padding: 64px 80px;
    background-color: var(--cream-light);
    border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
    .breadcrumb { padding: 14px 20px; }

    .product-detail {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 28px 20px;
        margin: 28px auto;
    }

    .pd-main-image { height: 340px; }

    .related-products { padding: 48px 20px; }
}
/* ============================================
   CART PAGE — FULL
=============================================== */
.cart-page {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 60px;
    text-align: center;
}

.cart-page-title {
    font-family: var(--font-display);
    font-size: 30px;
    letter-spacing: 5px;
    font-weight: 400;
    margin-bottom: 12px;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    text-align: left;
    align-items: start;
}

.cart-header-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 40px;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 2px solid var(--dark);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--dark);
    margin-bottom: 8px;
}

.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 40px;
    gap: 16px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.cart-item-product {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    overflow: hidden;
    background-color: var(--cream-mid);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details h4 {
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 4px;
    line-height: 1.4;
}

.cart-item-category {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 300;
}

.cart-item-price,
.cart-item-total {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 500;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    width: fit-content;
}

.cart-item-quantity button {
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    font-size: 16px;
    cursor: pointer;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.cart-item-quantity button:hover {
    background-color: var(--cream-mid);
}

.cart-item-quantity span {
    width: 36px;
    text-align: center;
    font-size: 13px;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    height: 32px;
    line-height: 32px;
}

.cart-item-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: #ccc;
    font-size: 14px;
    transition: color 0.2s;
    padding: 4px;
    justify-self: center;
}

.cart-item-remove:hover { color: #c0392b; }

/* Coupon */
.coupon-row {
    display: flex;
    gap: 0;
    margin: 16px 0 6px;
    border: 1px solid var(--border);
}

.coupon-row input {
    flex: 1;
    border: none;
    padding: 10px 14px;
    font-family: var(--font-ui);
    font-size: 12.5px;
    background: transparent;
    outline: none;
    color: var(--dark);
}

.coupon-row button {
    background-color: var(--dark);
    color: white;
    border: none;
    padding: 10px 16px;
    font-family: var(--font-ui);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.coupon-row button:hover {
    background-color: var(--gold);
}

.coupon-msg {
    font-size: 12px;
    margin-bottom: 8px;
    min-height: 18px;
}

/* ============================================
   CHECKOUT PAGE
=============================================== */
.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
    gap: 0;
    border-bottom: 1px solid var(--border);
    background-color: var(--cream-light);
}

.step {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.4;
    transition: opacity 0.3s;
}

.step.active { opacity: 1; }

.step-num {
    width: 30px;
    height: 30px;
    border: 1.5px solid var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font-ui);
}

.step.active .step-num {
    background-color: var(--dark);
    color: white;
}

.step-label {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 2px;
    font-family: var(--font-ui);
}

.step-line {
    width: 60px;
    height: 1px;
    background-color: var(--border);
    margin: 0 12px;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    padding: 52px 60px;
    align-items: start;
}

.checkout-form-side {
    padding-right: 60px;
    border-right: 1px solid var(--border);
}

.checkout-summary-side {
    padding-left: 52px;
}

.checkout-section-title {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--dark);
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

/* Form fields */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--dark);
    margin-bottom: 7px;
}

.form-group input {
    width: 100%;
    border: 1px solid var(--border);
    background-color: var(--white);
    padding: 11px 14px;
    font-family: var(--font-ui);
    font-size: 13px;
    color: var(--dark);
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus {
    border-color: var(--gold);
}

.checkout-next-btn {
    width: 100%;
    padding: 15px;
    font-size: 12px;
    letter-spacing: 2px;
    margin-top: 8px;
    border: none;
    cursor: pointer;
}

.checkout-actions {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

.back-btn {
    flex: 0 0 120px;
    padding: 14px;
    font-size: 11px;
    letter-spacing: 1.5px;
}

/* Payment options */
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 8px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1.5px solid var(--border);
    padding: 16px 18px;
    cursor: pointer;
    transition: border-color 0.2s;
}

.payment-option:has(input:checked) {
    border-color: var(--gold);
    background-color: #fdf8f0;
}

.payment-option input[type="radio"] {
    accent-color: var(--gold);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.payment-option-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.payment-option-content i {
    font-size: 20px;
    color: var(--gold);
    width: 24px;
    text-align: center;
}

.payment-option-content strong {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 2px;
}

.payment-option-content p {
    font-size: 11.5px;
    color: var(--text-muted);
    font-weight: 300;
}

/* Checkout order summary */
.co-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.co-item-img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background-color: var(--cream-mid);
    overflow: hidden;
}

.co-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.co-item-info {
    flex: 1;
}

.co-item-info p {
    font-size: 12.5px;
    font-weight: 400;
    margin-bottom: 3px;
    line-height: 1.4;
}

.co-item-info span {
    font-size: 11.5px;
    color: var(--text-muted);
    font-weight: 300;
}

.co-item-price {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 500;
}

.checkout-summary-totals {
    margin-top: 16px;
}

.checkout-secure {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 11.5px;
    color: var(--text-muted);
    font-weight: 300;
}

.checkout-secure i {
    color: var(--gold);
    font-size: 12px;
}

/* Order Success Modal */
.order-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.order-modal-box {
    background: var(--white);
    padding: 60px 52px;
    text-align: center;
    max-width: 460px;
    width: 90%;
}

.order-success-icon {
    font-size: 56px;
    color: #27ae60;
    margin-bottom: 20px;
}

.order-modal-box h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.order-modal-box p {
    font-size: 13.5px;
    color: var(--text-body);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 10px;
}

.order-id-text {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 28px !important;
}

@media (max-width: 768px) {
    .cart-page { padding: 0 20px; }
    .cart-layout { grid-template-columns: 1fr; }
    .cart-header-row { display: none; }
    .cart-item {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto auto;
    }
    .checkout-layout {
        grid-template-columns: 1fr;
        padding: 28px 20px;
    }
    .checkout-form-side {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding-bottom: 36px;
        margin-bottom: 36px;
    }
    .checkout-summary-side { padding-left: 0; }
    .form-row { grid-template-columns: 1fr; }
}
/* ============================================
   ABOUT PAGE
=============================================== */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
    align-items: stretch;
}

.about-story-image {
    overflow: hidden;
    background-color: var(--cream-mid);
}

.about-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-story-image.no-img {
    background-color: var(--cream-mid);
    min-height: 400px;
}

.about-story-text {
    padding: 72px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--cream-light);
}

.about-story-text h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 14px;
}

.about-story-text p {
    font-size: 13.5px;
    color: var(--text-body);
    line-height: 1.95;
    font-weight: 300;
    margin-bottom: 16px;
}

/* Values */
.about-values {
    padding: 80px 80px;
    background-color: var(--white);
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 8px;
}

.value-card {
    padding: 36px 24px;
    border: 1px solid var(--border);
    background-color: var(--cream-light);
    transition: box-shadow 0.3s;
}

.value-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.07);
}

.value-icon {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 16px;
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--dark);
}

.value-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 300;
}

/* Stats */
.about-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
    background-color: var(--dark);
    gap: 0;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.stat-item h3 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 6px;
}

.stat-item p {
    font-size: 11px;
    letter-spacing: 2px;
    color: #aaa;
    font-weight: 300;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background-color: #444;
    flex-shrink: 0;
}

/* About CTA */
.about-cta {
    text-align: center;
    padding: 80px 20px;
    background-color: var(--cream-light);
}

.about-cta h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: var(--dark);
}

.about-cta p {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 28px;
}

/* ============================================
   CONTACT PAGE
=============================================== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1100px;
    margin: 0 auto;
    padding: 64px 60px;
    gap: 72px;
    align-items: start;
}

.contact-info-side h2 {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 14px;
}

.contact-intro {
    font-size: 13.5px;
    color: var(--text-body);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    background-color: var(--cream-mid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-detail-item h4 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--dark);
    margin-bottom: 4px;
}

.contact-detail-item a {
    font-size: 13.5px;
    color: var(--gold);
    font-weight: 400;
    display: block;
    margin-bottom: 2px;
}

.contact-detail-item p {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 300;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25d366;
    color: white;
    padding: 14px 24px;
    font-family: var(--font-ui);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: background-color 0.25s;
}

.whatsapp-btn:hover {
    background-color: #1da851;
    color: white;
}

.whatsapp-btn i {
    font-size: 18px;
}

/* Contact form */
.contact-form-side {
    background-color: var(--cream-light);
    padding: 40px;
    border: 1px solid var(--border);
}

.contact-form-side .form-group {
    margin-bottom: 20px;
}

.contact-form-side textarea {
    width: 100%;
    border: 1px solid var(--border);
    background-color: var(--white);
    padding: 12px 14px;
    font-family: var(--font-ui);
    font-size: 13px;
    color: var(--dark);
    outline: none;
    resize: vertical;
    transition: border-color 0.2s;
}

.contact-form-side textarea:focus {
    border-color: var(--gold);
}

.contact-form-side select {
    width: 100%;
    border: 1px solid var(--border);
    background-color: var(--white);
    padding: 11px 14px;
    font-family: var(--font-ui);
    font-size: 13px;
    color: var(--dark);
    outline: none;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a857d' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.contact-submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 12px;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    margin-top: 4px;
}

.contact-success {
    display: flex;
    align-items: center;
    gap: 14px;
    background-color: #f0faf4;
    border: 1px solid #27ae60;
    padding: 20px;
    margin-top: 16px;
}

.contact-success i {
    font-size: 24px;
    color: #27ae60;
    flex-shrink: 0;
}

.contact-success p {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.7;
}

/* Floating WhatsApp button — shows on all pages */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 52px;
    height: 52px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    z-index: 999;
    transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

@media (max-width: 768px) {
    .about-story {
        grid-template-columns: 1fr;
    }

    .about-story-image { height: 300px; }

    .about-story-text {
        padding: 40px 24px;
    }

    .about-values {
        padding: 52px 24px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .about-stats {
        flex-wrap: wrap;
        padding: 44px 24px;
        gap: 32px;
    }

    .stat-divider { display: none; }

    .stat-item { flex: 0 0 45%; }

    .contact-layout {
        grid-template-columns: 1fr;
        padding: 36px 20px;
        gap: 40px;
    }

    .contact-form-side { padding: 24px 20px; }
}
/* ============================================
   FINAL POLISH
=============================================== */

/* Page fade-in on load */
body {
    opacity: 0;
    transition: opacity 0.4s ease;
}

body.page-loaded {
    opacity: 1;
}

/* Header shadow on scroll */
.header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

/* Cart count bump animation */
@keyframes bump {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.4); }
    100% { transform: scale(1); }
}

.cart-count.bump {
    animation: bump 0.3s ease;
}

/* Smooth image loading */
img {
    transition: opacity 0.3s ease;
}

img[src=""],
img:not([src]) {
    opacity: 0;
}

/* Product card — cursor pointer everywhere */
.product-card { cursor: pointer; }

/* Better focus styles for accessibility */
input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Selection colour matches brand */
::selection {
    background-color: var(--gold);
    color: white;
}

/* Scrollbar styling */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream-light); }
::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ============================================
   TRACK ORDER PAGE
=============================================== */
.track-order-section {
    max-width: 760px;
    margin: 60px auto;
    padding: 0 40px;
}

.track-search-box {
    text-align: center;
    padding: 48px;
    background: var(--white);
    border: 1px solid var(--border);
    margin-bottom: 40px;
}

.track-search-box h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--dark);
}

.track-search-box p {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 28px;
    font-weight: 300;
    line-height: 1.8;
}

.track-input-row {
    display: flex;
    gap: 0;
    max-width: 480px;
    margin: 0 auto;
}

.track-input-row input {
    flex: 1;
    border: 1.5px solid var(--border);
    border-right: none;
    padding: 13px 18px;
    font-family: var(--font-ui);
    font-size: 14px;
    outline: none;
    letter-spacing: 1px;
    color: var(--dark);
    transition: border-color 0.2s;
}

.track-input-row input:focus {
    border-color: var(--gold);
}

.track-input-row .btn {
    padding: 13px 24px;
    font-size: 11px;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.track-error {
    font-size: 12.5px;
    color: #c0392b;
    margin-top: 12px;
    min-height: 20px;
}

/* Order result card */
.track-order-card {
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
}

.track-order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid var(--border);
    background-color: var(--cream-light);
}

.track-order-header h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 4px;
    color: var(--dark);
}

.track-order-header p {
    font-size: 12.5px;
    color: var(--text-muted);
    font-weight: 300;
}

/* Progress tracker */
.track-progress {
    display: flex;
    align-items: center;
    padding: 40px 32px;
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
}

.track-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
    opacity: 0.35;
    transition: opacity 0.3s;
}

.track-step.completed,
.track-step.active {
    opacity: 1;
}

.track-step-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 10px;
    background: var(--white);
    transition: all 0.3s;
}

.track-step.completed .track-step-icon {
    background: var(--gold);
    border-color: var(--gold);
    color: white;
}

.track-step.active .track-step-icon {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 0 4px rgba(181,146,76,0.15);
}

.track-step-info h4 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--dark);
    margin-bottom: 3px;
}

.track-step-info p {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 90px;
}

/* Connecting lines between steps */
.track-line {
    flex: 1;
    height: 2px;
    background-color: var(--border);
    margin: 0 8px;
    margin-bottom: 32px;
    min-width: 40px;
    transition: background-color 0.3s;
}

.track-line.completed {
    background-color: var(--gold);
}

/* Items in order */
.track-items {
    padding: 28px 32px;
    border-bottom: 1px solid var(--border);
}

.track-items h4 {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.track-item-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.track-item-row:last-child {
    border-bottom: none;
}

.track-item-img {
    width: 56px;
    height: 56px;
    background-color: var(--cream-mid);
    flex-shrink: 0;
    overflow: hidden;
}

.track-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.track-item-info {
    flex: 1;
}

.track-item-info p {
    font-size: 13.5px;
    color: var(--dark);
    margin-bottom: 3px;
}

.track-item-info span {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 300;
}

.track-item-price {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
}

/* Delivery info */
.track-delivery-info {
    padding: 28px 32px;
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.track-info-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.track-info-row i {
    color: var(--gold);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.track-info-row h4 {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.track-info-row p {
    font-size: 13px;
    color: var(--dark);
    font-weight: 300;
    line-height: 1.5;
}

/* Help section */
.track-help {
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: var(--cream-light);
}

.track-help p {
    font-size: 13.5px;
    color: var(--text-muted);
    font-weight: 300;
    flex: 1;
}

.track-help .btn {
    padding: 11px 22px;
    font-size: 11px;
    white-space: nowrap;
}

.track-help .whatsapp-btn {
    padding: 11px 18px;
    font-size: 11px;
}

@media (max-width: 768px) {
    .track-order-section { padding: 0 20px; }
    .track-search-box { padding: 32px 20px; }
    .track-input-row { flex-direction: column; }
    .track-input-row input { border-right: 1.5px solid var(--border); }
    .track-delivery-info { grid-template-columns: 1fr; }
    .track-help { flex-direction: column; text-align: center; }
}
/* ============================================
   MY ACCOUNT PAGE
=============================================== */

/* Active icon in header */
.active-icon {
    color: var(--gold) !important;
}

/* Tab Navigation */
.account-page {
    max-width: 860px;
    margin: 52px auto;
    padding: 0 40px;
}

.account-tabs {
    display: flex;
    border-bottom: 2px solid var(--border);
    margin-bottom: 44px;
    gap: 0;
}

.account-tab {
    background: none;
    border: none;
    padding: 14px 28px;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    cursor: pointer;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}

.account-tab i { font-size: 14px; }

.account-tab:hover { color: var(--dark); }

.account-tab.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* Panel */
.account-panel { display: none; }
.account-panel.active { display: block; }

/* Lookup box */
.account-lookup {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 44px;
    text-align: center;
    margin-bottom: 32px;
}

.account-lookup h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 10px;
}

.account-lookup p {
    font-size: 13.5px;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 28px;
}

.account-input-row {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 0;
}

.account-input-row input {
    flex: 1;
    border: 1.5px solid var(--border);
    border-right: none;
    padding: 13px 18px;
    font-family: var(--font-ui);
    font-size: 13.5px;
    outline: none;
    transition: border-color 0.2s;
    color: var(--dark);
}

.account-input-row input:focus {
    border-color: var(--gold);
}

.account-input-row .btn {
    padding: 13px 24px;
    font-size: 11px;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.account-error {
    font-size: 12.5px;
    color: #c0392b;
    margin-top: 12px;
    min-height: 20px;
}

/* Orders result */
.orders-result-header {
    margin-bottom: 20px;
}

.orders-result-header h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    color: var(--dark);
}

/* Individual order card */
.my-order-card {
    background: var(--white);
    border: 1px solid var(--border);
    margin-bottom: 20px;
    overflow: hidden;
}

.my-order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background-color: var(--cream-light);
    border-bottom: 1px solid var(--border);
    gap: 16px;
    flex-wrap: wrap;
}

.my-order-card-id h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 3px;
}

.my-order-card-id p {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 300;
}

.my-order-card-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.track-btn {
    padding: 9px 18px !important;
    font-size: 10.5px !important;
    display: flex !important;
    align-items: center;
    gap: 6px;
    border: none;
    cursor: pointer;
}

.my-order-items {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
}

.my-order-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.my-order-item:last-child { border-bottom: none; }

.my-order-item-img {
    width: 52px;
    height: 52px;
    background-color: var(--cream-mid);
    flex-shrink: 0;
    overflow: hidden;
}

.my-order-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.my-order-item-info {
    flex: 1;
}

.my-order-item-info p {
    font-size: 13px;
    color: var(--dark);
    margin-bottom: 3px;
}

.my-order-item-info span {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 300;
}

.my-order-item-price {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 500;
}

.my-order-card-footer {
    display: flex;
    justify-content: space-between;
    padding: 14px 24px;
    font-size: 12.5px;
    color: var(--text-muted);
}

.my-order-total {
    font-weight: 600;
    color: var(--dark);
    font-family: var(--font-display);
    font-size: 15px;
}

/* Quick Track Result */
.quick-track-card {
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
}

.quick-track-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 28px;
    background: var(--cream-light);
    border-bottom: 1px solid var(--border);
}

.quick-track-header h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 3px;
}

.quick-track-header p {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 300;
}

.quick-track-progress {
    display: flex;
    align-items: center;
    padding: 36px 28px;
}

.qt-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.35;
    flex-shrink: 0;
    transition: opacity 0.3s;
}

.qt-step.completed,
.qt-step.active { opacity: 1; }

.qt-step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-muted);
    background: var(--white);
    transition: all 0.3s;
}

.qt-step.completed .qt-step-icon {
    background: var(--gold);
    border-color: var(--gold);
    color: white;
}

.qt-step.active .qt-step-icon {
    border-color: var(--gold);
    color: var(--gold);
}

.qt-step p {
    font-size: 11px;
    color: var(--dark);
    font-weight: 500;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.qt-line {
    flex: 1;
    height: 2px;
    background: var(--border);
    margin: 0 6px;
    margin-bottom: 22px;
    min-width: 32px;
    transition: background-color 0.3s;
}

.qt-line.completed { background: var(--gold); }

.quick-track-footer {
    padding: 18px 28px;
    border-top: 1px solid var(--border);
    text-align: center;
}

/* Feedback Form */
.feedback-intro {
    text-align: center;
    margin-bottom: 36px;
}

.feedback-intro h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 10px;
}

.feedback-intro p {
    font-size: 13.5px;
    color: var(--text-muted);
    font-weight: 300;
}

.feedback-form {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 40px;
}

/* Star Rating */
.star-rating {
    display: flex;
    gap: 6px;
    margin-bottom: 6px;
}

.star-rating i {
    font-size: 28px;
    color: var(--gold);
    cursor: pointer;
    transition: transform 0.15s;
}

.star-rating i:hover {
    transform: scale(1.2);
}

.rating-label {
    font-size: 12.5px;
    color: var(--text-muted);
    font-weight: 300;
    margin-top: 4px;
}

/* Recommend options */
.recommend-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.recommend-option {
    cursor: pointer;
}

.recommend-option input[type="radio"] {
    display: none;
}

.recommend-option span {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid var(--border);
    padding: 10px 18px;
    font-size: 13px;
    transition: all 0.2s;
    font-family: var(--font-ui);
}

.recommend-option input:checked + span {
    border-color: var(--gold);
    background-color: #fdf8f0;
    color: var(--gold);
}

.recommend-option span i { font-size: 14px; }

.feedback-submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 12px;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    margin-top: 8px;
}

.feedback-success {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fdf8f0;
    border: 1px solid var(--gold);
    padding: 20px 24px;
    margin-top: 16px;
}

.feedback-success i {
    font-size: 28px;
    color: var(--gold);
    flex-shrink: 0;
}

.feedback-success h4 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--dark);
}

.feedback-success p {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 300;
}

@media (max-width: 768px) {
    .account-page { padding: 0 20px; }
    .account-tabs { overflow-x: auto; }
    .account-tab { padding: 12px 18px; font-size: 11px; }
    .account-lookup { padding: 28px 20px; }
    .account-input-row { flex-direction: column; }
    .account-input-row input {
        border-right: 1.5px solid var(--border);
    }
    .my-order-card-header { flex-direction: column; align-items: flex-start; }
    .feedback-form { padding: 24px 20px; }
    .recommend-options { flex-direction: column; }
}

/* ============================================
   PRODUCT PAGE — BUY NOW & ADD TO CART buttons
=============================================== */
.pd-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 4px;
}

.pd-btn-buynow {
    flex: 1;
    padding: 15px 20px;
    background-color: var(--dark);
    color: var(--white);
    border: none;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background-color 0.25s;
}

.pd-btn-buynow:hover {
    background-color: var(--gold);
}

.pd-btn-addcart {
    flex: 1;
    padding: 15px 20px;
    background-color: transparent;
    color: var(--dark);
    border: 1.5px solid var(--dark);
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.25s;
}

.pd-btn-addcart:hover {
    background-color: var(--dark);
    color: var(--white);
}

/* Star rating */
.pd-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
}

.pd-rating i {
    color: var(--gold);
    font-size: 13px;
}

.pd-rating span {
    font-size: 12.5px;
    color: var(--text-muted);
    margin-left: 6px;
    font-weight: 300;
}

/* Share row */
.pd-share {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pd-share span {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.pd-share a {
    width: 34px;
    height: 34px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--text-muted);
    transition: all 0.2s;
}

.pd-share a:hover {
    border-color: var(--gold);
    color: var(--gold);
}
/* ============================================
   POLICY PAGES
=============================================== */
.policy-page {
    max-width: 860px;
    margin: 60px auto;
    padding: 0 40px;
}

.policy-container {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 52px 60px;
}

.policy-intro {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 44px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
    font-style: italic;
}

.policy-section {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
}

.policy-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.policy-section-icon {
    width: 44px;
    height: 44px;
    background-color: var(--cream-mid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 4px;
}

.policy-section-content h2 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.policy-section-content p {
    font-size: 13.5px;
    color: var(--text-body);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 10px;
}

.policy-section-content ul {
    list-style: none;
    padding: 0;
    margin-top: 8px;
}

.policy-section-content ul li {
    font-size: 13.5px;
    color: var(--text-body);
    font-weight: 300;
    padding: 6px 0;
    padding-left: 18px;
    position: relative;
    line-height: 1.7;
}

.policy-section-content ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 8px;
    top: 10px;
}

/* Policy link button */
.policy-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--gold);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
    transition: opacity 0.2s;
}

.policy-link-btn:hover { opacity: 0.7; }

/* Contact box on return policy */
.policy-contact-box {
    background-color: var(--cream-light);
    border: 1px solid var(--border);
    padding: 32px;
    text-align: center;
    margin-top: 32px;
}

.policy-contact-box h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 10px;
}

.policy-contact-box p {
    font-size: 13.5px;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 22px;
}

.policy-contact-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .policy-page { padding: 0 20px; }
    .policy-container { padding: 32px 20px; }
    .policy-section { flex-direction: column; gap: 16px; }
}

/* ============================================
   BEST SELLERS SLIDER
=============================================== */
.best-sellers {
    padding: 72px 0;
    background-color: var(--cream-light);
}

.best-sellers .section-header {
    text-align: center;
    margin-bottom: 44px;
    padding: 0 60px;
}

.bs-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 60px;
    overflow: hidden;
}

.bs-track {
    display: flex;
    flex-direction: row;
    gap: 24px;
    overflow: visible;
    width: 100%;
    transition: transform 0.4s ease;
}

.bs-track .product-card {
    flex: 0 0 calc(25% - 18px);
    min-width: calc(25% - 18px);
}

.bs-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 10;
    background: var(--white);
    border: 1px solid var(--border);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    color: var(--dark);
    transition: all 0.25s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    flex-shrink: 0;
}

.bs-arrow:hover {
    background: var(--dark);
    color: var(--white);
}

.bs-arrow-left  { left: 10px; }
.bs-arrow-right { right: 10px; }

.bs-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.bs-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--border);
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-block;
}

.bs-dot.active {
    background-color: var(--gold);
}

@media (max-width: 1024px) {
    .bs-track .product-card {
        flex: 0 0 calc(33.333% - 16px);
        min-width: calc(33.333% - 16px);
    }
}

@media (max-width: 768px) {
    .bs-slider-wrapper { padding: 0 36px; }
    .bs-track .product-card {
        flex: 0 0 calc(50% - 12px);
        min-width: calc(50% - 12px);
    }
}
/* ============================================
   WISHLIST PAGE
=============================================== */
.wishlist-page {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 60px;
}

.wishlist-empty {
    text-align: center;
    padding: 80px 20px;
}

.wishlist-empty i {
    font-size: 52px;
    color: var(--border);
    display: block;
    margin-bottom: 20px;
}

.wishlist-empty h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--dark);
}

.wishlist-empty p {
    font-size: 13.5px;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 28px;
}

@media (max-width: 768px) {
    .wishlist-page { padding: 0 20px; }
}

.hero-divider-line {
    display: flex;
    justify-content: center;
    padding: 32px 0;
    background-color: var(--cream-light);
}