html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #faf8f5;
    color: #2c3531;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-bottom: 0;
}

/* Header Styles */
.main-header {
    background-color: #0f2219;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    padding: 12px 20px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.header-logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    display: block;
}

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

.brand-title {
    color: #d4af37;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1;
}

.brand-sub {
    color: #ffffff;
    font-size: 9px;
    letter-spacing: 1.5px;
}

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

.icon-btn {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    width: 24px;
    height: 24px;
}

.cart-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: #193326;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    border: 1px solid #d4af37;
}

.cart-btn svg {
    width: 16px;
    height: 16px;
}

.cart-badge {
    background-color: #d4af37;
    color: #0f2219;
    padding: 1px 6px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: bold;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background-color: #0f2219;
    border-bottom: 2px solid #d4af37;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px 25px;
    margin-left: 5%;
    text-align: left;
}

.hero h1 {
    font-size: 30px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.85);
}

.shop-btn {
    display: inline-block;
    background-color: #d4af37;
    color: #0f2219;
    padding: 10px 24px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    border-radius: 4px;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
    .hero {
        min-height: auto;
        height: auto;
        padding: 40px 0;
    }
    .hero-bg img {
        object-fit: contain;
    }
    .hero-content {
        margin-left: 15px;
        padding: 10px;
    }
    .hero h1 {
        font-size: 24px;
    }
}

/* Category Strip Wrapper */
.category-strip-wrapper {
    position: relative;
    background-color: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid #e8e4dc;
}

.category-stories {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 25px;
    overflow-x: auto;
    padding: 5px 25px;
    max-width: 1200px;
    margin: 0 auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.category-stories::-webkit-scrollbar {
    display: none;
}

.story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    min-width: 90px;
    flex-shrink: 0;
}

/* 25% Bada Transparent Image Container */
.story-icon-clean {
    width: 95px;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    background: transparent;
}

.story-img-only {
    width: 100%;
    height: 100%;
    max-height: 90px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.15));
}

.story-label {
    color: #0f2219;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.2;
    white-space: nowrap;
}

/* Professional Navigation Arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background-color: #0f2219;
    color: #d4af37;
    border: 1px solid #d4af37;
    border-radius: 50%;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 2px;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.nav-arrow:hover {
    opacity: 1;
}

.left-arrow {
    left: 4px;
}

.right-arrow {
    right: 4px;
}

/* Hide navigation arrows on wider desktop screens if everything fits */
@media (min-width: 992px) {
    .nav-arrow {
        display: none;
    }
}

/* Product Sections */
.products-section {
    padding: 30px 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 20px;
    color: #0f2219;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.product-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e8e4dc;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.product-img {
    width: 100%;
    height: 400px;
    background-color: #f7f7f7;
    position: relative;
    overflow: hidden;
}

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

.product-info {
    padding: 15px;
}

.product-info h3 {
    font-size: 14px;
    color: #0f2219;
    margin-bottom: 6px;
}

.price {
    font-size: 16px;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 12px;
}

.size-header {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    margin-bottom: 5px;
}

.open-size-chart {
    color: #0f2219;
    text-decoration: underline;
}

.size-dropdown {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 12px;
    font-size: 12px;
}

.add-to-cart-btn {
    display: block;
    background-color: #0f2219;
    color: #d4af37;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 12px;
    border-radius: 4px;
}

/* Cart Drawer CSS */
.cart-overlay, .size-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 1000;
}

.cart-overlay.active, .size-modal-overlay.active {
    display: block;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -350px;
    width: 320px;
    height: 100%;
    background: #ffffff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

.cart-drawer.active {
    right: 0;
}

.cart-header {
    padding: 15px;
    background: #0f2219;
    color: #d4af37;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
}

.cart-body {
    padding: 15px;
    flex-grow: 1;
    overflow-y: auto;
}

.cart-footer {
    padding: 15px;
    border-top: 1px solid #ddd;
}

.total-row {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 12px;
}

.checkout-btn {
    width: 100%;
    background: #25d366;
    color: #fff;
    border: none;
    padding: 12px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
}

/* Size Modal CSS */
.size-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 450px;
    background: #ffffff;
    border-radius: 8px;
    display: none;
    z-index: 1002;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.size-modal.active {
    display: block;
}

.size-modal-header {
    padding: 12px 15px;
    background: #0f2219;
    color: #d4af37;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-size-modal {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
}

.size-modal-body {
    padding: 15px;
}

.size-table {
    width: 100%;
    border-collapse: collapse;
}

.size-table th, .size-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
    font-size: 13px;
}

.size-table th {
    background: #0f2219;
    color: #ffffff;
}

@media (min-width: 768px) {
    .hero {
        min-height: 500px;
    }
    .hero h1 {
        font-size: 46px;
    }
}

/* Mobile View: High-Ratio Image & Compact Info Layout */
@media (max-width: 767px) {
    .product-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding: 0 8px !important;
    }

    .product-card {
        border-radius: 6px !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }

    .product-img {
        height: 230px !important;
        width: 100% !important;
    }

    .product-img img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .product-info {
        padding: 6px 6px 8px 6px !important;
    }

    .product-info h3 {
        font-size: 11px !important;
        margin: 0 0 2px 0 !important;
        line-height: 1.2 !important;
        height: auto !important;
        max-height: 26px !important;
        overflow: hidden !important;
    }

    .price {
        font-size: 12.5px !important;
        margin: 1px 0 5px 0 !important;
        line-height: 1.1 !important;
    }

    .size-header {
        font-size: 9px !important;
        margin-bottom: 3px !important;
    }

    .open-size-chart {
        font-size: 8.5px !important;
    }

    .size-dropdown {
        font-size: 9.5px !important;
        padding: 3px 4px !important;
        height: 26px !important;
        margin-bottom: 5px !important;
    }

    .add-to-cart-btn {
        font-size: 9.5px !important;
        padding: 6px 2px !important;
        letter-spacing: 0.3px !important;
    }
}

