:root {
    --brand: var(--theme-brand, #8B2252);
    --brand-dark: var(--theme-brand-dark, #6a0d3b);
    --bg: var(--theme-bg, #fff);
    --text: var(--theme-text, #1a1a1a);
    --border: var(--theme-border, #e3d0d4);
    --radius: 10px;
    --gold: var(--theme-gold, #c8922a);
    --border-light: var(--theme-border-light, #f1e5e7);
    --border-lighter: var(--theme-border-lighter, #f5e6e8);
    --bg-pink-light: var(--theme-bg-pink-light, #fff0f3);
    --bg-pink-lighter: var(--theme-bg-pink-lighter, #fdf2f8);
    --bg-pink-lightest: var(--theme-bg-pink-lightest, #fff5f7);
    --danger-light: var(--theme-danger-light, #ffe0e6);
    --success-light: var(--theme-success-light, #e8f5e9);
}

@keyframes caretBlink {
    0%, 100% { caret-color: #8B2252; }
    50% { caret-color: #d88ba1; }
}

/* Base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}
a { text-decoration: none; color: inherit; }

/* Layout */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--theme-header-bg, #fdeebb);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.main,
.footer {
    position: relative;
    z-index: 1;
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 20px;
    color: var(--brand);
}
.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}
.logo-icon { font-size: 32px; }
.header-search {
    display: flex;
    align-items: center;
    gap: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
    margin-left: 0;
    margin-right: 0;
}
.header-search:focus-within {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--theme-focus-ring, rgba(139,34,82,0.08));
}
.header-search input {
    border: none;
    padding: 10px 14px;
    font-size: 12px;
    width: 240px;
    outline: none;
    background: transparent;
    color: #222;
    animation: caretBlink 1.2s ease-in-out infinite;
}
.header-search button {
    background: var(--brand);
    color: #fff;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-search button:hover {
    background: var(--brand-dark);
}
@media (max-width: 900px) {
    .header-search { display: none; }
    .mobile-search-btn { display: none !important; }
    .mobile-actions .wishlist-link { display: none !important; }
}
.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1.15;
}
.logo-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}
.logo-tagline {
    font-size: 11px;
    color: #888;
    font-weight: 400;
    letter-spacing: 0.2px;
}
.nav {
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-link {
    padding: 6px 10px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    color: #333;
    transition: 0.2s;
}
.nav-link-sm {
    font-size: 12px;
    padding: 4px 8px;
    gap: 4px;
}
.nav-link:hover, .nav-link.active {
    background: var(--bg-pink-light);
    color: var(--brand);
}
.btn-login {
    border: 1px solid var(--brand);
    color: var(--brand);
    font-weight: 600;
    font-size: 13px;
    padding: 5px 12px;
}
.btn-login:hover {
    background: var(--brand);
    color: #fff;
}

.country-switcher select {
    padding: 5px 10px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 13px;
    background: #fff;
    cursor: pointer;
    max-width: 140px;
}
.country-switcher select:focus {
    outline: none;
    border-color: var(--brand);
}
.cart-link { position: relative; }
.cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--brand);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-amount {
    display: inline-block;
    background: var(--bg-pink-lighter);
    color: var(--brand);
    font-weight: 700;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 20px;
    margin-left: 6px;
    white-space: nowrap;
    border: 1px solid var(--border-lighter);
}
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #333;
}

/* Footer */
.footer {
    background: #111;
    color: #bbb;
    padding: 52px 0 0;
    margin-top: 50px;
    font-size: 14px;
}
.footer-main {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 28px 22px;
    padding-bottom: 36px;
}
.footer-brand-block {
    padding-right: 10px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.footer-brand .logo-icon {
    font-size: 32px;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.footer-brand .logo-img {
    height: 50px;
    width: auto;
    display: block;
}
.footer-brand .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.footer-brand .logo-name {
    font-weight: 700;
    font-size: 18px;
    color: #fff;
}
.footer-brand .logo-tagline {
    font-size: 13px;
    color: #bbb;
    margin-top: 2px;
}
.footer-description {
    margin-top: 10px;
    color: #999;
    font-size: 14px;
    line-height: 1.7;
    max-width: 260px;
}
.footer-address,
.footer-contact {
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #bbb;
    line-height: 1.5;
}
.footer-address i,
.footer-contact i {
    color: #e8a0b4;
    width: 14px;
    text-align: center;
    font-size: 14px;
}
.footer-contact a {
    color: #bbb;
    text-decoration: none;
}
.footer-contact a:hover {
    color: #fff;
}
.footer-title {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(139,34,82,0.5);
}
.footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-list li {
    margin: 0;
}
.footer-list a {
    color: #bbb;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    transition: color 0.2s, transform 0.2s;
    font-size: 14px;
}
.footer-list a i {
    font-size: 11px;
    color: var(--brand);
}
.footer-list a:hover {
    color: #fff;
    transform: translateX(3px);
}
.footer-newsletter-block {
    min-width: 0;
}
.footer-note {
    color: #999;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
}
.footer-newsletter-form {
    display: flex;
    gap: 0;
    margin-bottom: 18px;
}
.footer-newsletter-form input {
    flex: 1 1 auto;
    padding: 10px 12px;
    border-radius: 6px 0 0 6px;
    border: 1px solid #333;
    background: #1a1a1a;
    color: #fff;
    font-size: 14px;
    outline: none;
}
.footer-newsletter-form input:focus {
    border-color: var(--brand);
}
.footer-newsletter-form .btn {
    border-radius: 0 6px 6px 0;
    padding: 10px 14px;
    white-space: nowrap;
}
.footer-social-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: #bbb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: 0.2s;
}
.social-btn:hover {
    background: var(--brand);
    color: #fff;
}
.footer-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-strip a {
    color: #aaa;
    font-size: 13px;
    text-decoration: none;
}
.footer-strip a:hover {
    color: #fff;
}
.footer-bottom-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 14px 0;
    font-size: 13px;
    color: #888;
}
.footer-credit {
    font-size: 13px;
    color: #888;
}
.footer-credit a {
    color: #bbb;
    text-decoration: none;
}
.footer-credit a:hover {
    color: #fff;
}
.footer-credit .fa-heart {
    color: #e91e63;
}

/* Footer Payment Icons */
.footer-payment-icons {
    text-align: center;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.payment-title {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #999;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.payment-icons-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.payment-icon-img {
    height: 30px;
    width: auto;
    max-width: 50px;
    object-fit: contain;
    border-radius: 4px;
    background: rgba(255,255,255,0.9);
    padding: 3px 6px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.payment-icon-img:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
@media (max-width: 768px) {
    .footer-payment-icons {
        padding: 12px 0;
    }
    .payment-icons-row {
        gap: 6px;
    }
    .payment-icon-img {
        height: 24px;
        max-width: 40px;
        padding: 2px 4px;
    }
}

@media (max-width: 980px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand-block {
        grid-column: 1 / -1;
    }
}
@media (max-width: 640px) {
    .footer-main {
        grid-template-columns: 1fr;
    }
    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 36px;
}

/* Intro & Layout */
.hero {
    background: linear-gradient(135deg, var(--theme-hero-g1, var(--brand-dark)) 0%, var(--theme-hero-g2, #d88ba1) 40%, var(--theme-hero-g3, #f7d4df) 65%, var(--theme-hero-g4, #8c2548) 100%);
    color: #fff;
    padding: 90px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0; right: 0;
    height: 40px;
    background: var(--bg);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.hero-content { position: relative; z-index: 2; }
.hero-content h1 {
    font-size: 46px;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.hero-content p {
    font-size: 18px;
    max-width: 620px;
    margin: 0 auto 28px;
    opacity: 0.92;
}
.hero {
    display: flex;
    align-items: center;
}

main.main {
    background: var(--bg);
    min-height: calc(100vh - 680px);
    padding-bottom: 28px;
}

/* Accessibility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Sections */
.section { padding: 40px 0; }
.shop-page.section { padding-top: 0; }
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.section-header h2 { font-size: 22px; color: #1f1f1f; }
.link-arrow { color: var(--brand); font-weight: 600; font-size: 14px; }
.link-arrow:hover { color: var(--brand-dark); }

.banner-section { padding: 36px 0; }
.banner-box {
    background: #1a1a1a;
    color: #fff;
    padding: 50px 40px;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
}
.banner-box::before {
    content: "\f7a4";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 40px;
    bottom: 20px;
    font-size: 120px;
    opacity: 0.08;
    color: #fff;
}
.banner-text h2 { font-size: 28px; margin-bottom: 10px; }
.banner-text p { opacity: 0.85; margin-bottom: 16px; }

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
}
.related-products { margin-top: 36px; }
.related-products h3 { margin-bottom: 16px; font-size: 20px; }
.related-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}
.related-products-track {
    display: flex;
    gap: 5px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    flex: 1;
    padding: 10px 24px 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.related-products-track::-webkit-scrollbar {
    display: none;
}
.related-products-track .product-card {
    flex: 0 0 auto;
    width: 260px;
    scroll-snap-align: start;
}
.related-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #e3d0d4;
    background: #fff;
    color: #8B2252;
    box-shadow: 0 2px 14px rgba(0,0,0,0.06);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background .2s, color .2s, box-shadow .2s, transform .2s;
}
.related-arrow:hover {
    background: #8B2252;
    color: #fff;
    border-color: #6a0d3b;
    box-shadow: 0 6px 20px rgba(139,34,82,0.18);
    transform: translateY(-1px);
}
.related-arrow:active {
    transform: translateY(0);
}
.shop-page .container {
    max-width: 100% !important;
    padding: 0 40px;
}
.shop-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 24px;
    position: relative;
    align-items: start;
}
.sidebar-filters {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 2px solid var(--border);
    padding: 18px;
    position: sticky;
    top: 84px;
    width: 100%;
    height: auto;
    margin-top: 10px;
    z-index: 10;
}
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 999;
}
.sidebar-overlay.active {
    display: block;
}
.filter-toggle-btn {
    display: none;
    inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: #fff;
    color: #333;
    font-size: 13px;
    cursor: pointer;
    font-weight: 500;
}
.filter-toggle-btn:hover {
    background: var(--bg-pink-light);
}
.new-arrivals-page .container {
    max-width: 100% !important;
    padding: 0 40px;
}
.new-arrivals-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.new-arrivals-layout .product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
}
@media (max-width: 1200px) {
    .new-arrivals-layout .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .new-arrivals-layout .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
}
@media (max-width: 480px) {
    .new-arrivals-layout .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .new-arrivals-page .container {
        padding: 0 24px;
    }
}
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .shop-page .container {
        padding: 0 20px;
    }
}
.product-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: 0 2px 14px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: 0.2s;
    border: 1px solid var(--border-light);
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px var(--theme-shadow-brand, rgba(139,34,82,0.18));
}
.product-card-img {
    background: var(--bg-pink-lightest);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d9b0be;
    font-size: 60px;
    overflow: hidden;
}
.product-card-body { padding: 1px 12px 12px; }
.product-card-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
    color: #222;
}
.product-card-desc {
    color: #777;
    line-height: 1.5;
    font-size: 12px;
    margin: 0 0 4px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-card-price {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 6px;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 4px;
}
.product-card-price .current-price {
    font-size: 15px;
}
.product-card-price .price-row {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.old-price {
    font-size: 12px;
    color: #999;
    font-weight: 400;
    text-decoration: line-through;
}
.save-badge {
    background: var(--theme-save-badge, #b45309);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 3px;
    letter-spacing: 0.2px;
    white-space: nowrap;
}
.product-card-actions {
    display: flex;
    gap: 8px;
    margin-top: 6px;
}

/* Product Detail */
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.gallery-main {
    min-height: 420px;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    background: var(--bg-pink-lightest);
    cursor: zoom-in;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
#mainProductImage { width: 100%; height: 420px; object-fit: contain; display: block; transition: transform 0.35s ease; transform-origin: center center; }
.gallery-main.zoomed { cursor: zoom-out; }
.gallery-main.zoomed #mainProductImage { transform: scale(2.2); }
.gallery-thumbnails { display: flex; gap: 10px; margin-top: 15px; flex-wrap: wrap; }
.thumbnail-img { width: 80px; height: 80px; object-fit: cover; border: 2px solid #ddd; border-radius: 4px; cursor: pointer; transition: 0.2s; }
.thumbnail-img:hover, .thumbnail-img.active { border-color: var(--brand); }
.gallery-image {
    height: 420px;
    background: var(--bg-pink-lightest);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 90px;
    color: #d9b0be;
    border: 1px dashed #f3d6dd;
}
.product-info h1 { font-size: 26px; margin-bottom: 16px; }
.product-price-block { margin-bottom: 14px; }
.current-price { font-size: 22px; font-weight: 800; color: var(--brand); }
.old-price { color: #999; text-decoration: line-through; margin-left: 10px; font-size: 13px; }
.discount-badge {
    background: var(--gold);
    color: white;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-left: 8px;
}
.product-description { color: #555; line-height: 1.7; margin-bottom: 16px; }
.product-video { margin-top: 18px; }
.product-video iframe { width: 100%; aspect-ratio: 16 / 9; border-radius: var(--radius); border: 1px solid var(--border-light); background: #000; }
.video-thumb {
    position: relative;
    cursor: pointer;
}
.video-thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.28);
    border-radius: 4px;
    z-index: 1;
}
.video-thumb::after {
    content: '\f04b';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    padding-left: 3px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.35);
    z-index: 2;
    transition: transform 0.2s;
}
.video-thumb:hover::after {
    transform: translate(-50%, -50%) scale(1.08);
}
.video-thumb-wrap {
    display: inline-block;
    position: relative;
}
.video-thumb-label {
    display: block;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: #555;
    margin-top: 4px;
    letter-spacing: 0.3px;
}
.video-thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.28);
    border-radius: 4px;
    z-index: 1;
}
.video-thumb::after {
    content: '\f04b';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    padding-left: 3px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.35);
    z-index: 2;
    transition: transform 0.2s;
}
.video-thumb:hover::after {
    transform: translate(-50%, -50%) scale(1.08);
}
.video-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0,0,0,0.88);
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-popup {
    position: relative;
    width: min(400px, 88vw);
    aspect-ratio: 9 / 16;
    max-height: 82vh;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    background: #000;
}
.video-popup iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.video-popup-close {
    position: absolute;
    top: -38px;
    right: 0;
    color: #fff;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    opacity: 0.85;
    transition: opacity 0.2s;
}
.video-popup-close:hover {
    opacity: 1;
}
.product-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #555;
}
.product-meta-row span { background: var(--bg-pink-lightest); padding: 6px 12px; border-radius: 20px; }
.row {
    display: flex; gap: 12px;
    margin-bottom: 16px;
}
.qty-control label { font-weight: 600; font-size: 14px; margin-right: 8px; }
.qty-control input {
    width: 80px;
    padding: 10px 12px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-weight: 600;
}
.actions { display: flex; gap: 10px; align-items: center; }

.social-share-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
}
.social-share-top {
    margin: 12px 0 16px;
    padding: 10px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}
.share-label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-right: 2px;
}
.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    transition: filter 0.2s, transform 0.2s;
    font-size: 14px;
}
.share-btn:hover { filter: brightness(1.1); transform: translateY(-1px); }
.share-fb { background: #1877f2; }
.share-tw { background: #000; }
.share-pin { background: #e60023; }
.share-wa { background: #25d366; }
.share-copy { background: #666; }

/* Vertical Social Share Bar */
.social-share-vertical {
    position: fixed;
    right: 0;
    top: 35%;
    transform: translateY(-50%);
    margin-top: -30px;
    display: flex;
    flex-direction: column;
    gap: 0;
    z-index: 998;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    border-radius: 12px 0 0 12px;
    overflow: hidden;
}
.share-btn-vertical {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 0;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}
.share-btn-vertical:hover {
    width: 52px;
    filter: brightness(1.15);
}
.share-btn-vertical.share-fb { background: #1877f2; }
.share-btn-vertical.share-tw { background: #000; }
.share-btn-vertical.share-pin { background: #e60023; }
.share-btn-vertical.share-wa { background: #25d366; }
.share-btn-vertical.share-copy { background: #555; }

/* Mobile Social Share Bar */
.social-share-mobile {
    display: none;
    position: fixed;
    bottom: 52px;
    left: 0;
    right: 0;
    z-index: 1051;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 10px 15px;
    justify-content: center;
    gap: 12px;
}
.share-btn-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    transition: transform 0.2s;
}
.share-btn-mobile:hover {
    transform: scale(1.1);
}
.share-btn-mobile.share-fb { background: #1877f2; }
.share-btn-mobile.share-tw { background: #000; }
.share-btn-mobile.share-pin { background: #e60023; }
.share-btn-mobile.share-wa { background: #25d366; }
.share-btn-mobile.share-copy { background: #555; }

@media (max-width: 768px) {
    .social-share-mobile {
        display: flex;
    }
    .social-share-vertical {
        display: none;
    }
}

/* Inline Mobile Share Bar */
.social-share-inline-mobile {
    display: none;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}
.share-label-sm {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    margin-right: 4px;
}
.share-btn-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 13px;
    text-decoration: none;
    transition: transform 0.2s, filter 0.2s;
}
.share-btn-sm:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}
.share-btn-sm.share-fb { background: #1877f2; }
.share-btn-sm.share-tw { background: #000; }
.share-btn-sm.share-pin { background: #e60023; }
.share-btn-sm.share-wa { background: #25d366; }
.share-btn-sm.share-copy { background: #666; }

@media (max-width: 768px) {
    .social-share-inline-mobile {
        display: flex;
    }
    .social-share-mobile {
        display: none !important;
    }
}

/* Cart + Checkout */
.cart-layout { display: grid; grid-template-columns: 280px 1fr; gap: 24px; align-items: start; }
.sidebar-filters {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 2px solid var(--border);
    padding: 18px;
    position: sticky;
    top: 84px;
}
.sidebar-filters h3 {
    font-size: 15px;
    color: #333;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-lighter);
}
.category-list { display: flex; flex-direction: column; gap: 0; }
.cat-link {
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 500;
    color: #333;
    margin: 0;
    display: block;
}
.cat-link:hover, .cat-link.active {
    background: var(--bg-pink-light);
    color: var(--brand);
}

/* Category Tabs */
.category-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    padding: 4px 2px 10px;
    margin: 0 0 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.category-tabs::-webkit-scrollbar { display: none; }
.category-tab {
    flex-shrink: 0;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    background: #fff;
    border: 1px solid var(--border);
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
}
.category-tab:hover {
    background: var(--bg-pink-light);
    color: var(--brand);
    border-color: var(--brand);
}
.category-tab.active {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}
.cart-main { min-width: 0; }
.cart-items { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--border-light); overflow: hidden; margin-bottom: 20px; }
.cart-item { display: flex; gap: 12px; align-items: center; }
.cart-item-img {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    flex-shrink: 0;
    overflow: hidden;
    border: 1px solid var(--border-light);
    background: var(--bg-pink-lightest);
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    display: block;
}
.cart-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d9b0be;
    font-size: 22px;
}
.cart-summary { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--border-light); padding: 22px; }
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; color: #555; }
.summary-row.total { border-top: 2px solid var(--border-lighter); margin-top: 6px; padding-top: 12px; font-weight: 700; font-size: 16px; color: #1a1a1a; }
.qty-form input { width: 56px; padding: 6px 8px; border: 1px solid var(--border); border-radius: 6px; text-align: center; font-size: 14px; }
.qty-input { width: 66px; padding: 7px 8px; border: 1px solid var(--border); border-radius: 6px; text-align: center; font-size: 14px; }
.qty-input:focus { outline: none; border-color: var(--brand-dark);     box-shadow: 0 0 0 3px var(--theme-focus-ring, rgba(139,34,82,0.10)); }
.cart-actions-bar { display: flex; align-items: center; justify-content: flex-end; gap: 14px; padding: 14px 16px; background: #fff9fb; border-top: 1px solid var(--border-light); }
.cart-actions-msg { font-size: 14px; color: #555; }
.btn-sm { display: inline-flex; align-items: center; gap: 5px; padding: 5px 10px; background: var(--brand); color: #fff; border: none; border-radius: 6px; font-weight: 600; font-size: 11px; cursor: pointer; transition: all 0.2s ease; white-space: nowrap; line-height: 1.4; box-sizing: border-box; min-width: 0; max-width: 100%; }
.btn-sm.btn-action { font-size: 11px; font-weight: 600; background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%); border: none; letter-spacing: 0.2px; box-sizing: border-box; }
.btn-sm.btn-action::after { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; border-radius: 50%; background: rgba(255,255,255,0.18); transform: translate(-50%, -50%); transition: width 0.45s ease, height 0.45s ease; pointer-events: none; z-index: 0; }
.btn-sm.btn-action > * { position: relative; z-index: 1; }
.btn-sm.btn-action:hover::after { width: 320px; height: 320px; }
.btn-sm.btn-action:hover {     box-shadow: 0 6px 20px var(--theme-shadow-brand, rgba(139,34,82,0.38)); transform: translateY(-1px); }
.btn-sm.btn-view { backdrop-filter: blur(4px); box-sizing: border-box; }
.btn-sm.btn-view:hover { background: var(--brand); color: #fff; border-color: var(--brand-dark);     box-shadow: 0 6px 20px var(--theme-shadow-brand, rgba(139,34,82,0.32)); transform: translateY(-1px); }
.btn-danger { background: #dc2626; }
.btn-danger:hover { background: #b91c1c; }
.text-muted { color: #888; font-size: 13px; }

.cart-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.cart-table thead th {
    background: var(--bg-pink-lighter);
    color: #777;
    font-weight: 700;
    font-size: 14px;
    text-transform: capitalize;
    letter-spacing: 0.2px;
    padding: 14px 16px;
    border-bottom: 2px solid var(--border-light);
    text-align: left;
}
.cart-table tbody td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--border-light);
    vertical-align: middle;
    color: #333;
    font-size: 13px;
}
@media (max-width: 768px) {
    .cart-items { overflow: visible; }
    .cart-table { min-width: auto; width: 100%; font-size: 13px; border-spacing: 0; }
    .cart-table thead th { font-size: 12px; padding: 10px 8px; white-space: nowrap; }
    .cart-table tbody td { padding: 8px; font-size: 12px; }
    .cart-item-img { width: 56px; height: 56px; }
    .cart-item-name { font-size: 12px; line-height: 1.3; }
    .qty-input { width: 40px; padding: 4px; font-size: 12px; }
    .qty-field { gap: 4px; }
    .qty-refresh-btn { padding: 4px; font-size: 11px; }
    td.col-product, .cart-table tbody td:first-child { width: 30%; }
    .col-model { width: auto; }
    .col-price { width: auto; }
    .col-qty { width: auto; white-space: nowrap; }
    .col-subtotal { width: auto; }
    .col-action { width: 32px; text-align: center; }
}
@media (max-width: 640px) {
    .cart-items { overflow: visible; }
    .cart-table { min-width: auto; width: 100%; border-spacing: 0; }
    .cart-table thead {
        display: table-header-group;
    }
    .cart-table thead th {
        font-size: 10px;
        padding: 8px 6px;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        white-space: nowrap;
        background: var(--bg-pink-lighter);
        color: #777;
        font-weight: 700;
        text-align: center;
        border-bottom: 2px solid var(--border-light);
    }
    .cart-table thead th.col-product { text-align: left; padding-left: 8px; }
    .cart-table tbody td {
        padding: 8px 6px;
        font-size: 12px;
        text-align: center;
        vertical-align: middle;
        border-bottom: 1px solid var(--border-light);
    }
    .cart-table tbody td:first-child { text-align: left; }
    .cart-item { flex-direction: row; gap: 8px; align-items: center; }
    .cart-item-img { width: 44px; height: 44px; border-radius: 6px; flex-shrink: 0; }
    .cart-thumb-placeholder { font-size: 14px; }
    .cart-item-details { display: none; }
    .qty-input { width: 40px; padding: 4px; font-size: 12px; }
    .qty-field { gap: 4px; justify-content: center; }
    .qty-refresh-btn { padding: 4px; font-size: 11px; }
    td.col-product, .cart-table tbody td:first-child { width: 38%; }
    .col-model,
    .cart-table tbody td.cell-model { display: none; }
    .col-price { width: auto; }
    .col-qty { width: auto; white-space: nowrap; }
    .col-subtotal { width: auto; }
    .col-action { width: 28px; }
    .cell-price, .cell-subtotal { font-size: 12px; font-weight: 400; }
    .cell-price strong, .cell-subtotal strong { font-weight: 400; }
    .cart-table .cart-item-name { font-size: 12px; font-weight: 400; }
    /* Kit rows mobile */
    .cart-table tr.cart-kit-row .cart-item-img { width: 44px; height: 44px; border-radius: 6px; }
    .cart-table tr.cart-kit-row .cart-item-details { display: none; }
    .cart-table tbody td:first-child {
        position: relative;
    }
    .cart-table tbody td:first-child .cart-item {
        position: relative;
        padding-bottom: 12px;
    }
    .cart-table tbody td:first-child .cart-item::after {
        content: attr(data-model);
        position: absolute;
        bottom: 0;
        font-size: 9px;
        color: #999;
        letter-spacing: 0.2px;
    }
}
.cart-table tbody tr:last-child td {
    border-bottom: none;
}
.cart-table tbody tr:hover td {
    background: var(--bg-pink-lightest);
}
.col-product { width: 42%; }
.col-price { width: 14%; }
.col-qty { width: 20%; }
.col-subtotal { width: 16%; }
.col-action { width: 8%; text-align: center; }
.cart-item-details { display: flex; flex-direction: column; gap: 4px; }
.cart-item-name { font-size: 15px; color: #222; font-weight: 600; }
.cart-item-meta { font-size: 12px; color: #aaa; margin: 0; }
.cell-price { font-weight: 600; color: #333; }
.cell-subtotal { font-weight: 700; color: var(--brand); }
.cell-action { text-align: center; }
.qty-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.qty-field {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.qty-refresh-btn {
    border: none;
    background: transparent;
    color: var(--brand);
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    line-height: 1;
}
.qty-refresh-btn:hover {
    background: var(--bg-pink-lighter);
    transform: translateY(-1px);
}
.qty-refresh-btn:active {
    transform: translateY(0);
}
.qty-form input {
    width: 64px;
    padding: 8px 10px;
    border: 1.5px solid var(--border-light);
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    background: #fff;
    transition: border-color 0.2s;
}
.qty-form input:focus {
    border-color: var(--brand);
    outline: none;
    box-shadow: 0 0 0 3px var(--theme-focus-ring, rgba(139,34,82,0.08));
}
.btn-remove {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: transparent;
    color: #c49aa0;
    border: 1.5px solid var(--border-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    font-size: 14px;
}
.btn-remove:hover {
    background: var(--theme-danger, #dc2626);
    color: #fff;
    border-color: #dc2626;
}

@media (max-width: 900px) {
    .cart-layout { grid-template-columns: 1fr; }
    .sidebar-filters { position: static; max-height: none; }
}
.summary-row {
    display: flex; justify-content: space-between; padding: 10px 0;
    border-bottom: 1px solid var(--border-lighter);
    font-size: 14px; color: #555;
}
.summary-row.total, .summary-row.total-row {
    border-bottom: none;
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-top: 8px;
}
.checkout-layout { display: grid; grid-template-columns: 240px 1fr; gap: 22px; align-items: start; }
.checkout-form h3 { margin-bottom: 14px; margin-top: 10px; color: #222; }
.radio-label { font-size: 14px; font-weight: 500; color: #333; cursor: pointer; }
.payment-option { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: center; }
.payment-radio { display: flex; align-items: center; justify-content: flex-end; }
.payment-radio input[type="radio"] { margin: 0; width: 18px; height: 18px; cursor: pointer; }
.payment-info { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #333; }
.checkout-actions { margin-top: 18px; }
.checkout-actions .btn { max-width: 360px; margin: 0 auto; justify-content: center; display: flex; }
.success-layout { display: grid; grid-template-columns: 240px 1fr; gap: 22px; align-items: start; }
.success-main { display: flex; justify-content: center; }
.success-card { text-align: center; padding: 48px 24px; }
.success-card i { font-size: 80px;     color: var(--theme-success, #27ae60); margin-bottom: 20px; }
.success-card h2 { font-size: 26px; margin-bottom: 16px; color: #222; }
.success-card p { font-size: 18px; color: #555; }
.success-card p:last-of-type { font-size: 14px; color: #888; margin-bottom: 18px; }
.success-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.address-section { margin-bottom: 20px; }
.address-header { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 14px; }
.address-header h3 { margin: 0; font-size: 18px; color: #222; }
.address-list { display: grid; gap: 10px; }
.address-card-select {
    display: flex;
    gap: 14px;
    padding: 14px 16px;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}
.address-card-select:hover { border-color: var(--brand); background: var(--bg-pink-light); }
.address-card-select.selected { border-color: var(--brand); background: var(--bg-pink-lightest); box-shadow: 0 0 0 3px var(--theme-focus-ring, rgba(139,34,82,0.08)); }
.address-card-radio { flex-shrink: 0; display: flex; align-items: center; }
.radio-circle { width: 18px; height: 18px; border-radius: 50%; border: 2px solid #ccc; position: relative; }
.radio-circle.checked { border-color: var(--brand); }
.radio-circle.checked::after { content: ''; position: absolute; inset: 3px; background: var(--brand); border-radius: 50%; }
.address-card-content p { margin: 4px 0; font-size: 14px; color: #555; }
.address-card-content strong { color: #222; font-size: 15px; }

/* Auth Pages */
.auth-page { padding-top: 50px; padding-bottom: 50px; background: var(--bg-pink-light); min-height: 60vh; }
.auth-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}
.auth-card {
    background: #fff;
    padding: 36px 32px;
    border-radius: var(--radius);
    box-shadow: 0 2px 14px rgba(0,0,0,0.06);
    border: 1px solid var(--border-light);
}
.auth-card h2 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--brand);
}
.auth-guest {
    background: #fff;
    padding: 36px 32px;
    border-radius: var(--radius);
    box-shadow: 0 2px 14px rgba(0,0,0,0.06);
    border: 1px solid var(--border-light);
    text-align: center;
}
.auth-guest h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}
.auth-guest p {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 16px;
    text-align: left;
}
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}
.form-group input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    outline: none;
    transition: 0.2s;
}
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    outline: none;
    transition: 0.2s;
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}
.form-group textarea:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--theme-focus-ring, rgba(139,34,82,0.08));
}
.form-group input:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--theme-focus-ring, rgba(139,34,82,0.08));
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--brand);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
    box-shadow: 0 2px 8px rgba(139,34,82,0.18);
}
.btn:hover { background: var(--brand-dark); color: #fff; transform: translateY(-2px);     box-shadow: 0 6px 24px var(--theme-shadow-brand, rgba(139,34,82,0.32)); }
.btn-outline {
    background: transparent;
    border: 2px solid var(--brand);
    color: var(--brand);
}
.btn-outline:hover { background: var(--brand); color: #fff; transform: translateY(-2px);     box-shadow: 0 6px 24px var(--theme-shadow-brand, rgba(139,34,82,0.25)); }
.alert {
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 14px;
    font-size: 14px;
}
.alert-error {
    background: var(--danger-light);
    color: var(--brand-dark);
}
.alert-warning {
    background: #fff3cd;
    color: #856404;
    animation: warningPulse 1.2s infinite;
}
@keyframes warningPulse {
    0% { opacity: 1; }
    50% { opacity: 0.55; }
    100% { opacity: 1; }
}
.alert-success {
    background: #e2f8e9;
    color: #1b6b2a;
}

.modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 900;
    align-items: center;
    justify-content: center;
}
.modal-backdrop.open {
    display: flex;
}
.modal {
    background: #fff;
    border-radius: 10px;
    width: 100%;
    max-width: 480px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.modal h3 {
    margin-bottom: 10px;
    font-size: 16px;
    color: #1a1a1a;
}
.modal p {
    color: #333;
    font-size: 14px;
    line-height: 1.5;
}
.auth-link {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: #777;
}
.auth-link a {
    color: var(--brand);
    font-weight: 600;
}
.auth-link a:hover { text-decoration: underline; }

.filter-divider { border-top: 1px solid var(--border, #e3d0d4); margin: 14px 0; }
.price-slider { margin-top: 12px; margin-bottom: 12px; padding: 8px 0; }
.price-inputs { display: flex; gap: 8px; }
.price-input-wrap { display: flex; align-items: center; gap: 4px; flex: 1; }
.price-input-symbol { font-size: 14px; color: var(--brand, #8B2252); font-weight: 600; flex-shrink: 0; }
.price-input-wrap input { width: 100%; padding: 8px; border: 1px solid var(--border, #e3d0d4); border-radius: var(--radius); font-size: 14px; }
.price-inputs input { width: 100%; padding: 8px; border: 1px solid var(--border, #e3d0d4); border-radius: var(--radius); font-size: 14px; }
.price-range-labels { display: flex; justify-content: space-between; font-size: 13px; color: #666; margin-bottom: 6px; }
.noUi-target { background: var(--brand, #8B2252) !important; border-radius: 999px !important; border: none !important; box-shadow: none !important; height: 3px !important; padding: 0 !important; }
.noUi-base { height: 3px !important; }
.noUi-origin { height: 3px !important; }
.noUi-connect { background: var(--gold, #c8922a) !important; border-radius: 999px !important; }
.noUi-handle { right: -7px !important; width: 14px !important; height: 14px !important; border-radius: 50% !important; background: #fff !important; border: 2px solid var(--brand, #8B2252) !important; box-shadow: 0 1px 4px rgba(0,0,0,0.15) !important; cursor: grab; outline: none; transition: box-shadow 0.2s ease, border-color 0.2s ease; }
.noUi-handle:hover { box-shadow: 0 2px 8px rgba(139,34,82,0.3) !important; border-color: var(--brand-dark, #6a0d3b) !important; }
.noUi-handle:active { cursor: grabbing; box-shadow: 0 1px 4px rgba(139,34,82,0.4) !important; }
.noUi-handle:focus { box-shadow: 0 0 0 3px var(--theme-focus-ring, rgba(139,34,82,0.15)) !important; }
.noUi-handle::before, .noUi-handle::after { display: none !important; }
.noUi-tooltip { display: none !important; }
.material-filter-form select { width: 100%; padding: 10px; border: 1px solid var(--border); border-radius: 6px; font-size: 14px; }
.category-filter-form select,
.size-filter-form select,
.price-filter-form select[name="size"],
.price-filter-form select[name="category_id"] { width: 100%; padding: 10px; border: 1px solid var(--border); border-radius: 6px; font-size: 14px; background: #fff; color: var(--text); cursor: pointer; transition: border-color 0.2s ease; }
.category-filter-form select:focus,
.size-filter-form select:focus,
.price-filter-form select[name="size"]:focus,
.price-filter-form select[name="category_id"]:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--theme-focus-ring, rgba(139,34,82,0.10)); }
.price-filter-form .btn { width: 100%; }

/* Orders */
.orders-list { display: flex; flex-direction: column; gap: 16px; }
.order-card { display: flex; flex-direction: column; gap: 8px; }
.order-header { display: flex; align-items: center; justify-content: space-between; }

/* Checkout Pages */
.place-order-wrapper { max-width: 640px; }
.form-card { padding: 26px; }

/* Orders list page */
.order-history-list .order-card {
    display: flex; flex-direction: column; gap: 4px;
}

/* Back to shop / utility */
.pull-right { float: right; }
.text-muted { color: #777; font-size: 13px; }

/* Shop page structure */
.shop-layout { display: grid; gap: 22px; }
.sidebar-filters h3 { margin-bottom: 14px; font-size: 16px; }
.category-list { display: flex; flex-direction: column; gap: 0; }
.cat-link {
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 500;
    color: #333;
    margin: 0;
}
.cat-link:hover, .cat-link.active {
    background: var(--bg-pink-light);
    color: var(--brand);
    border-radius: 8px;
}
.shop-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 20px; flex-wrap: wrap; gap: 10px;
}

.search-form {
    display: flex;
    max-width: 340px;
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    background: white;
}
.search-form input {
    border: none;
    padding: 10px 14px;
    font-size: 14px;
    flex: 1;
}
.search-form button {
    background: var(--brand);
    color: white;
    border: none;
    padding: 0 14px;
    cursor: pointer;
}

.btn-lg {
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 16px;
}
.error {
    padding: 10px 18px;
    background: var(--danger-light);
    color: var(--brand-dark);
    border-radius: 8px;
    margin-bottom: 12px;
}
.success-page {
    padding: 40px 0;
    overflow-x: hidden;
}
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}
.success-card {
    overflow-wrap: break-word;
    word-wrap: break-word;
}
@media (max-width: 900px) {
    .success-page {
        padding: 20px 0;
    }
    .success-cards {
        padding: 0 10px;
    }
    .success-card {
        padding: 28px 16px;
    }
    .success-card h2 {
        font-size: 20px;
    }
    .success-card p {
        font-size: 16px;
    }
    .payment-details-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 500px) {
    .success-card {
        padding: 24px 12px;
    }
    .success-card i {
        font-size: 60px;
    }
    .success-card h2 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    .success-card p {
        font-size: 14px;
    }
    .success-actions {
        flex-direction: column;
        gap: 10px;
    }
    .btn {
        width: 100%;
        max-width: 300px;
    }
}
.alert {
    padding: 10px 18px;
    .btn {
        width: 100%;
        max-width: 300px;
    }
    .success-card .payment-note,
    .success-card .form-control {
        font-size: 14px;
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 58px;
    height: 58px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.22);
    z-index: 999;
    transition: 0.2s;
    text-decoration: none;
}
.whatsapp-float:hover {
    background: #1da851;
    transform: scale(1.08);
    color: #fff;
}
.whatsapp-label {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 600;
    color: #333;
    background: #fff;
    padding: 2px 8px;
    border-radius: 10px;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    pointer-events: none;
}

.price-locked {
    font-style: italic;
    color: var(--brand);
    font-weight: 600;
    font-size: 13px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Contact page */
.contact-page h2 {
    font-size: 28px;
    color: var(--brand);
    margin-bottom: 6px;
}
.contact-subtitle {
    color: #666;
    font-size: 15px;
    margin-bottom: 28px;
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 28px;
    align-items: start;
}
.contact-info-card,
.contact-map-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    padding: 26px;
}
.contact-info-card h3,
.contact-map-card h3 {
    font-size: 18px;
    margin-bottom: 14px;
    color: var(--brand);
}
.contact-info-card p {
    font-size: 14px;
    color: #444;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-info-card i {
    color: var(--brand);
    width: 18px;
    text-align: center;
}
.contact-info-card a {
    color: var(--brand);
    font-weight: 600;
}
.map-embed {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-light);
}
.map-placeholder {
    background: var(--bg-pink-lighter);
    border-radius: var(--radius);
    padding: 40px 20px;
    text-align: center;
    color: #999;
    border: 2px dashed #f3d6dd;
}
.map-placeholder i {
    font-size: 48px;
    color: #d9b0be;
    margin-bottom: 12px;
    display: block;
}
.footer-map {
    max-width: 100%;
    overflow: hidden;
    display: block;
    line-height: 0;
}
.footer-map iframe {
    display: block;
}
.footer-powered {
    font-size: 12px;
    color: #666;
    margin-top: 6px;
}
.footer-powered a {
    color: #bbb;
}

@media (max-width: 900px) {
    .contact-layout { 
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        align-items: start;
    }
    .contact-form-card,
    .contact-info-card,
    .contact-map-card {
        padding: 16px;
    }
    .contact-page h2 {
        font-size: 22px;
        margin-bottom: 4px;
    }
    .contact-subtitle {
        font-size: 13px;
        margin-bottom: 16px;
    }
    .contact-info-card h3,
    .contact-map-card h3 {
        font-size: 15px;
        margin-bottom: 10px;
    }
    .contact-info-card p {
        font-size: 13px;
        margin-bottom: 8px;
        gap: 6px;
    }
    .form-row-2 {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .form-group {
        margin-bottom: 10px;
    }
    .form-group label {
        font-size: 12px;
        margin-bottom: 4px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 13px;
        padding: 8px 10px;
    }
    .captcha-row {
        gap: 6px;
    }
    .captcha-question {
        font-size: 13px;
        padding: 8px 10px;
        min-width: 100px;
    }
    .btn {
        font-size: 13px;
        padding: 8px 12px;
    }
    .product-layout { grid-template-columns: 1fr; }
    .checkout-layout { grid-template-columns: 1fr; }
    .cart-layout { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 5px; }
    .shop-page .container { padding: 0 24px; }
    .shop-layout { display: block; }
    .sidebar-filters {
        position: fixed;
        top: 0;
        left: 0;
        width: 240px;
        max-width: 85vw;
        height: auto;
        max-height: none;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        border-radius: 0;
    }
    .sidebar-filters.open {
        transform: translateX(0);
    }
    .filter-toggle-btn {
        display: inline-flex;
    }
    .product-card { min-width: 0; }
    .shop-header {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: flex-start;
    }
    .shop-header h2 {
        font-size: 18px;
        margin: 0;
    }
    .shop-toolbar {
        width: 100%;
        flex-wrap: wrap;
        gap: 10px;
    }
    .shop-toolbar .toolbar-item {
        flex: 1 1 auto;
        min-width: 120px;
    }
    .shop-toolbar select {
        width: 100%;
        min-width: auto;
    }
    .btn-sm {
        font-size: 12px;
        padding: 5px 10px;
        border-radius: 6px;
    }
    .btn {
        font-size: 13px;
        padding: 8px 12px;
        border-radius: 8px;
    }
    .btn-light {
        font-size: 13px;
        padding: 7px 14px;
        border-radius: 8px;
    }
    .btn-outline {
        font-size: 13px;
        padding: 7px 14px;
    }
    .btn-dark {
        font-size: 13px;
        padding: 7px 14px;
    }
    .auth-wrapper { 
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .auth-card, .auth-guest {
        padding: 18px 16px;
    }
    .auth-card h2 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    .auth-guest {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .auth-guest h3 {
        font-size: 15px;
    }
    .auth-guest p {
        font-size: 13px;
        margin-bottom: 12px;
    }
    .form-group {
        margin-bottom: 10px;
    }
}
.contact-layout-full {
    grid-column: 1 / -1;
}

/* Account page */
.account-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    align-items: start;
}
.account-sidebar {
    padding: 24px;
    text-align: center;
}
.account-avatar {
    font-size: 56px;
    color: var(--brand);
    margin-bottom: 10px;
}
.account-sidebar h3 {
    font-size: 17px;
    margin-bottom: 4px;
}
.account-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
    margin-top: 14px;
}
.account-nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    color: #444;
    font-weight: 500;
}
.account-nav-link:hover {
    background: var(--bg-pink-light);
    color: var(--brand);
}
.account-nav-link.active {
    background: var(--bg-pink-light);
    color: var(--brand);
    font-weight: 700;
}
.account-nav-link i {
    width: 18px;
    text-align: center;
}
.account-main .card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    padding: 24px;
    margin-bottom: 20px;
}
.card-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 20px;
}
.stat-box {
    background: var(--bg-pink-lighter);
    border: 1px solid #d1c8cc;
    border-radius: 10px;
    padding: 16px;
    text-align: center;
}
.stat-box strong {
    display: block;
    font-size: 22px;
    color: var(--brand);
    margin-bottom: 4px;
}
.stat-box span {
    font-size: 12px;
    color: #777;
}

.order-cards {
    display: grid;
    gap: 0;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
}
.order-card-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.8fr;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-light);
    transition: background 0.15s ease;
    text-decoration: none;
    color: inherit;
}
.order-card-row:last-child {
    border-bottom: none;
}
.order-card-row:hover {
    background: var(--bg-pink-lighter);
}
.order-card-field {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}
.order-card-field span:first-child,
.order-card-field .text-muted {
    font-size: 11px;
    color: #888;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}
.order-card-field strong,
.order-card-field span:last-child {
    font-weight: 600;
    color: #222;
    font-size: 14px;
}
.order-card-field .badge {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 20px;
    font-weight: 600;
    white-space: nowrap;
    display: inline-block;
}
.order-badges {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.order-card-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: flex-end;
}
.order-card-row:hover {
    background: var(--bg-pink-lighter);
}
.table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    background: #fff;
}
.table-wrapper .table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.table-wrapper .table th {
    background: var(--bg-pink-lighter);
    padding: 10px 12px;
    text-align: left;
    font-weight: 600;
    color: #777;
    border-bottom: 2px solid var(--border-light);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.table-wrapper .table td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--border-light);
    color: #333;
    vertical-align: middle;
}
.table-wrapper .table tr:last-child td {
    border-bottom: none;
}
.table-wrapper .table tr:hover td {
    background: var(--bg-pink-lighter);
}
.order-card-actions {
    margin-left: auto;
    justify-content: flex-end;
}
.order-card-actions .btn-link {
    color: var(--brand);
    font-weight: 600;
    font-size: 14px;
}
.order-card-actions .btn-link i {
    font-size: 11px;
    margin-left: 4px;
}
.order-card-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}
.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: 0.2s;
    text-decoration: none;
}
.btn-icon.btn-outline {
    background: transparent;
    color: var(--brand);
    border-color: var(--border-light);
}
.btn-icon.btn-outline:hover {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}
.btn-icon:not(.btn-outline) {
    background: var(--brand);
    color: #fff;
}
.btn-icon:not(.btn-outline):hover {
    background: var(--brand-dark);
}

/* Timeline */
.timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    margin: 18px 0 22px;
}
.timeline-step {
    text-align: center;
    font-size: 12px;
    color: #bbb;
    position: relative;
}
.timeline-step::before {
    content: '';
    position: absolute;
    top: 16px;
    left: -50%;
    right: 50%;
    height: 2px;
    background: #eee;
    z-index: 1;
}
.timeline-step:first-child::before { display: none; }
.timeline-step.done { color: var(--brand); font-weight: 700; }
.timeline-step.done::before { background: var(--brand); }
.timeline-step.pending::before { background: #eee; }
.timeline-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f5f5f5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-bottom: 4px;
    position: relative;
    z-index: 2;
}
.timeline-step.done .timeline-icon {
    background: var(--brand);
    color: #fff;
}

/* Order detail order-info-grid */
.order-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    background: var(--bg-pink-lighter);
    border-radius: 10px;
    padding: 18px;
    margin-bottom: 18px;
}
.order-info-grid h4 {
    font-size: 13px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.order-items-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.order-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--border-lighter);
    background: #fff;
}
.order-item-img {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    flex-shrink: 0;
    overflow: hidden;
    border: 1px solid var(--border-light);
    background: var(--bg-pink-lightest);
    display: flex;
    align-items: center;
    justify-content: center;
}
.item-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    display: block;
}
.item-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d9b0be;
    font-size: 22px;
}
.order-item-info {
    flex: 1;
}
.order-item-info strong {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
}
.order-item-info span {
    font-size: 12px;
    color: #777;
}
.order-item-subtotal {
    font-weight: 700;
    color: var(--brand);
    font-size: 14px;
}

/* Address list */
.address-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 14px;
}
.address-card {
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 16px;
    background: #fff;
}
.address-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}
.address-card p {
    font-size: 13px;
    color: #555;
    margin-bottom: 4px;
}
.address-actions {
    margin-top: 10px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 900px) {
    .account-layout { 
        grid-template-columns: 1fr;
        gap: 16px;
        min-width: 0;
    }
    .account-sidebar {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 14px;
        align-items: center;
        padding: 16px;
        max-width: 100%;
        overflow: hidden;
        min-width: 0;
    }
    .account-main {
        min-width: 0;
        overflow: hidden;
    }
    .account-main .card {
        max-width: 100%;
        overflow: hidden;
    }
    .account-sidebar > .account-avatar {
        grid-column: 1;
        grid-row: 1;
        font-size: 42px;
        margin: 0;
    }
    .account-sidebar > h3 {
        grid-column: 2;
        grid-row: 1;
        font-size: 15px;
        margin: 0;
    }
    .account-sidebar > .text-muted {
        grid-column: 2;
        margin: 0;
        font-size: 12px;
    }
    .account-sidebar > .text-muted:nth-of-type(1) { grid-row: 2; }
    .account-sidebar > .text-muted:nth-of-type(2) { grid-row: 3; }
    .account-sidebar > hr.divider {
        display: none;
    }
    .account-sidebar > .btn {
        grid-column: 1 / -1;
        margin-top: 0;
        text-align: center;
        font-size: 13px;
        padding: 8px 12px;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .account-nav {
        grid-column: 1 / -1;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
        margin-top: 6px;
    }
    .account-nav-link {
        font-size: 12px;
        padding: 7px 10px;
        white-space: nowrap;
    }
    .stats-row { grid-template-columns: 1fr 1fr 1fr; }
    .timeline { grid-template-columns: 1fr; gap: 10px; }
    .timeline-step::before { display: none; }
    .order-info-grid { grid-template-columns: 1fr; }

    /* Recent Orders responsive */
    .account-main .card { padding: 14px 12px; }
    .account-main .card h4 { margin: 12px 0 6px; font-size: 14px; }
    .table-wrapper .table th,
    .table-wrapper .table td { padding: 8px 10px; font-size: 13px; }
    .table-wrapper .table th { font-size: 11px; letter-spacing: 0.2px; }
    .table-actions { display: flex; gap: 4px; flex-wrap: nowrap; }
    .table-actions .btn-sm { padding: 5px 10px; font-size: 12px; gap: 4px; }
    .table-actions .btn-sm i { font-size: 11px; }
}


@media (max-width: 900px) {
    .auth-wrapper { 
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .auth-card, .auth-guest {
        padding: 18px 16px;
    }
    .auth-card h2 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    .auth-guest {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .auth-guest h3 {
        font-size: 15px;
    }
    .auth-guest p {
        font-size: 13px;
        margin-bottom: 12px;
    }
    .form-group {
        margin-bottom: 10px;
    }
}

/* ===================================================================
   RESPONSIVE MOBILE HEADER MENU
   =================================================================== */

.mobile-header {
    display: none;
}

.desktop-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Hide desktop header elements on mobile */
@media (max-width: 768px) {
    .desktop-header {
        display: none !important;
    }

    .nav-container {
        max-width: 100%;
        padding: 0;
    }

    /* Hide desktop search on mobile */
    .header-search {
        display: none;
    }

    /* Show mobile header */
    .mobile-header {
        display: flex;
        align-items: center;
        height: 56px;
        padding: 0;
        gap: 6px;
        position: relative;
        width: 100%;
        overflow: hidden;
        flex-shrink: 0;
    }

    .mobile-header > .mobile-toggle {
        flex: 0 0 36px;
        order: 1;
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .mobile-header > .mobile-logo {
        flex: 1 1 0;
        order: 2;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 4px;
        position: static;
        transform: none;
        left: auto;
        font-weight: 700;
        font-size: 16px;
        color: var(--brand);
        text-decoration: none;
        text-align: left;
        min-width: 0;
        padding: 0;
        overflow: hidden;
    }

    .mobile-header > .mobile-logo .logo-img {
        height: 32px;
        width: auto;
        object-fit: contain;
        flex-shrink: 0;
    }

    .mobile-header > .mobile-logo .logo-icon {
        font-size: 22px;
        flex-shrink: 0;
    }

    .mobile-header > .mobile-logo .logo-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        min-width: 0;
        overflow: hidden;
    }

    .mobile-header > .mobile-logo .logo-name {
        font-size: 17px;
        font-weight: 700;
        color: #1a1a1a;
        line-height: 1.2;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 100%;
    }

    .mobile-header > .mobile-logo .mobile-page-title {
        display: block;
        font-size: 10px;
        font-weight: 400;
        color: #888;
        line-height: 1.2;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 100%;
    }

    .mobile-header > .mobile-actions {
        flex: 0 0 auto;
        order: 3;
        display: flex;
        align-items: center;
        gap: 2px;
        margin-left: auto;
        flex-shrink: 0;
    }

    .mobile-icon-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        color: var(--brand);
        font-size: 16px;
        text-decoration: none;
        transition: background 0.2s, color 0.2s;
        position: relative;
        flex-shrink: 0;
    }

    .mobile-cart-btn {
        margin-right: 0;
    }

    .mobile-login-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
        height: 30px;
        padding: 0 10px;
        background: var(--brand);
        color: #fff;
        border-radius: 16px;
        font-size: 12px;
        font-weight: 600;
        text-decoration: none;
        white-space: nowrap;
        transition: background 0.2s;
        flex-shrink: 0;
    }

    /* Extra small mobile screens */
    @media (max-width: 360px) {
        .mobile-header {
            gap: 4px;
        }
        .mobile-header > .mobile-toggle {
            flex: 0 0 32px;
            width: 32px;
            height: 32px;
            font-size: 16px;
        }
        .mobile-icon-btn {
            width: 30px;
            height: 30px;
            font-size: 14px;
        }
        .mobile-header > .mobile-logo {
            font-size: 14px;
        }
        .mobile-header > .mobile-logo .logo-name {
            font-size: 12px;
        }
        .mobile-login-btn {
            height: 28px;
            padding: 0 8px;
            font-size: 11px;
        }
        .mobile-actions {
            gap: 1px;
        }
    }
}

    .nav-container,
    .mobile-header,
    .header .container {
        max-width: 100%;
    }

    /* Hide desktop search on mobile */
    .header-search {
        display: none;
    }

    /* Show mobile header */
    .mobile-header {
        display: flex;
        align-items: center;
        height: 56px;
        padding: 0;
        gap: 8px;
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    .mobile-header > .mobile-toggle {
        flex: 0 0 40px;
        order: 1;
    }

    .mobile-header > .mobile-logo {
        flex: 1 1 auto;
        order: 2;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 3px;
        position: static;
        transform: none;
        left: auto;
        font-weight: 700;
        font-size: 17px;
        color: var(--brand);
        text-decoration: none;
        text-align: left;
        min-width: 0;
        padding: 0;
    }

    .mobile-header > .mobile-logo .logo-img {
        height: 36px;
        width: auto;
        object-fit: contain;
        flex-shrink: 0;
    }

    .mobile-header > .mobile-logo .logo-icon {
        font-size: 24px;
        flex-shrink: 0;
    }

    .mobile-header > .mobile-logo .logo-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        min-width: 0;
    }

    .mobile-header > .mobile-logo .logo-name {
        font-size: 18px;
        font-weight: 700;
        color: #1a1a1a;
        line-height: 1.2;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 100%;
    }

    body.logged-in .mobile-header .logo-name {
        display: none;
    }

    body.logged-in .mobile-header .mobile-page-title {
        display: none;
    }

    body.logged-in .mobile-header > .mobile-logo {
        flex: 0 0 auto;
        justify-content: flex-start;
        padding: 0;
        gap: 2px;
    }

    .mobile-header > .mobile-logo .mobile-page-title {
        display: block;
        font-size: 11px;
        font-weight: 400;
        color: #888;
        line-height: 1.2;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 100%;
    }

    body.logged-in .mobile-header .mobile-page-title {
        display: none;
    }

    .mobile-header > .mobile-actions {
        flex: 0 0 auto;
        order: 3;
        display: flex;
        align-items: center;
        gap: 4px;
        margin-left: auto;
    }

    .mobile-icon-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        color: var(--brand);
        font-size: 18px;
        text-decoration: none;
        transition: background 0.2s, color 0.2s;
        position: relative;
    }

    .mobile-icon-btn:active {
        background: #f0e0e4;
    }

    .mobile-cart-btn {
        margin-right: 4px;
    }

    .mobile-login-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
        height: 34px;
        padding: 0 14px;
        background: var(--brand);
        color: #fff;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
        white-space: nowrap;
        transition: background 0.2s;
    }

    .mobile-login-btn:active {
        background: var(--brand-dark);
    }

    /* Reuse cart-badge for mobile */
    .mobile-cart-btn .cart-badge {
        position: absolute;
        top: 0px;
        right: 0px;
        background: var(--brand);
        color: #fff;
        font-size: 10px;
        font-weight: 700;
        min-width: 18px;
        height: 18px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 4px;
        border: 2px solid #fff;
        z-index: 2;
    }

    .mobile-cart-btn .cart-amount {
        font-size: 10px;
        font-weight: 700;
        color: var(--brand);
        background: transparent;
        white-space: nowrap;
        line-height: 1;
        pointer-events: none;
        margin-left: 4px;
    }

    .mobile-cart-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 3px;
        width: auto;
        max-width: 64px;
    }

    .mobile-search-btn {
        width: 40px;
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        color: #333;
        font-size: 18px;
        cursor: pointer;
        border-radius: 0;
        flex-shrink: 0;
        position: relative;
    }

    .mobile-search-close {
        display: none;
    }

    .mobile-search-btn.open .fa-magnifying-glass {
        display: none;
    }

    .mobile-search-btn.open .mobile-search-close {
        display: inline-flex;
    }

    .mobile-search-box {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        z-index: 10;
        display: flex;
        align-items: center;
        padding: 0 10px;
        gap: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }

    .mobile-search-box[hidden] {
        display: none;
    }

    .mobile-search-form {
        display: flex;
        align-items: center;
        width: 100%;
        gap: 8px;
        background: #f5f5f5;
        border: 1px solid #eee;
        border-radius: 20px;
        padding: 4px 8px;
        height: 38px;
    }

    .mobile-search-form input {
        flex: 1;
        border: none;
        background: transparent;
        outline: none;
        font-size: 12px;
        color: #333;
        min-width: 0;
        animation: caretBlink 1.2s ease-in-out infinite;
    }

    .mobile-search-form button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: var(--brand);
        color: #fff;
        border: none;
        cursor: pointer;
        flex-shrink: 0;
    }

    /* Mobile toggle (hamburger) */
    .mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        font-size: 20px;
        cursor: pointer;
        color: #333;
        border-radius: 50%;
        flex-shrink: 0;
    }

    .mobile-toggle:active {
        background: #f0e0e4;
    }
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1999;
    opacity: 0;
    transition: opacity 300ms ease;
}

.mobile-nav-overlay.open {
    display: block;
    opacity: 1;
}

/* Mobile Navigation Drawer */
.mobile-nav-drawer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: min(280px, 80vw);
    height: 100vh;
    height: 100dvh;
    background: #fff;
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform 300ms ease;
    flex-direction: column;
    box-shadow: 2px 0 16px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-nav-drawer.open {
    display: flex;
    transform: translateX(0);
}

/* Body lock when drawer open */
body.drawer-open {
    overflow: hidden;
}

/* Drawer Header */
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-light);
    flex-shrink: 0;
}

.drawer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 18px;
    color: var(--brand);
    text-decoration: none;
}

.drawer-logo .logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.drawer-logo .logo-icon {
    font-size: 28px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.drawer-logo .logo-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

.drawer-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #333;
    border-radius: 8px;
    flex-shrink: 0;
}

.drawer-close:active {
    background: #f0e0e4;
}

/* Drawer Nav */
.drawer-nav {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
    flex: 1;
}

.drawer-nav .nav-link {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    min-height: 48px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    border-radius: 0;
    gap: 10px;
}

.drawer-nav .nav-link-sm {
    font-size: 14px;
    padding: 12px 20px;
}

.drawer-nav .nav-link:hover,
.drawer-nav .nav-link.active {
    background: var(--bg-pink-light);
    color: var(--brand);
}

.drawer-nav .btn-login {
    margin: 8px 16px;
    margin-top: auto;
    padding: 12px 20px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.drawer-nav .wishlist-link,
.drawer-nav .cart-link {
    position: relative;
}

.drawer-nav .wishlist-badge,
.drawer-nav .cart-badge {
    position: absolute;
    top: 8px;
    right: 16px;
}

.drawer-nav .cart-amount {
    margin-left: auto;
    background: transparent;
    border: none;
    font-weight: 600;
}

/* Drawer Categories */
    .drawer-categories {
        padding: 4px 0;
    }

    .drawer-categories .nav-link-sm {
        padding-left: 32px;
        font-size: 13px;
    }

    .drawer-nav .drawer-contact-btn {
        margin: 8px 16px;
        padding: 12px 20px;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: #fff;
        color: var(--brand);
        border: 2px solid var(--brand);
        font-weight: 600;
    }

    .drawer-nav .drawer-contact-btn:hover {
        background: var(--brand);
        color: #fff;
    }

/* Testimonials */
.testimonials-section {
        background: linear-gradient(160deg, var(--bg-pink-lightest) 0%, #fff9fb 50%, var(--bg-pink-light) 100%);
        padding: 52px 0 56px;
        border-top: 1px solid var(--border-light);
        border-bottom: 1px solid var(--border-light);
    }
    .testimonials-heading {
        text-align: center;
        font-size: 22px;
        font-weight: 700;
        color: #1a1a1a;
        margin: 0 0 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    .testimonials-heading .fa-quote-left {
        color: var(--brand);
        font-size: 20px;
        opacity: .85;
    }
    .testimonials-wrapper {
        position: relative;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .testimonials-carousel {
        display: flex;
        gap: 18px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        overflow-x: hidden;
        flex: 1;
    }
    .testimonial-arrow {
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1px solid var(--border-light);
        background: #fff;
        color: var(--brand);
        box-shadow: var(--shadow);
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        transition: background .2s, color .2s, box-shadow .2s, transform .2s;
    }
    .testimonial-arrow:hover {
        background: var(--brand);
        color: #fff;
        border-color: var(--brand-dark);
        box-shadow: 0 6px 20px rgba(139,34,82,0.18);
        transform: translateY(-1px);
    }
    .testimonial-arrow:active {
        transform: translateY(0);
    }
    .testimonial-card {
        background: #fff;
        border: 1px solid var(--border-light);
        border-radius: var(--radius);
        padding: 22px;
        box-shadow: var(--shadow);
        transition: transform .2s ease, box-shadow .2s ease;
        position: relative;
        overflow: hidden;
        flex: 0 0 auto;
        width: 300px;
        scroll-snap-align: start;
    }
    .testimonial-card::before {
        content: '\f10d';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        top: 12px;
        right: 16px;
        color: var(--border-lighter);
        font-size: 46px;
        line-height: 1;
        pointer-events: none;
    }
    .testimonial-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
        border-color: #f5d0dc;
    }
    .testimonial-stars {
        margin-bottom: 12px;
        display: flex;
        gap: 4px;
    }
    .testimonial-stars .fa-star {
        font-size: 13px;
    }
    .testimonial-text {
        color: #4a3a40;
        font-size: 14px;
        line-height: 1.65;
        margin: 0 0 18px;
        position: relative;
        z-index: 1;
    }
    .testimonial-meta {
        display: flex;
        align-items: baseline;
        gap: 8px;
        flex-wrap: wrap;
    }
    .testimonial-name {
        font-weight: 700;
        color: var(--brand);
        font-size: 14px;
    }
    .testimonial-location {
        color: #888;
        font-size: 12px;
    }
}

/* Mobile header shadow */
@media (max-width: 768px) {
    .header {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .mobile-header {
        padding: 0;
    }

    .desktop-header {
        display: none !important;
    }

    .nav-container > .desktop-header {
        display: none !important;
    }

    .mobile-search-btn { display: none !important; }

    .mobile-actions .wishlist-link { display: none !important; }

    .wishlist-btn .wishlist-text { display: none !important; }
}

/* Blog */
.blog-listing-section {
    padding: 52px 0 60px;
    background: #fdf8fa;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}
.blog-filter-bar {
    max-width: 960px;
    margin: 0 auto 28px;
}
.blog-filter-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-end;
    gap: 12px;
}
.blog-filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.blog-filter-group label {
    font-size: 13px;
    font-weight: 600;
    color: #6b5a5e;
}
.blog-filter-group input,
.blog-filter-group select {
    padding: 10px 12px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    color: #1a1a1a;
}
.blog-filter-group input:focus,
.blog-filter-group select:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--theme-focus-ring, rgba(139,34,82,0.1));
}
.blog-filter-search {
    flex: 1 1 260px;
    min-width: 220px;
}
.blog-filter-category {
    flex: 0 1 220px;
    min-width: 180px;
}
.blog-filter-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    padding-bottom: 1px;
}
.blog-listing-heading {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px;
}
.blog-listing-subtitle {
    text-align: center;
    color: #6b5a5e;
    margin: 0 0 36px;
}
.blog-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 28px;
}
.blog-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    box-shadow: 0 2px 14px rgba(0,0,0,0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease;
}
.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 50px var(--theme-shadow-brand, rgba(139,34,82,0.15));
}
.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.blog-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.blog-card-category {
    display: inline-block;
    background: var(--bg-pink-lighter);
    color: var(--brand);
    border: 1px solid var(--border-lighter);
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .4px;
}
.blog-card-date {
    font-size: 12px;
    color: #888;
}
.blog-card-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.35;
}
.blog-card-title a {
    color: #1a1a1a;
}
.blog-card-title a:hover {
    color: var(--brand);
}
.blog-card-excerpt {
    font-size: 14px;
    color: #4a3a40;
    line-height: 1.6;
    flex: 1;
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.blog-card-author {
    font-size: 12px;
    color: #6b5a5e;
    font-weight: 600;
}
.blog-card-read {
    font-size: 13px;
    font-weight: 600;
    color: var(--brand);
}
.blog-post-content {
    padding: 52px 0 60px;
    background: #fdf8fa;
}
.blog-post-hero {
    margin-bottom: 28px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-light);
}
.blog-post-image {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
}
.blog-post-header {
    margin-bottom: 28px;
}
.blog-post-header h1 {
    font-size: 30px;
    font-weight: 800;
    margin: 0 0 12px;
}
.blog-post-meta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    color: #6b5a5e;
    font-size: 13px;
    margin-bottom: 16px;
}
.blog-post-meta i {
    margin-right: 6px;
    color: var(--brand);
    opacity: .8;
}
.blog-post-excerpt {
    font-size: 16px;
    color: #4a3a40;
    line-height: 1.7;
    margin: 0;
}
.blog-post-body {
    font-size: 15px;
    line-height: 1.8;
    color: #2a2024;
}
.blog-post-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 12px 0;
}
.blog-post-body h2,
.blog-post-body h3 {
    color: #1a1a1a;
    margin-top: 22px;
    margin-bottom: 10px;
}
.blog-post-body p {
    margin: 0 0 16px;
}
.blog-post-body a {
    color: var(--brand);
}
.blog-post-body blockquote {
    border-left: 3px solid var(--brand);
    padding: 10px 16px;
    background: var(--bg-pink-lighter);
    margin: 16px 0;
    color: #4a3a40;
    border-radius: 0 8px 8px 0;
}
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.blog-pagination a,
.blog-pagination span {
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    background: #fff;
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 600;
}
.blog-pagination a:hover {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}
.blog-pagination span.active {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}
.blog-sidebar {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 18px;
    margin-bottom: 22px;
}
.blog-sidebar h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .4px;
    color: #6b5a5e;
    margin: 0 0 12px;
}
.blog-category-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.blog-category-list li + li {
    border-top: 1px solid var(--border-lighter);
}
.blog-category-list a {
    display: block;
    padding: 8px 4px;
    color: #2a2024;
    font-size: 14px;
}
.blog-category-list a:hover {
    color: var(--brand);
}

/* Mobile bottom bar */
/* Pagination */
.pagination { margin-top: 24px; }
.pagination ul { display: flex; gap: 6px; justify-content: center; list-style: none; margin: 0; padding: 0; }
.pagination li { display: inline; }
.pagi-link, .pagi-prev, .pagi-next { display: inline-flex; align-items: center; justify-content: center; padding: 8px 12px; border: 1px solid #e3d0d4; color: #333; text-decoration: none; border-radius: 6px; font-size: 14px; transition: 0.2s; }
.pagi-link:hover, .pagi-prev:hover, .pagi-next:hover { background: var(--bg-pink-light); color: var(--brand); }
.pagi-link.active { background: var(--brand); color: #fff; border-color: var(--brand); }
.page-dots { display: inline-flex; align-items: center; justify-content: center; padding: 8px 4px; color: #888; font-size: 14px; }

@media (max-width: 768px) {
    .pagination { margin-top: 16px; }
    .pagination ul { flex-wrap: wrap; gap: 4px; }
    .pagi-link, .pagi-prev, .pagi-next { padding: 6px 10px; font-size: 13px; border-radius: 5px; }
    .page-dots { padding: 6px 2px; font-size: 13px; }
}

.new-arrivals-link {
    position: relative;
    overflow: hidden;
}
.na-text {
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, var(--brand), var(--gold), var(--brand));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: naGradientShift 3s ease-in-out infinite;
    font-weight: 600;
}
@keyframes naGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.new-arrivals-link:hover .na-text {
    animation-duration: 1.5s;
}

.mobile-bottom-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1080;
    display: none;
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: 0 -2px 12px rgba(0,0,0,0.06);
    grid-template-columns: repeat(6, 1fr);
    align-items: center;
    justify-items: center;
    width: 100%;
    max-width: 100%;
    padding: 8px 4px 10px;
    gap: 0;
}
.mob-bottom-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
    padding: 4px 2px;
    border-radius: 10px;
    color: var(--brand);
    font-weight: 600;
    font-size: 12px;
    line-height: 1.2;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 3px;
}
.mob-bottom-link i { font-size: 34px; }
.mob-bottom-link.active,
.mob-bottom-link:active { color: var(--brand-dark); }
.mob-bottom-link.cart-link { position: relative; }

.mobile-bottom-bar .cart-link .cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--brand);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid #fff;
    z-index: 2;
    pointer-events: none;
    display: none;
}

.mobile-bottom-bar .cart-link .cart-amount {
    display: none;
}
.mob-cat-toggle .link-text { display: none; }
.mob-cat-toggle { padding: 6px 6px; }

.mobile-bottom-overlay {
    position: fixed;
    inset: 0;
    z-index: 1060;
    background: rgba(0,0,0,0.35);
    display: none;
}
.mobile-bottom-overlay.open { display: block; }

.mobile-bottom-sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 72px;
    z-index: 1070;
    background: #fff;
    border-radius: 14px 14px 0 0;
    box-shadow: 0 -8px 24px rgba(0,0,0,0.18);
    transform: translateY(100%);
    transition: transform .25s ease;
    max-height: 70vh;
    display: flex;
    flex-direction: column;
}
.mobile-bottom-sheet.open { transform: translateY(0); }

.mobile-sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-light);
}
.mobile-sheet-header strong { color: #1a1a1a; font-size: 16px; }
.mobile-sheet-close {
    background: transparent;
    border: 1px solid var(--border-light);
    color: #6b5a5e;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    font-size: 14px;
    cursor: pointer;
}

.mobile-sheet-search {
    display: flex;
    gap: 10px;
    padding: 14px 16px 30px;
}
.mobile-sheet-search input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid var(--border-light);
    border-radius: 999px;
    font-size: 12px;
    background: #fff;
    color: #1a1a1a;
    animation: caretBlink 1.2s ease-in-out infinite;
}
.mobile-sheet-search button {
    background: var(--brand);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 10px 14px;
    cursor: pointer;
}

.mobile-cat-list {
    padding: 6px 8px 70px;
    display: grid;
    gap: 8px;
    overflow-y: auto;
    max-height: calc(75vh - 60px);
    -webkit-overflow-scrolling: touch;
}
.mobile-cat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    color: #1a1a1a;
    font-weight: 600;
}
.mobile-cat-item i { color: var(--brand); width: 18px; text-align: center; }
.mobile-cat-all { background: var(--bg-pink-lighter); border-color: var(--border-lighter); }

.mobile-cat-empty {
    padding: 14px;
    color: #888;
    text-align: center;
}
.mobile-filter-sheet .price-slider {
    margin: 12px 8px;
}
.mobile-filter-sheet .price-inputs {
    display: flex;
    gap: 10px;
}
.mobile-filter-sheet .price-input-wrap {
    flex: 1;
    position: relative;
}
.mobile-filter-sheet .price-input-symbol {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 13px;
}
.mobile-filter-sheet .price-input-wrap input {
    width: 100%;
    padding: 10px 10px 10px 24px;
    border: 1px solid #e3d0d4;
    border-radius: 6px;
    font-size: 14px;
}
.mobile-filter-sheet .mobile-filter-block {
    margin-bottom: 16px;
}
.mobile-filter-sheet .mobile-filter-title {
    font-weight: 600;
    font-size: 13px;
    color: #333;
    margin-bottom: 8px;
}
.mobile-filter-sheet .mobile-filter-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #e3d0d4;
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
}
@media (max-width: 860px) {
    .mobile-bottom-bar { display: grid; }
    body { padding-bottom: 52px; }

    .mobile-bottom-sheet {
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 14px 14px 0 0;
    }
    .mobile-filter-sheet,
    #mobileFilterSheet {
        max-height: 90vh;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }
    .mobile-filter-body {
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        padding: 0 16px 16px;
    }
    .mobile-filter-form {
        max-width: 100%;
        min-width: 0;
    }
    .mobile-filter-block input,
    .mobile-filter-block select {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    .mobile-filter-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .mobile-sheet-search,
    .mobile-sheet-header {
        padding-left: 16px;
        padding-right: 16px;
    }
    .related-products-track {
        gap: 14px;
    }
    .related-products-track .product-card {
        width: calc((100% - 14px) / 2);
        min-width: calc((100% - 14px) / 2);
    }
    .related-arrow {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

@media (min-width: 769px) {
    .mobile-header { display: none !important; }
    .mobile-nav-drawer { display: none !important; }
    .mobile-nav-overlay { display: none !important; }
    .mobile-bottom-bar { display: none !important; }
    .mobile-bottom-overlay { display: none !important; }
    .mobile-bottom-sheet { display: none !important; }
}
@media (max-width: 768px) {
    .whatsapp-float {
        left: 18px;
        right: auto;
        bottom: 92px;
        width: 44px;
        height: 44px;
        font-size: 22px;
    }
}
    .header-search { display: flex !important; }
    .header { padding: 0 28px; }
}

/* Popup Styles */
.popup-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0, 0, 0, 0.5) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 99999 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
}

.popup-container {
    background: #fff;
    border-radius: 16px;
    max-width: 500px;
    width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    position: relative;
    animation: popupSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-pink-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--brand);
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    z-index: 2;
}

.popup-close:hover {
    background: var(--brand);
    color: #fff;
    transform: rotate(90deg);
}

.popup-content {
    padding: 30px 28px 24px;
}

.popup-type-discount .popup-content {
    padding: 34px 28px 24px;
}

.popup-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 16px;
}

.popup-type-message .popup-icon {
    background: var(--bg-pink-light);
    color: var(--brand);
}

.popup-type-discount .popup-icon {
    background: var(--theme-success-light, #e8f5e9);
    color: var(--theme-success, #27ae60);
}

.popup-type-alert .popup-icon {
    background: var(--theme-warning-light, #fff8e1);
    color: var(--theme-warning, #f57f17);
}

.popup-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 10px;
    text-align: center;
}

.popup-type-discount .popup-title {
    color: var(--theme-success, #27ae60);
}

.popup-message {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 18px;
    text-align: center;
}

.popup-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.popup-actions .btn {
    flex: 1;
    min-width: 120px;
}

.popup-actions .btn.btn-outline {
    flex: 0 0 auto;
}

.popup-dismiss {
    text-align: center;
    margin-top: 16px;
    font-size: 13px;
    color: #888;
}

.popup-dismiss a {
    color: var(--brand);
    cursor: pointer;
    font-weight: 500;
}

.popup-dismiss a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 500px) {
    .popup-container {
        max-width: 100%;
        width: 100%;
        border-radius: 14px 14px 0 0;
        margin: auto;
    }
    
    .popup-content {
        padding: 24px 20px 18px;
    }
    
    .popup-type-discount .popup-content {
        padding: 28px 20px 18px;
    }
    
    .popup-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
    
    .popup-title {
        font-size: 19px;
    }
    
    .popup-message {
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .popup-overlay {
        padding: 10px;
    }
    
    .popup-content {
        padding: 20px 16px 16px;
    }
    
    .popup-actions {
        flex-direction: column;
    }
    
    .popup-actions .btn {
        width: 100%;
    }
}

/* Announcement Top Bar */
.announcement-bar {
    width: 100%;
    text-align: center;
    padding: 8px 36px 8px 12px;
    position: relative;
    z-index: 10000;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease;
    overflow: hidden;
    min-height: auto;
    display: block;
}
.announcement-bar.closed {
    max-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    opacity: 0;
    min-height: 0;
}
.announcement-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: block;
}
.announcement-marquee {
    overflow: hidden;
    position: relative;
    display: block;
    width: 100%;
    white-space: nowrap;
}
.announcement-bar-text {
    display: inline-block;
    white-space: nowrap;
    animation-fill-mode: both;
}
.announcement-bar-text:hover {
    animation-play-state: paused;
}
.ann-title {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    padding: 1px 8px;
    border-radius: 4px;
    margin-right: 6px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-size: 92%;
    vertical-align: middle;
}
/* Marquee */
.announcement-bar-text.anim-marquee {
    padding-left: 100%;
    animation: announcementScroll 20s linear infinite;
}
@keyframes announcementScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
/* Fade */
.announcement-bar-text.anim-fade {
    animation: announcementFade 3s ease-in-out infinite;
}
@keyframes announcementFade {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}
/* Bounce */
.announcement-bar-text.anim-bounce {
    animation: announcementBounce 1s ease-in-out infinite;
}
@keyframes announcementBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
/* Slide */
.announcement-bar-text.anim-slide {
    animation: announcementSlide 2s ease-in-out infinite;
}
@keyframes announcementSlide {
    0% { transform: translateX(-100%); opacity: 0; }
    20% { transform: translateX(0); opacity: 1; }
    80% { transform: translateX(0); opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
}
/* Typewriter */
.announcement-bar-text.anim-typewriter {
    overflow: hidden;
    border-right: 2px solid currentColor;
    white-space: nowrap;
    display: inline-block;
    animation: announcementTypewriter 6s steps(60) infinite, announcementBlink 0.75s step-end infinite;
}
@keyframes announcementTypewriter {
    0% { max-width: 0; }
    50% { max-width: 100%; }
    90% { max-width: 100%; }
    100% { max-width: 0; }
}
@keyframes announcementBlink {
    50% { border-color: transparent; }
}
/* Pulse */
.announcement-bar-text.anim-pulse {
    animation: announcementPulse 1.5s ease-in-out infinite;
}
@keyframes announcementPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
/* Flash */
.announcement-bar-text.anim-flash {
    animation: announcementFlash 2s ease-in-out infinite;
}
@keyframes announcementFlash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
/* Swing */
.announcement-bar-text.anim-swing {
    transform-origin: top center;
    animation: announcementSwing 2s ease-in-out infinite;
}
@keyframes announcementSwing {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}
.announcement-bar-close {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: inherit;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 2;
}
.announcement-bar-close:hover {
    background: rgba(255,255,255,0.35);
}

/* Admin Preview Animations */
.announcement-preview-text {
    display: inline-block;
}
.preview-marquee {
    padding-left: 100%;
    animation: previewScroll 8s linear infinite;
}
@keyframes previewScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
.preview-fade {
    animation: previewFade 2s ease-in-out infinite;
}
@keyframes previewFade {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}
.preview-bounce {
    animation: previewBounce 0.8s ease-in-out infinite;
}
@keyframes previewBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}
.preview-slide {
    animation: previewSlide 2s ease-in-out infinite;
}
@keyframes previewSlide {
    0% { transform: translateX(-100%); opacity: 0; }
    20% { transform: translateX(0); opacity: 1; }
    80% { transform: translateX(0); opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
}
.preview-typewriter {
    overflow: hidden;
    border-right: 2px solid currentColor;
    white-space: nowrap;
    width: 0;
    animation: previewTypewriter 2.5s steps(30) infinite, previewBlink 0.75s step-end infinite;
}
@keyframes previewTypewriter {
    0% { width: 0; }
    50% { width: 100%; }
    90% { width: 100%; }
    100% { width: 0; }
}
@keyframes previewBlink {
    50% { border-color: transparent; }
}
.preview-pulse {
    animation: previewPulse 1.2s ease-in-out infinite;
}
@keyframes previewPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}
.preview-flash {
    animation: previewFlash 1.5s ease-in-out infinite;
}
@keyframes previewFlash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
.preview-swing {
    transform-origin: top center;
    animation: previewSwing 1.5s ease-in-out infinite;
}
@keyframes previewSwing {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}

/* Contact Page */
.contact-page {
    display: grid;
    gap: 30px;
}
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}
.contact-info-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--brand);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 12px;
}
.contact-info-card h3 {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.contact-info-card p {
    font-size: 15px;
    color: var(--text);
    margin: 0;
}
.contact-info-card a {
    color: var(--brand);
    text-decoration: none;
}
.contact-info-card a:hover {
    text-decoration: underline;
}
.contact-form-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
}
.contact-form-section h2 {
    margin-bottom: 20px;
    font-size: 20px;
}
.contact-form .form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.contact-form .form-group {
    margin-bottom: 16px;
}
.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 13px;
    color: var(--text-secondary);
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(139,34,82,0.1);
}
.contact-map {
    margin-top: 30px;
}
.contact-map h2 {
    margin-bottom: 16px;
    font-size: 20px;
}
.map-container {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}
.map-container iframe {
    width: 100%;
    height: 350px;
    border: 0;
}
@media (max-width: 768px) {
    .contact-form .form-row-2 {
        grid-template-columns: 1fr;
    }

    .product-details {
        display: flex;
        flex-direction: column;
    }
    .product-details h1 { order: 1; }
    .product-details .product-model { order: 2; }
    .product-details .product-price-block { order: 3; }
    .product-details .product-moq { order: 4; }
    .product-details .row { order: 5; }
    .product-details .size-selector { order: 6; }
    .product-details .product-description { order: 7; }
    .product-details .product-meta-row { order: 8; }
    .product-details .social-share-inline-mobile { order: 9; }
    .product-details .product-category-content { order: 10; }
}

/* ========================================
   PREMIUM ENTERPRISE HOMEPAGE SECTIONS
   ======================================== */

/* Trust Strip */
.premium-trust-strip {
    background: #fff;
    border-bottom: 1px solid #f1e5e7;
    padding: 28px 0;
}
.premium-trust-strip .container {
    max-width: 100%;
    padding-left: 5%;
    padding-right: 5%;
}
.trust-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    text-align: center;
    justify-content: center;
}
.trust-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fde8ef;
    border: 1px solid #e3d0d4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8B2252;
    font-size: 22px;
    flex-shrink: 0;
}
.trust-text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #8B2252;
    line-height: 1.3;
}
.trust-text span {
    font-size: 11px;
    color: #777;
    line-height: 1.3;
}

/* Section Headers */
.premium-section-header {
    text-align: center;
    margin-bottom: 36px;
}
.premium-section-header h2 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px;
    letter-spacing: 1px;
}
.premium-section-header .gold-line {
    width: 40px;
    height: 2px;
    background: #c8922a;
    margin: 0 auto;
}
.premium-section-header p {
    color: #666;
    font-size: 14px;
    margin-top: 8px;
}

/* Shop by Category */
.shop-by-category {
    padding: 0 0 60px;
    background: #fff;
    margin-top: 25px;
}
.shop-by-category .premium-section-header {
    margin-bottom: 0;
}
.category-scroll-wrapper {
    position: relative;
    width: 100%;
}
.category-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 24px 20px;
}
.category-track::-webkit-scrollbar { display: none; }
.category-card {
    flex: 0 0 auto;
    width: 170px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}
.category-card-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 12px;
    background: #1a1a1a;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.category-card:hover .category-card-img {
    border-color: #c8922a;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.category-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.category-card:hover .category-card-img img {
    transform: scale(1.08);
}
.category-card-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}
.category-card-line {
    width: 20px;
    height: 2px;
    background: #c8922a;
    margin: 0 auto;
    transition: width 0.3s ease;
}
.category-card:hover .category-card-line {
    width: 30px;
}
.category-arrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    color: var(--brand);
    border: 1px solid #e3d0d4;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
    z-index: 5;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.2s ease;
}
.category-arrow:hover {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}
.category-prev { left: 8px; }
.category-next { right: 8px; }
@media (min-width: 769px) {
    .category-arrow { display: flex; }
}

/* Featured Collections */
.featured-collections {
    background: #faf9f7;
}
.collections-slider-wrapper {
    position: relative;
    width: 100%;
}
.collections-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 6px 16px 14px;
}
.collections-track::-webkit-scrollbar { display: none; }
.collection-card {
    flex: 0 0 auto;
    width: 220px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #1a1a1a;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    display: block;
    max-height: 400px;
}
@supports not (aspect-ratio: 4 / 5) {
    .collection-card {
        height: 275px;
    }
}
.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.collection-card:hover img {
    transform: scale(1.06);
}
.collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 12px;
    transition: background 0.3s ease;
    box-sizing: border-box;
}
.collection-card:hover .collection-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.25) 50%, transparent 100%);
}
.collection-overlay h3 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 6px;
    color: #fff;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.collection-overlay .btn {
    align-self: flex-start;
    background: #c8922a;
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
.collection-card:hover .collection-overlay .btn {
    background: #a67c1e;
}
.collection-price {
    color: #fff;
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.collection-price .old-price {
    color: rgba(255,255,255,0.7);
    text-decoration: line-through;
    margin-left: 8px;
    font-size: 12px;
    font-weight: 500;
}
.login-to-see-price {
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    font-weight: 600;
    font-style: italic;
}
.collections-arrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    color: var(--brand);
    border: 1px solid #e3d0d4;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
    z-index: 5;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.2s ease;
}
.collections-arrow:hover {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}
.collections-prev { left: 8px; }
.collections-next { right: 8px; }
@media (min-width: 769px) {
    .collections-arrow { display: flex; }
}