/* ===== SEARCH OVERLAY ===== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 34, 25, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 120px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-box {
    width: 90%;
    max-width: 700px;
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    padding: 15px 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 2px solid #d4af37;
    transform: translateY(-30px);
    transition: transform 0.4s ease;
}

.search-overlay.active .search-box {
    transform: translateY(0);
}

.search-icon-inside {
    width: 22px;
    height: 22px;
    color: #b8860b;
    flex-shrink: 0;
    margin-right: 12px;
}

#searchInput {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    padding: 8px 0;
    color: #0f2219;
    background: transparent;
    font-family: inherit;
    letter-spacing: 0.5px;
}

#searchInput::placeholder {
    color: #999;
    font-style: italic;
}

.close-search-btn {
    background: none;
    border: none;
    font-size: 28px;
    color: #0f2219;
    cursor: pointer;
    line-height: 1;
    padding: 0 5px;
    transition: color 0.2s;
}

.close-search-btn:hover {
    color: #d4af37;
}

/* ===== SEARCH RESULTS ===== */
.search-results {
    position: fixed;
    top: 200px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 700px;
    max-height: 60vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-results.active {
    opacity: 1;
    visibility: visible;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    color: inherit;
}

.search-result-item:hover {
    background: #fdf9ee;
}

.search-result-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #eee;
}

.search-result-info h4 {
    margin: 0 0 4px 0;
    font-size: 15px;
    color: #0f2219;
    font-weight: 600;
}

.search-result-info .result-price {
    color: #b8860b;
    font-weight: bold;
    font-size: 14px;
}

.search-result-info .result-category {
    display: block;
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 3px;
}

.no-results {
    padding: 40px 20px;
    text-align: center;
    color: #888;
    font-style: italic;
}

.no-results span {
    display: block;
    font-size: 40px;
    margin-bottom: 10px;
}

.product-card.highlight-match {
    animation: highlightPulse 2s ease;
}

@keyframes highlightPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
    50% { box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.5); }
}

@media (max-width: 600px) {
    .search-overlay {
        padding-top: 80px;
    }
    .search-box {
        padding: 12px 18px;
        border-radius: 12px;
    }
    #searchInput {
        font-size: 14px;
    }
    .search-results {
        top: 160px;
        max-height: 70vh;
    }
    .search-result-item img {
        width: 50px;
        height: 50px;
    }
}

/* ============================================
   ===== FOOTER (BASE) =====
   ============================================ */
.main-footer {
    background: #0f2219;
    color: #e8e8e8;
    padding: 60px 20px 0;
    margin-top: 60px;
    border-top: 3px solid #d4af37;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr 1.3fr;
    gap: 25px;
    padding-bottom: 40px;
}

.footer-col {
    min-width: 0;
}

/* Brand Column */
.footer-brand .footer-logo {
    font-size: 28px;
    letter-spacing: 4px;
    color: #d4af37;
    margin: 0 0 4px 0;
    font-weight: 700;
}

.footer-brand .footer-tagline {
    display: block;
    font-size: 11px;
    letter-spacing: 3px;
    color: #b8860b;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #bbb;
    margin-bottom: 20px;
}

/* Social Icons */
.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #d4af37;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: #d4af37;
    color: #0f2219;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}

/* Footer Headings */
.footer-heading {
    font-size: 14px;
    letter-spacing: 2.5px;
    color: #d4af37;
    margin: 0 0 20px 0;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #d4af37;
}

/* Footer Links */
.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #d4af37;
    padding-left: 8px;
}

/* Footer Contact */
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
    color: #bbb;
}

.footer-contact svg {
    color: #d4af37;
    flex-shrink: 0;
}

.footer-contact a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #d4af37;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: #999;
}

.footer-bottom strong {
    color: #d4af37;
    letter-spacing: 1px;
}

.footer-credit {
    font-style: italic;
    font-size: 12px !important;
}

/* ============================================
   ===== FOOTER — TABLET (2 columns) =====
   ============================================ */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px 25px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* ============================================
   ===== FOOTER — MOBILE (compact) =====
   ============================================ */
@media (max-width: 600px) {
    .main-footer {
        padding: 35px 18px 0;
        margin-top: 40px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 25px 20px;
        padding-bottom: 25px;
    }
    
    /* Brand full width */
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        padding-bottom: 22px;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        margin-bottom: 5px;
    }
    
    .footer-brand .footer-logo {
        font-size: 24px;
        letter-spacing: 3px;
    }
    
    .footer-brand .footer-tagline {
        font-size: 10px;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }
    
    .footer-desc {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .footer-socials {
        justify-content: center;
        gap: 10px;
    }
    
    .footer-socials a {
        width: 38px;
        height: 38px;
    }
    
    .footer-socials svg {
        width: 18px;
        height: 18px;
    }
    
    /* Headings */
    .footer-heading {
        font-size: 12px;
        letter-spacing: 1.8px;
        margin-bottom: 14px;
        padding-bottom: 7px;
    }
    
    .footer-heading::after {
        width: 24px;
    }
    
    /* Links */
    .footer-links li {
        margin-bottom: 9px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    /* Contact — full width below */
    .footer-contact-col {
        grid-column: 1 / -1;
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        margin-top: 5px;
    }
    
    .footer-contact-col .footer-heading {
        display: inline-block;
    }
    
    .footer-contact-col .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 20px;
    }
    
    .footer-contact li {
        margin-bottom: 0;
        font-size: 13px;
        gap: 6px;
    }
    
    .footer-contact svg {
        width: 15px;
        height: 15px;
    }
    
    /* Footer bottom */
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 18px 10px;
        gap: 8px;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
    
    .footer-credit {
        font-size: 11px !important;
    }
}

/* ============================================
   ===== WISHLIST STYLES (NEW) =====
   ============================================ */

/* Wishlist Button (Header) */
.wishlist-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    color: #ffffff;
    background-color: #193326;
    border: 1px solid #d4af37;
}

.wishlist-btn svg {
    width: 16px;
    height: 16px;
}

.wishlist-btn:hover {
    background: #d4af37;
    color: #0f2219;
}

.wishlist-btn:hover svg {
    stroke: #0f2219;
}

.wishlist-badge {
    background-color: #d4af37;
    color: #0f2219;
    padding: 1px 6px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: bold;
    min-width: 16px;
    text-align: center;
}

.wishlist-btn:hover .wishlist-badge {
    background-color: #0f2219;
    color: #d4af37;
}