/* Best Sellers */
.best-sellers {
    padding: 40px 0;
    background: #fff;
}
.products-grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.products-grid-6 .product-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #f1e5e7;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}
.products-grid-6 .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: #e3d0d4;
}
.product-card-img-wrap {
    position: relative;
    overflow: hidden;
    background: #faf9f7;
    height: auto;
}
.product-card-img-wrap img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}
.products-grid-6 .product-card:hover .product-card-img-wrap img {
    transform: scale(1.06);
}
.wishlist-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: 1px solid #e3d0d4;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s ease;
    z-index: 2;
}
.wishlist-btn:hover {
    color: #e74c3c;
    border-color: #e74c3c;
}
.product-card-body {
    padding: 10px;
}
.product-card-body h3 {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 4px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-card-body h3 a {
    color: inherit;
    text-decoration: none;
}
.product-card-body h3 a:hover {
    color: #8B2252;
}
.product-price {
    font-size: 14px;
    font-weight: 700;
    color: #8B2252;
    margin-bottom: 4px;
}
.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 6px;
}
.product-rating i {
    font-size: 11px;
    color: #c8922a;
}
.product-rating span {
    font-size: 11px;
    color: #999;
}
.product-moq {
    font-size: 11px;
    color: #888;
    margin-bottom: 6px;
}
.product-actions-row {
    display: flex;
    gap: 6px;
}
.product-actions-row .btn-sm {
    flex: 1;
    padding: 6px 8px;
    font-size: 11px;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    border: none;
    font-weight: 600;
}
.btn-quick-view {
    background: #f5f5f5;
    color: #333;
}
.btn-quick-view:hover {
    background: #e8e8e8;
}
.btn-add-cart {
    background: #8B2252;
    color: #fff;
}
.btn-add-cart:hover {
    background: #6a0d3b;
}
.best-sellers-slider-wrapper {
    position: relative;
    width: 100%;
}
.best-sellers-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 6px 16px 14px;
}
.best-sellers-track::-webkit-scrollbar { display: none; }
.best-sellers-track .product-card {
    flex: 0 0 auto;
    width: 180px;
}
.best-sellers-arrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    color: var(--brand);
    border: 1px solid #e3d0d4;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
    z-index: 5;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.2s ease;
}
.best-sellers-arrow:hover {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}
.best-sellers-prev { left: 8px; }
.best-sellers-next { right: 8px; }
@media (min-width: 769px) {
    .best-sellers-arrow { display: flex; }
}