/* Wishlist Heart (Product Card) */
.product-img {
    position: relative;
    overflow: hidden;
}

.wishlist-heart {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 2;
    padding: 0;
}

.wishlist-heart svg {
    width: 20px;
    height: 20px;
    color: #0f2219;
    transition: all 0.3s ease;
}

.wishlist-heart:hover {
    transform: scale(1.1);
    background: #fff;
}

.wishlist-heart.active svg {
    fill: #e74c3c;
    stroke: #e74c3c;
    animation: heartBeat 0.4s ease;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.3); }
    50% { transform: scale(1); }
    75% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Wishlist Drawer Items */
.wishlist-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 10px;
    gap: 10px;
}

.wishlist-item-row h4 {
    color: #0f2219;
    margin: 0 0 3px 0;
    font-size: 14px;
}

.wishlist-item-row .wishlist-price {
    color: #b8860b;
    font-size: 13px;
    font-weight: bold;
}

.wishlist-item-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

.wishlist-item-actions button {
    background: #0f2219;
    color: #d4af37;
    border: none;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
}

.wishlist-item-actions button:hover {
    background: #d4af37;
    color: #0f2219;
}

.wishlist-item-actions .remove-wish {
    background: transparent;
    color: #e74c3c;
    font-size: 20px;
    padding: 0;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.wishlist-item-actions .remove-wish:hover {
    background: #e74c3c;
    color: #fff;
}

/* Wishlist Drawer heading accent */
#wishlistDrawer .cart-header {
    background: #0f2219;
}

/* Mobile Wishlist */
@media (max-width: 600px) {
    .wishlist-btn {
        padding: 4px 8px;
    }
    .wishlist-btn span:not(.wishlist-badge) {
        display: none;
    }
    .wishlist-heart {
        width: 32px;
        height: 32px;
        top: 8px;
        right: 8px;
    }
    .wishlist-heart svg {
        width: 16px;
        height: 16px;
    }
    .wishlist-item-actions button {
        font-size: 10px;
        padding: 5px 8px;
    }
}

/* ============================================
   ===== VIEW MORE BUTTON =====
   ============================================ */
.view-more-wrap {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e8e4dc;
}

.view-more-btn {
    background: transparent;
    color: #0f2219;
    border: 2px solid #0f2219;
    padding: 12px 32px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.view-more-btn:hover {
    background: #0f2219;
    color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(15, 34, 25, 0.2);
}

/* Hide extra products by default (4 dikhe, baaki hidden) */
.products-section .product-card:nth-child(n+5) {
    display: none;
}

/* ============================================
   ===== VIEW ALL MODAL =====
   ============================================ */
.view-all-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 34, 25, 0.85);
    backdrop-filter: blur(6px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.view-all-overlay.active {
    opacity: 1;
    visibility: visible;
}

.view-all-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 92%;
    max-width: 1200px;
    max-height: 88vh;
    background: #faf8f5;
    border-radius: 12px;
    z-index: 9999;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.view-all-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.va-header {
    background: #0f2219;
    color: #d4af37;
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #d4af37;
}

.va-header h3 {
    margin: 0;
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 700;
}

.va-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s;
}

.va-close:hover {
    color: #d4af37;
}

.va-body {
    padding: 25px;
    overflow-y: auto;
    flex-grow: 1;
}

.va-body .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

/* Show ALL products inside view-all modal */
.va-body .product-card {
    display: flex !important;
    flex-direction: column;
}

/* ============================================
   ===== QUICK VIEW MODAL =====
   ============================================ */
.quick-view-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 34, 25, 0.9);
    backdrop-filter: blur(8px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.quick-view-overlay.active {
    opacity: 1;
    visibility: visible;
}

.quick-view-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 92%;
    max-width: 1000px;
    max-height: 90vh;
    background: #fff;
    border-radius: 12px;
    z-index: 10001;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.quick-view-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.qv-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #0f2219;
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.qv-close:hover {
    background: #d4af37;
    color: #0f2219;
}

.qv-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    max-height: 90vh;
}

.qv-left {
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 400px;
}

.qv-media {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qv-media img,
.qv-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 90vh;
}