/* Shop Quick Links */
.shop-quick-links {
    padding: 40px 0;
    background: #faf9f7;
}
.shop-quick-links .premium-section-header {
    text-align: center;
    margin-bottom: 24px;
}
.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}
.quick-link-card {
    background: #fff;
    border: 1px solid #f1e5e7;
    border-radius: 12px;
    padding: 18px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100px;
}
.quick-link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: #e3d0d4;
}
.quick-link-card h4 {
    margin: 0 0 10px;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
}
.quick-link-card span {
    font-size: 13px;
    font-weight: 600;
    color: #8B2252;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Trending Now Slider */
.trending-slider-wrapper {
    position: relative;
    width: 100%;
}
.trending-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 24px 20px;
}
.trending-track::-webkit-scrollbar { display: none; }
.trending-track .product-card {
    flex: 0 0 auto;
    width: 180px;
}
.trending-arrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    color: var(--brand);
    border: 1px solid #e3d0d4;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
    z-index: 5;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.2s ease;
}
.trending-arrow:hover {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}
.trending-prev { left: 8px; }
.trending-next { right: 8px; }
@media (min-width: 769px) {
    .trending-arrow { display: flex; }
}

/* Wholesale Value */
.wholesale-value {
    background: #1a1a1a;
    padding: 70px 0;
    color: #fff;
}
.wholesale-value .container {
    max-width: 100%;
    padding-left: 5%;
    padding-right: 5%;
}
.wholesale-value-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.wholesale-value-content h2 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 16px;
    line-height: 1.2;
    color: #fff;
}
.wholesale-value-content h2 span {
    color: #c8922a;
}
.wholesale-value-content p {
    color: #bbb;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}
.wholesale-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}
.wholesale-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #ddd;
}
.wholesale-features li i {
    color: #c8922a;
    font-size: 14px;
}
.wholesale-value-img {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    max-height: 420px;
}
.wholesale-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}
.wholesale-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.wholesale-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #c8922a;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Shop by Occasion */
.shop-by-occasion {
    padding: 40px 0;
    background: #fff;
}
.occasions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.occasion-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: #1a1a1a;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    display: block;
}
.occasion-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.occasion-card:hover img {
    transform: scale(1.05);
}
.occasion-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: background 0.3s ease;
}
.occasion-card:hover .occasion-overlay {
    background: rgba(0,0,0,0.55);
}
.occasion-overlay h3 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 6px;
    color: #fff;
}
.occasion-overlay span {
    font-size: 12px;
    font-weight: 600;
    color: #c8922a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.promo-banner-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.promo-banner-content h4 {
    color: #c8922a;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 12px;
}
.promo-banner-content h2 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.2;
}
.promo-banner-content p {
    color: #bbb;
    font-size: 16px;
    margin-bottom: 24px;
}
.promo-banner-content .btn {
    background: #c8922a;
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.promo-banner-content .btn:hover {
    background: #a67c1e;
}
.promo-banner-img {
    display: flex;
    align-items: center;
    justify-content: center;
}
.promo-banner-img img {
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}
.promo-slideshow {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 350px;
}
.promo-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Why Choose Us */
.why-choose-us {
    padding: 40px 0;
    background: #faf9f7;
}
.why-choose-us .container {
    max-width: 100%;
    padding-left: 5%;
    padding-right: 5%;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.why-card {
    text-align: center;
    padding: 22px 14px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #f1e5e7;
    transition: all 0.3s ease;
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
    border-color: #e3d0d4;
}
.why-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fde8ef;
    border: 1px solid #e3d0d4;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: #8B2252;
    font-size: 24px;
}
.why-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: #8B2252;
    margin: 0 0 6px;
}
.why-card p {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    margin: 0;
}