.qv-right {
    padding: 40px 35px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.qv-right h2 {
    font-size: 24px;
    color: #0f2219;
    margin: 0 0 12px 0;
    letter-spacing: 1px;
    font-weight: 700;
}

.qv-price {
    font-size: 26px;
    color: #d4af37;
    font-weight: 800;
    margin-bottom: 20px;
}

.qv-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.qv-size-wrap {
    margin-bottom: 25px;
}

.qv-size-wrap label {
    display: block;
    font-size: 13px;
    color: #0f2219;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.qv-size-wrap select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    background: #fff;
}

.qv-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.qv-add-cart {
    flex: 1;
    background: #0f2219;
    color: #d4af37;
    border: none;
    padding: 16px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
    font-family: inherit;
}

.qv-add-cart:hover {
    background: #d4af37;
    color: #0f2219;
}

.qv-wishlist {
    background: transparent;
    border: 2px solid #0f2219;
    color: #0f2219;
    width: 54px;
    font-size: 22px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
}

.qv-wishlist:hover,
.qv-wishlist.active {
    background: #e74c3c;
    color: #fff;
    border-color: #e74c3c;
}

/* ============================================
   ===== MOBILE =====
   ============================================ */
@media (max-width: 767px) {
    /* Mobile pe sirf 2 products dikhein */
    .products-section .product-card:nth-child(n+3) {
        display: none;
    }
    
    .qv-content {
        grid-template-columns: 1fr;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .qv-left {
        min-height: 280px;
        max-height: 350px;
    }
    
    .qv-right {
        padding: 25px 20px;
    }
    
    .qv-right h2 {
        font-size: 18px;
    }
    
    .qv-price {
        font-size: 20px;
    }
    
    .va-body {
        padding: 15px;
    }
    
    .va-body .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .view-more-btn {
        padding: 10px 20px;
        font-size: 11px;
    }
}

/* ============================================
   ===== CATEGORY STRIP — MOBILE OPTIMIZATION =====
   ============================================ */

@media (max-width: 991px) {
    /* Arrows mobile pe gayab */
    .category-strip-wrapper .nav-arrow {
        display: none !important;
    }
    
    /* Wrapper relative position */
    .category-strip-wrapper {
        position: relative;
    }
    
    /* Right side fade — hint ki aur categories hain */
    .category-strip-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 60px;
        height: 100%;
        background: linear-gradient(to right, rgba(255,255,255,0) 0%, #ffffff 90%);
        pointer-events: none;
        z-index: 5;
    }
    
    /* Left side fade — sirf jab user scroll kare */
    .category-strip-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 40px;
        height: 100%;
        background: linear-gradient(to left, rgba(255,255,255,0) 0%, #ffffff 90%);
        pointer-events: none;
        z-index: 5;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .category-strip-wrapper.scrolled::before {
        opacity: 1;
    }
    
    /* Right padding — last category fade ke andar na chhupe */
    .category-stories {
        padding-right: 60px !important;
    }
}

/* ============================================
   ===== SWIPE HINT TEXT (Pehli baar ke liye) =====
   ============================================ */

.swipe-hint {
    display: none;
    text-align: center;
    font-size: 10px;
    color: #999;
    letter-spacing: 2px;
    padding: 6px 0 2px;
    text-transform: uppercase;
    font-weight: 600;
    animation: swipeHintPulse 2s ease-in-out infinite;
}

@keyframes swipeHintPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

@media (max-width: 991px) {
    .swipe-hint {
        display: block;
    }
}

/* ============================================
   ===== LOADING MESSAGE (Firebase se load) =====
   ============================================ */
.loading-msg {
    text-align: center;
    padding: 40px 20px;
    color: #888;
    font-style: italic;
    font-size: 14px;
    grid-column: 1 / -1;
}

.empty-msg {
    text-align: center;
    padding: 40px 20px;
    color: #888;
    font-style: italic;
    font-size: 14px;
    grid-column: 1 / -1;
}

/* ============================================
   ===== SOLD OUT BADGE =====
   ============================================ */
.sold-out-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    background: rgba(231, 76, 60, 0.95);
    color: #fff;
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 3px;
    border-radius: 4px;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    white-space: nowrap;
}

.product-card.is-sold-out .product-img img {
    filter: grayscale(70%) brightness(0.7);
}

.product-card.is-sold-out .add-to-cart-btn {
    background: #999 !important;
    color: #ddd !important;
    cursor: not-allowed !important;
    pointer-events: none;
}

.product-card.is-sold-out .size-dropdown {
    opacity: 0.5;
    pointer-events: none;
}

/* ============================================
   ===== LOW STOCK BADGE =====
   ============================================ */
.low-stock-badge {
    display: inline-block;
    background: #ff9800;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    animation: pulseWarning 2s ease-in-out infinite;
}

@keyframes pulseWarning {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* ============================================
   ===== VIEW MY ORDERS BUTTON (Cart) =====
   ============================================ */
.view-orders-btn {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    background: #faf8f5;
    border: 1px solid #e8e4dc;
    border-left: 4px solid #d4af37;
    border-radius: 6px;
    color: #0f2219;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-align: left;
}

.view-orders-btn:hover {
    background: #0f2219;
    color: #d4af37;
    border-left-color: #d4af37;
    transform: translateX(3px);
}

/* ============================================
   ===== MY ORDERS MODAL =====
   ============================================ */
.my-orders-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 34, 25, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 10002;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.my-orders-overlay.active {
    opacity: 1;
    visibility: visible;
}

.my-orders-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 92%;
    max-width: 600px;
    max-height: 92vh;
    background: #ffffff;
    border-radius: 12px;
    z-index: 10003;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.my-orders-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.my-orders-header {
    background: #0f2219;
    color: #d4af37;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #d4af37;
    flex-shrink: 0;
}

.my-orders-header h3 {
    margin: 0;
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 700;
}

.my-orders-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s;
}

.my-orders-close:hover {
    color: #d4af37;
}

.my-orders-body {
    padding: 22px;
    overflow-y: auto;
    flex-grow: 1;
}

/* Phone input section */
.phone-input-section {
    text-align: center;
    padding: 10px 0;
}

.phone-input-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 18px;
    line-height: 1.5;
}

.phone-input-box {
    display: flex;
    gap: 10px;
    max-width: 450px;
    margin: 0 auto;
}

.phone-input-box input {
    flex: 1;
    padding: 13px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    letter-spacing: 1px;
    background: #fafafa;
    transition: all 0.3s ease;
}

.phone-input-box input:focus {
    outline: none;
    border-color: #d4af37;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.phone-input-box button {
    padding: 13px 22px;
    background: #0f2219;
    color: #d4af37;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.phone-input-box button:hover {
    background: #d4af37;
    color: #0f2219;
}

/* Orders list section */
.orders-header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #faf8f5;
    border-radius: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 8px;
}

.orders-phone-info {
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.orders-phone-info strong {
    color: #0f2219;
    font-family: monospace;
    letter-spacing: 1px;
}

.change-phone-btn {
    background: transparent;
    color: #d4af37;
    border: none;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
    font-family: inherit;
}

.orders-count {
    font-size: 12px;
    color: #888;
    font-weight: 600;
}

.orders-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Order card */
.my-order-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    overflow: hidden;
    border: 1px solid #e8e4dc;
}

.my-order-card-header {
    background: #faf8f5;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    border-bottom: 1px solid #eee;
}

.my-order-id {
    font-family: monospace;
    font-size: 14px;
    color: #0f2219;
    font-weight: 700;
    letter-spacing: 1px;
}

.my-order-date {
    font-size: 11px;
    color: #888;
    margin-top: 2px;
}

.my-order-status {
    padding: 5px 12px;
    border-radius: 20px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.my-order-body {
    padding: 14px 18px;
}

.my-order-items-preview {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.5;
}

.my-order-items-preview strong {
    color: #0f2219;
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
}

.my-order-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #eee;
    font-size: 13px;
    color: #666;
}

.my-order-total-row strong {
    color: #d4af37;
    font-size: 18px;
}

.my-order-toggle {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: none;
    border-top: 1px solid #eee;
    font-size: 11px;
    font-weight: 700;
    color: #0f2219;
    letter-spacing: 1px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
}

.my-order-toggle:hover {
    background: #faf8f5;
    color: #d4af37;
}

.my-order-details {
    display: none;
    padding: 14px 18px;
    background: #faf8f5;
    border-top: 1px solid #eee;
}

.my-order-details.show {
    display: block;
}

.my-order-detail-section {
    margin-bottom: 15px;
}

.my-order-detail-section:last-child {
    margin-bottom: 0;
}

.my-order-detail-section h4 {
    font-size: 11px;
    color: #0f2219;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 700;
    padding-bottom: 5px;
    border-bottom: 1px solid #e8e4dc;
}

.my-order-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 7px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 12px;
    gap: 8px;
}

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

.my-order-detail-item strong {
    color: #0f2219;
    display: block;
    margin-bottom: 2px;
}

.my-order-detail-size {
    font-size: 11px;
    color: #888;
}

.my-order-detail-price {
    text-align: right;
    color: #666;
    white-space: nowrap;
}

.my-order-detail-price strong {
    color: #b8860b;
    display: block;
    margin-top: 2px;
}

.my-order-detail-section p {
    font-size: 12px;
    color: #555;
    margin-bottom: 5px;
    line-height: 1.5;
}

.my-order-detail-section p strong {
    color: #0f2219;
}

.my-order-contact-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
    background: #25d366;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.my-order-contact-btn:hover {
    background: #1ebe5a;
}

/* Loading */
.orders-loading {
    text-align: center;
    padding: 30px 20px;
    color: #888;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f0f0f0;
    border-top-color: #d4af37;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Empty state */
.my-orders-empty {
    text-align: center;
    padding: 30px 20px;
    color: #888;
}

.my-orders-empty-icon {
    font-size: 50px;
    margin-bottom: 12px;
}

.my-orders-empty h3 {
    color: #0f2219;
    font-size: 16px;
    margin-bottom: 8px;
}

.my-orders-empty p {
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
}

.my-orders-empty .small {
    font-size: 12px;
    color: #888;
}

.my-orders-shop-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background: #0f2219;
    color: #d4af37;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.5px;
    cursor: pointer;
    font-family: inherit;
}

/* ============================================
   ===== MOBILE — MY ORDERS =====
   ============================================ */
@media (max-width: 600px) {
    .my-orders-modal {
        width: 95%;
        max-height: 92vh;
    }
    
    .my-orders-header {
        padding: 15px 18px;
    }
    
    .my-orders-header h3 {
        font-size: 14px;
    }
    
    .my-orders-body {
        padding: 18px;
    }
    
    .phone-input-box {
        flex-direction: column;
    }
    
    .phone-input-box button {
        width: 100%;
    }
    
    .my-order-card-header {
        padding: 12px 15px;
    }
    
    .my-order-body {
        padding: 12px 15px;
    }
    
    .my-order-details {
        padding: 12px 15px;
    }
    
    .my-order-detail-item {
        flex-direction: column;
        gap: 4px;
    }
    
    .my-order-detail-price {
        text-align: left;
    }
    
    /* Mobile me orders ki height chhoti */
    .my-order-card {
        font-size: 12px;
    }
    
    /* Low stock badge chhota */
    .low-stock-badge {
        font-size: 9px;
        padding: 2px 8px;
    }
    
    /* Sold out badge chhota */
    .sold-out-badge {
        font-size: 12px;
        padding: 6px 15px;
        letter-spacing: 2px;
    }
}
/* ============================================
   ===== ORDER MODAL =====
   ============================================ */
.order-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 34, 25, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 10002;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.order-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.order-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 92%;
    max-width: 520px;
    max-height: 92vh;
    background: #ffffff;
    border-radius: 12px;
    z-index: 10003;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.order-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.order-modal-header {
    background: #0f2219;
    color: #d4af37;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #d4af37;
}

.order-modal-header h3 {
    margin: 0;
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 700;
}

.order-modal-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s;
}

.order-modal-close:hover {
    color: #d4af37;
}

.order-form {
    padding: 25px;
    overflow-y: auto;
    max-height: calc(92vh - 60px);
}

.order-summary {
    background: #faf8f5;
    border: 1px solid #e8e4dc;
    border-left: 4px solid #d4af37;
    border-radius: 8px;
    padding: 15px 18px;
    margin-bottom: 20px;
}

.order-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}

.order-summary-row:last-child {
    margin-bottom: 0;
}

.order-total-row {
    padding-top: 8px;
    border-top: 1px solid #e8e4dc;
    font-size: 18px;
    font-weight: 800;
    color: #0f2219;
}

.order-total-row span:last-child {
    color: #d4af37;
}

.order-form .form-group {
    margin-bottom: 16px;
}

.order-form .form-group label {
    display: block;
    color: #0f2219;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.order-form .form-group input,
.order-form .form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    background: #fafafa;
    transition: all 0.3s ease;
    resize: vertical;
}

.order-form .form-group input:focus,
.order-form .form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.order-submit-btn {
    width: 100%;
    background: #25d366;
    color: #ffffff;
    border: none;
    padding: 15px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    font-family: inherit;
    text-transform: uppercase;
}

.order-submit-btn:hover {
    background: #1ebe5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.order-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ============================================
   ===== VIEW MY ORDERS BUTTON (Cart) =====
   ============================================ */
.view-orders-btn {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    background: #faf8f5;
    border: 1px solid #e8e4dc;
    border-left: 4px solid #d4af37;
    border-radius: 6px;
    color: #0f2219;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-align: left;
}

.view-orders-btn:hover {
    background: #0f2219;
    color: #d4af37;
    border-left-color: #d4af37;
    transform: translateX(3px);
}

/* ============================================
   ===== MY ORDERS MODAL =====
   ============================================ */
.my-orders-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 34, 25, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 10004;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.my-orders-overlay.active {
    opacity: 1;
    visibility: visible;
}

.my-orders-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 92%;
    max-width: 600px;
    max-height: 92vh;
    background: #ffffff;
    border-radius: 12px;
    z-index: 10005;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.my-orders-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.my-orders-header {
    background: #0f2219;
    color: #d4af37;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #d4af37;
    flex-shrink: 0;
}

.my-orders-header h3 {
    margin: 0;
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 700;
}

.my-orders-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s;
}

.my-orders-close:hover {
    color: #d4af37;
}