/* Testimonials */
.customer-love {
    padding: 60px 0;
    background: #fff;
}
.testimonials-slider-wrapper {
    position: relative;
    width: 100%;
}
.testimonials-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 24px 20px;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonial-card {
    flex: 0 0 auto;
    width: 320px;
    background: #faf9f7;
    border: 1px solid #f1e5e7;
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 14px;
}
.testimonial-stars i {
    color: #c8922a;
    font-size: 14px;
}
.testimonial-text {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 0 0 16px;
    font-style: italic;
}
.testimonial-author {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}
.testimonial-role {
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}
.testimonials-arrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    color: var(--brand);
    border: 1px solid #e3d0d4;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
    z-index: 5;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.2s ease;
}
.testimonials-arrow:hover {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}
.testimonials-prev { left: 8px; }
.testimonials-next { right: 8px; }
@media (min-width: 769px) {
    .testimonials-arrow { display: flex; }
}

/* Trusted Retailers */
.trusted-retailers {
    padding: 50px 0;
    background: #faf9f7;
    border-top: 1px solid #f1e5e7;
    border-bottom: 1px solid #f1e5e7;
}
.retailers-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}
.retailer-mark {
    font-size: 18px;
    font-weight: 700;
    color: #999;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    max-width: 220px;
    text-align: center;
    line-height: 1.3;
    word-break: break-word;
}
.retailer-content {
    text-align: left;
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}
.retailer-content p {
    margin: 0 0 12px;
}
.retailer-content p:last-child {
    margin-bottom: 0;
}
.retailer-mark:hover {
    opacity: 1;
    color: #1a1a1a;
}