.my-orders-body {
    padding: 22px;
    overflow-y: auto;
    flex-grow: 1;
}

.phone-input-section {
    text-align: center;
    padding: 10px 0;
}

.phone-input-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 18px;
    line-height: 1.5;
}

.phone-input-box {
    display: flex;
    gap: 10px;
    max-width: 450px;
    margin: 0 auto;
}

.phone-input-box input {
    flex: 1;
    padding: 13px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    letter-spacing: 1px;
    background: #fafafa;
    transition: all 0.3s ease;
}

.phone-input-box input:focus {
    outline: none;
    border-color: #d4af37;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.phone-input-box button {
    padding: 13px 22px;
    background: #0f2219;
    color: #d4af37;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.phone-input-box button:hover {
    background: #d4af37;
    color: #0f2219;
}

.orders-header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #faf8f5;
    border-radius: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 8px;
}

.orders-phone-info {
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.orders-phone-info strong {
    color: #0f2219;
    font-family: monospace;
    letter-spacing: 1px;
}

.change-phone-btn {
    background: transparent;
    color: #d4af37;
    border: none;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
    font-family: inherit;
}

.orders-count {
    font-size: 12px;
    color: #888;
    font-weight: 600;
}

.orders-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.my-order-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    overflow: hidden;
    border: 1px solid #e8e4dc;
}

.my-order-card-header {
    background: #faf8f5;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    border-bottom: 1px solid #eee;
}

.my-order-id {
    font-family: monospace;
    font-size: 14px;
    color: #0f2219;
    font-weight: 700;
    letter-spacing: 1px;
}

.my-order-date {
    font-size: 11px;
    color: #888;
    margin-top: 2px;
}

.my-order-status {
    padding: 5px 12px;
    border-radius: 20px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.my-order-body {
    padding: 14px 18px;
}

.my-order-items-preview {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.5;
}

.my-order-items-preview strong {
    color: #0f2219;
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
}

.my-order-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #eee;
    font-size: 13px;
    color: #666;
}

.my-order-total-row strong {
    color: #d4af37;
    font-size: 18px;
}

.my-order-toggle {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: none;
    border-top: 1px solid #eee;
    font-size: 11px;
    font-weight: 700;
    color: #0f2219;
    letter-spacing: 1px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
}

.my-order-toggle:hover {
    background: #faf8f5;
    color: #d4af37;
}

.my-order-details {
    display: none;
    padding: 14px 18px;
    background: #faf8f5;
    border-top: 1px solid #eee;
}

.my-order-details.show {
    display: block;
}

.my-order-detail-section {
    margin-bottom: 15px;
}

.my-order-detail-section:last-child {
    margin-bottom: 0;
}

.my-order-detail-section h4 {
    font-size: 11px;
    color: #0f2219;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 700;
    padding-bottom: 5px;
    border-bottom: 1px solid #e8e4dc;
}

.my-order-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 7px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 12px;
    gap: 8px;
}

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

.my-order-detail-item strong {
    color: #0f2219;
    display: block;
    margin-bottom: 2px;
}

.my-order-detail-size {
    font-size: 11px;
    color: #888;
}

.my-order-detail-price {
    text-align: right;
    color: #666;
    white-space: nowrap;
}

.my-order-detail-price strong {
    color: #b8860b;
    display: block;
    margin-top: 2px;
}

.my-order-detail-section p {
    font-size: 12px;
    color: #555;
    margin-bottom: 5px;
    line-height: 1.5;
}

.my-order-detail-section p strong {
    color: #0f2219;
}

.my-order-contact-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
    background: #25d366;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.my-order-contact-btn:hover {
    background: #1ebe5a;
}

.orders-loading {
    text-align: center;
    padding: 30px 20px;
    color: #888;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f0f0f0;
    border-top-color: #d4af37;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.my-orders-empty {
    text-align: center;
    padding: 30px 20px;
    color: #888;
}

.my-orders-empty-icon {
    font-size: 50px;
    margin-bottom: 12px;
}

.my-orders-empty h3 {
    color: #0f2219;
    font-size: 16px;
    margin-bottom: 8px;
}

.my-orders-empty p {
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
}

.my-orders-empty .small {
    font-size: 12px;
    color: #888;
}

.my-orders-shop-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background: #0f2219;
    color: #d4af37;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.5px;
    cursor: pointer;
    font-family: inherit;
}

/* ============================================
   ===== MOBILE (MODALS) =====
   ============================================ */
@media (max-width: 600px) {
    .order-modal {
        width: 95%;
        max-height: 95vh;
    }
    
    .order-form {
        padding: 18px;
    }
    
    .order-modal-header {
        padding: 14px 18px;
    }
    
    .order-modal-header h3 {
        font-size: 14px;
    }
    
    .my-orders-modal {
        width: 95%;
        max-height: 92vh;
    }
    
    .my-orders-header {
        padding: 15px 18px;
    }
    
    .my-orders-header h3 {
        font-size: 14px;
    }
    
    .my-orders-body {
        padding: 18px;
    }
    
    .phone-input-box {
        flex-direction: column;
    }
    
    .phone-input-box button {
        width: 100%;
    }
    
    .my-order-card-header {
        padding: 12px 15px;
    }
    
    .my-order-body {
        padding: 12px 15px;
    }
    
    .my-order-details {
        padding: 12px 15px;
    }
    
    .my-order-detail-item {
        flex-direction: column;
        gap: 4px;
    }
    
    .my-order-detail-price {
        text-align: left;
    }
}
/* ============================================
   ===== PAGE HERO (About/Contact/etc.) =====
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, #0f2219 0%, #193326 100%);
    color: #ffffff;
    text-align: center;
    padding: 60px 20px;
    border-bottom: 3px solid #d4af37;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero h1 {
    font-size: 38px;
    letter-spacing: 5px;
    font-weight: 800;
    color: #d4af37;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.page-hero p {
    font-size: 14px;
    color: #bbb;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

@media (max-width: 600px) {
    .page-hero {
        padding: 40px 15px;
    }
    .page-hero h1 {
        font-size: 24px;
        letter-spacing: 3px;
    }
    .page-hero p {
        font-size: 11px;
        letter-spacing: 2px;
    }
}

/* ============================================
   ===== ABOUT SECTION =====
   ============================================ */
.about-section {
    padding: 50px 20px;
    background: #faf8f5;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
}

.about-intro {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 35px;
    border-bottom: 2px solid #e8e4dc;
}

.about-intro h2 {
    font-size: 28px;
    color: #0f2219;
    margin-bottom: 18px;
    letter-spacing: 1px;
    font-weight: 700;
    line-height: 1.3;
}

.about-intro h2 span {
    color: #d4af37;
}

.about-intro p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.about-block {
    background: #ffffff;
    padding: 30px 28px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #d4af37;
    position: relative;
}

.about-icon {
    font-size: 36px;
    margin-bottom: 12px;
    display: block;
}

.about-block h3 {
    font-size: 22px;
    color: #0f2219;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.about-block p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

.about-block p:last-child {
    margin-bottom: 0;
}

.about-block strong {
    color: #0f2219;
    font-weight: 700;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.about-list li {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    padding: 8px 0 8px 0;
    border-bottom: 1px solid #f5f5f5;
}

.about-list li:last-child {
    border-bottom: none;
}

.about-list li strong {
    color: #0f2219;
}

/* Brand Cards */
.brand-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 20px 0;
}

.brand-card {
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0e5 100%);
    padding: 20px 18px;
    border-radius: 10px;
    border: 1px solid #e8e4dc;
    text-align: center;
    transition: all 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
}

.brand-card h4 {
    font-size: 20px;
    color: #d4af37;
    margin-bottom: 8px;
    letter-spacing: 2px;
    font-weight: 800;
}

.brand-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.brand-note {
    background: #faf8f5;
    padding: 15px 18px;
    border-radius: 8px;
    border-left: 3px solid #d4af37;
    font-size: 14px !important;
    color: #555 !important;
    margin-top: 15px !important;
}

.brand-note strong {
    color: #0f2219;
}

/* Why Grid */
.about-why {
    border-left-color: #0f2219;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.why-item {
    background: #faf8f5;
    padding: 18px 15px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e8e4dc;
    transition: all 0.3s ease;
}

.why-item:hover {
    border-color: #d4af37;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.15);
}

.why-emoji {
    font-size: 28px;
    display: block;
    margin-bottom: 8px;
}

.why-item h4 {
    font-size: 14px;
    color: #0f2219;
    margin-bottom: 5px;
    font-weight: 700;
}

.why-item p {
    font-size: 12px;
    color: #777;
    margin: 0;
    line-height: 1.5;
}