/* Instagram */
.instagram-feed {
    padding: 60px 0;
    background: #fff;
}
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.instagram-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: #f5f5f5;
    cursor: pointer;
}
.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.instagram-item:hover img {
    transform: scale(1.06);
}
.instagram-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #fff;
    font-size: 20px;
}
.instagram-item:hover .instagram-item-overlay {
    opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .collections-track { gap: 16px; }
    .collection-card { width: 180px; }
    .best-sellers-track { gap: 12px; }
    .best-sellers-track .product-card { width: 160px; }
    .trending-track { gap: 12px; }
    .trending-track .product-card { width: 160px; }
    .testimonials-track { gap: 16px; }
    .testimonial-card { width: 280px; }
    .products-grid-6 { grid-template-columns: repeat(3, 1fr); }
    .why-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .occasions-grid { grid-template-columns: repeat(2, 1fr); }
    .instagram-grid { grid-template-columns: repeat(3, 1fr); }
    .wholesale-value-inner { gap: 30px; }
    .wholesale-value-content h2 { font-size: 26px; }
}

@media (max-width: 768px) {
    .trust-strip-inner { flex-wrap: nowrap; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 4px; justify-content: flex-start; }
    .trust-strip-inner::-webkit-scrollbar { display: none; }
    .trust-item { flex: 0 0 auto; width: 160px; scroll-snap-align: start; }
    .trust-icon { width: 48px; height: 48px; font-size: 18px; }
    .collections-track { gap: 12px; padding: 6px 16px 14px; }
    .collection-card { width: 160px; }
    .collection-overlay { padding: 14px; }
    .collection-overlay h3 { font-size: 15px; }
    .best-sellers-track { gap: 10px; padding: 6px 16px 14px; }
    .best-sellers-track .product-card { width: 150px; }
    .trending-track { gap: 10px; padding: 6px 16px 14px; }
    .trending-track .product-card { width: 150px; }
    .testimonials-track { gap: 10px; padding: 6px 16px 14px; }
    .testimonial-card { width: 260px; padding: 20px; }
    .product-card-body { padding: 10px; }
    .product-card-body h3 { font-size: 12px; }
    .product-price { font-size: 13px; }
    .wholesale-value-inner { grid-template-columns: 1fr; }
    .wholesale-value-img { order: -1; }
    .wholesale-slideshow { height: 260px; }
    .occasions-grid { grid-template-columns: repeat(2, 1fr); }
    .promo-banner-inner { grid-template-columns: 1fr; text-align: center; }
    .promo-banner-img { display: flex; }
    .promo-slideshow { height: 260px; }
    .promo-banner-content h2 { font-size: 26px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .why-icon { width: 52px; height: 52px; font-size: 20px; }
    .instagram-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .category-card { width: 150px; }
    .category-card-img { width: 120px; height: 120px; }
}

@media (max-width: 480px) {
    .trust-strip-inner { gap: 12px; }
    .trust-item { width: 140px; }
    .trust-icon { width: 44px; height: 44px; font-size: 16px; }
    .collection-card { width: 150px; }
    .best-sellers-track .product-card { width: 150px; }
    .trending-track .product-card { width: 150px; }
    .testimonial-card { width: 240px; }
    .products-grid-6 { grid-template-columns: repeat(2, 1fr); }
    .occasions-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .why-icon { width: 52px; height: 52px; font-size: 20px; }
    .instagram-grid { grid-template-columns: repeat(2, 1fr); }
    .product-actions-row { flex-direction: column; }
}

/* View All Button */
.view-all-wrap {
    text-align: center;
    margin-top: 32px;
}
.view-all-wrap .btn {
    background: transparent;
    color: #8B2252;
    border: 2px solid #8B2252;
    padding: 10px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
}
.view-all-wrap .btn:hover {
    background: #8B2252;
    color: #fff;
}

/* Carousel Arrows */
.carousel-arrows {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}
.carousel-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e3d0d4;
    background: #fff;
    color: #8B2252;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}
.carousel-arrow:hover {
    background: #8B2252;
    color: #fff;
    border-color: #8B2252;
}