/* About CTA */
.about-cta {
    background: linear-gradient(135deg, #0f2219 0%, #193326 100%);
    color: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    margin-top: 30px;
    border: 2px solid #d4af37;
}

.about-cta h3 {
    font-size: 24px;
    color: #d4af37;
    margin-bottom: 12px;
    letter-spacing: 1px;
    font-weight: 700;
}

.about-cta p {
    font-size: 15px;
    color: #ddd;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 25px;
}

.about-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-about,
.btn-secondary-about {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-primary-about {
    background: #d4af37;
    color: #0f2219;
    border: 2px solid #d4af37;
}

.btn-primary-about:hover {
    background: #ffffff;
    color: #0f2219;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary-about {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
}

.btn-secondary-about:hover {
    background: #d4af37;
    color: #0f2219;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* ============================================
   ===== ABOUT — MOBILE =====
   ============================================ */
@media (max-width: 600px) {
    .about-section {
        padding: 30px 15px;
    }
    
    .about-intro {
        margin-bottom: 30px;
        padding-bottom: 25px;
    }
    
    .about-intro h2 {
        font-size: 22px;
    }
    
    .about-intro p {
        font-size: 14px;
    }
    
    .about-block {
        padding: 22px 20px;
        margin-bottom: 18px;
    }
    
    .about-icon {
        font-size: 30px;
    }
    
    .about-block h3 {
        font-size: 18px;
    }
    
    .about-block p,
    .about-list li {
        font-size: 14px;
    }
    
    .brand-cards {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .why-item {
        padding: 14px 10px;
    }
    
    .why-emoji {
        font-size: 24px;
    }
    
    .why-item h4 {
        font-size: 12px;
    }
    
    .why-item p {
        font-size: 11px;
    }
    
    .about-cta {
        padding: 30px 20px;
    }
    
    .about-cta h3 {
        font-size: 20px;
    }
    
    .about-cta p {
        font-size: 14px;
    }
    
    .btn-primary-about,
    .btn-secondary-about {
        padding: 12px 24px;
        font-size: 12px;
        width: 100%;
        max-width: 280px;
    }
    
    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
/* ============================================
   ===== TERMS CHECKBOX (Order Form) =====
   ============================================ */
.terms-checkbox-group {
    margin: 15px 0;
    padding: 12px 15px;
    background: #faf8f5;
    border: 1px solid #e8e4dc;
    border-left: 3px solid #d4af37;
    border-radius: 6px;
}

.terms-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 12px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.terms-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: #d4af37;
}

.terms-checkbox-label a {
    color: #b8860b;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s;
}

.terms-checkbox-label a:hover {
    color: #0f2219;
}
/* ============================================
   ===== FOOTER SOCIAL ROW (CONTACT) =====
   ============================================ */
.footer-social-row {
    margin-top: 5px;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #bbb !important;
    text-decoration: none !important;
    font-size: 14px !important;
    transition: all 0.3s ease;
    padding: 4px 0 !important;
}

.footer-social-icon:hover {
    color: #d4af37 !important;
    transform: translateX(5px);
}

.footer-social-icon svg {
    color: #d4af37;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-social-icon:hover svg {
    transform: scale(1.15);
}
/* ============================================
   ===== POLICY PAGES (Privacy/Terms/Returns) =====
   ============================================ */
.policy-section {
    padding: 50px 20px;
    background: #faf8f5;
}

.policy-container {
    max-width: 850px;
    margin: 0 auto;
}

.policy-intro {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e8e4dc;
}

.policy-updated {
    display: inline-block;
    background: #f0ead9;
    color: #b8860b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 15px;
    border-radius: 20px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.policy-intro p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
    text-align: left;
}

.policy-intro p:last-child {
    margin-bottom: 0;
}

.policy-intro strong {
    color: #0f2219;
    font-weight: 700;
}

.policy-block {
    background: #ffffff;
    padding: 30px 28px;
    border-radius: 12px;
    margin-bottom: 22px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #d4af37;
}

.policy-block h2 {
    font-size: 20px;
    color: #0f2219;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #0f2219;
    color: #d4af37;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
}

.policy-block h3 {
    font-size: 15px;
    color: #0f2219;
    margin: 18px 0 10px 0;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.policy-block p {
    font-size: 14.5px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

.policy-block p:last-child {
    margin-bottom: 0;
}

.policy-block strong {
    color: #0f2219;
    font-weight: 700;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.policy-list li {
    font-size: 14.5px;
    color: #555;
    line-height: 1.8;
    padding: 8px 0 8px 25px;
    position: relative;
    border-bottom: 1px solid #f5f5f5;
}

.policy-list li:last-child {
    border-bottom: none;
}

.policy-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: #d4af37;
    font-weight: 800;
    font-size: 14px;
}

.policy-list li strong {
    color: #0f2219;
}

.policy-block a {
    color: #b8860b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.policy-block a:hover {
    color: #0f2219;
    text-decoration: underline;
}

/* Contact Box */
.policy-contact-box {
    background: #faf8f5;
    border-radius: 10px;
    padding: 18px 20px;
    margin-top: 15px;
    border: 1px solid #e8e4dc;
}

.policy-contact-box p {
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

.policy-contact-box p:last-child {
    margin-bottom: 0;
}

.policy-contact-box strong {
    color: #0f2219;
    font-size: 15px;
    letter-spacing: 1px;
}

/* Agreement Note */
.policy-agreement {
    background: linear-gradient(135deg, #0f2219 0%, #193326 100%);
    color: #fff;
    padding: 25px 28px;
    border-radius: 12px;
    margin-top: 30px;
    border: 2px solid #d4af37;
    text-align: center;
}

.policy-agreement p {
    font-size: 14px;
    line-height: 1.7;
    color: #ddd;
    margin: 0;
}

.policy-agreement strong {
    color: #d4af37;
}

/* ============================================
   ===== POLICY — MOBILE =====
   ============================================ */
@media (max-width: 600px) {
    .policy-section {
        padding: 30px 15px;
    }
    
    .policy-intro {
        margin-bottom: 28px;
        padding-bottom: 22px;
    }
    
    .policy-intro p {
        font-size: 14px;
    }
    
    .policy-block {
        padding: 22px 20px;
        margin-bottom: 16px;
    }
    
    .policy-block h2 {
        font-size: 16px;
    }
    
    .policy-num {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .policy-block h3 {
        font-size: 14px;
    }
    
    .policy-block p,
    .policy-list li {
        font-size: 13.5px;
    }
    
    .policy-list li {
        padding-left: 22px;
    }
    
    .policy-contact-box {
        padding: 15px 16px;
    }
    
    .policy-agreement {
        padding: 20px 18px;
    }
    
    .policy-agreement p {
        font-size: 13px;
    }
}
/* ============================================
   ===== RETURN PAGE — HIGHLIGHTS =====
   ============================================ */
.return-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.highlight-item {
    background: linear-gradient(135deg, #0f2219 0%, #193326 100%);
    color: #fff;
    padding: 22px 15px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #d4af37;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.highlight-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.highlight-item h3 {
    font-size: 18px;
    color: #d4af37;
    margin-bottom: 5px;
    font-weight: 800;
    letter-spacing: 1px;
}

.highlight-item p {
    font-size: 12px;
    color: #bbb;
    margin: 0;
    letter-spacing: 0.5px;
}

/* ============================================
   ===== RETURN PAGE — NOTE =====
   ============================================ */
.return-note {
    background: #fff8e6;
    border-left: 4px solid #ff9800;
    padding: 14px 18px;
    border-radius: 6px;
    font-size: 13px;
    color: #7a5a00;
    line-height: 1.6;
    margin-top: 15px;
}

.return-note strong {
    color: #d97706;
}

/* ============================================
   ===== RETURN PAGE — STEPS =====
   ============================================ */
.return-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.step-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: #faf8f5;
    padding: 15px 18px;
    border-radius: 10px;
    border-left: 4px solid #d4af37;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
}

.step-num {
    width: 36px;
    height: 36px;
    background: #0f2219;
    color: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 15px;
    color: #0f2219;
    margin-bottom: 4px;
    font-weight: 700;
}

.step-content p {
    font-size: 13.5px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.step-content a {
    color: #b8860b;
    font-weight: 600;
    text-decoration: none;
}

.step-content a:hover {
    text-decoration: underline;
}

/* ============================================
   ===== RETURN — MOBILE =====
   ============================================ */
@media (max-width: 600px) {
    .return-highlights {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .highlight-item {
        padding: 18px 12px;
    }
    
    .highlight-icon {
        font-size: 26px;
    }
    
    .highlight-item h3 {
        font-size: 16px;
    }
    
    .return-steps {
        gap: 10px;
    }
    
    .step-item {
        padding: 12px 14px;
        gap: 12px;
    }
    
    .step-num {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .step-content h4 {
        font-size: 14px;
    }
    
    .step-content p {
        font-size: 13px;
    }
}
/* ============================================
   ===== FABRIC QUANTITY INPUT =====
   ============================================ */
.fabric-qty-input {
    font-family: inherit;
    font-size: 13px;
    outline: none;
    transition: all 0.2s ease;
    text-align: center;
}

.fabric-qty-input:focus {
    border-color: #d4af37 !important;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.15);
    background: #fff;
}

/* Remove spinner arrows */
.fabric-qty-input::-webkit-outer-spin-button,
.fabric-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.fabric-qty-input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}
/* ============================================
   ===== PRODUCT HOVER VIDEO =====
   ============================================ */
.product-main-img {
    transition: opacity 0.3s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-hover-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.product-img:hover .product-hover-video {
    opacity: 1;
    visibility: visible;
}

.product-img:hover .product-main-img {
    opacity: 0;
}

/* Mobile — video autoplay + always visible */
@media (max-width: 767px) {
    .product-hover-video {
        display: block;
        opacity: 1;
        visibility: visible;
    }
    
    .product-main-img {
        opacity: 0;
    }
}