/* ============================================
   LABEES BY AL AMEEN - MAIN STYLESHEET
   ============================================ */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
    max-width: 100%;
}

* {
    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;
    overflow-x: hidden;
    width: 100%;
}

/* ============================================
   HEADER
   ============================================ */
.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 & WISHLIST BUTTONS
   ============================================ */
.cart-btn,
.wishlist-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;
    transition: all 0.3s ease;
}

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

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

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

.cart-badge,
.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;
}

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

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    width: 100%;
    min-height: 500px;
    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);
    transition: all 0.3s ease;
}

.shop-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

/* ============================================
   CATEGORY STRIP — ALL 7 VISIBLE (LAPTOP)
   ============================================ */
.category-section-title {
    text-align: center;
    font-size: 24px;
    color: #0f2219;
    letter-spacing: 4px;
    margin: 35px 0 25px 0;
    font-weight: 600;
    text-transform: uppercase;
}

.category-strip-wrapper {
    position: relative;
    background-color: #ffffff;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #e8e4dc;
    width: 100%;
    overflow: hidden;
}

.category-stories {
    display: flex;
    flex-wrap: nowrap;
    gap: 0 !important;
    overflow-x: auto;
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
}

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

.story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    flex-shrink: 0;
    /* ✅ LAPTOP — 7 images (saari fit) */
    min-width: calc(100% / 7);
    max-width: calc(100% / 7);
    width: calc(100% / 7);
    padding: 0 !important;
    margin: 0 !important;
    scroll-snap-align: start;
    background: #fff;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.story-item:hover {
    transform: translateY(-2px);
}

.story-img-wrap {
    width: 100%;
    height: auto;
    /* ✅ HEIGHT — 4/5 (sar nahi katega) */
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 0;
    margin: 0 !important;
    padding: 0 !important;
    background: #f5f0e5;
    display: block;
}

.story-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* ✅ TOP SE ALIGN — sar nahi katega */
    object-position: center top;
    display: block;
    margin: 0;
    padding: 0;
    transition: transform 0.5s ease;
}

.story-item:hover .story-img-wrap img {
    transform: scale(1.05);
}

.story-label {
    color: #0f2219;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.2;
    padding: 8px 4px 12px 4px;
    margin: 0 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    width: 100%;
    background: #fff;
    box-sizing: border-box;
}

/* ===== DOTS INDICATOR ===== */
.category-dots {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 15px auto 0 auto;
    padding: 0;
    width: 100%;
    text-align: center;
}

.category-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d4d4d4;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
}

.category-dot.active {
    background: #d4af37;
    width: 24px;
    border-radius: 4px;
}

/* ===== MOBILE — 4 images ===== */
@media (max-width: 767px) {
    .category-section-title {
        font-size: 16px;
        letter-spacing: 2px;
        margin: 25px 0 18px 0;
    }
    
    .category-strip-wrapper {
        padding: 0;
        margin: 0;
    }
    
    .category-stories {
        gap: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .story-item {
        min-width: calc(100% / 4) !important;
        max-width: calc(100% / 4) !important;
        width: calc(100% / 4) !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .story-img-wrap {
        border-radius: 0;
        margin: 0 !important;
        padding: 0 !important;
        aspect-ratio: 4 / 5;
    }
    
    .story-label {
        font-size: 9px;
        letter-spacing: 0.6px;
        padding: 6px 3px 10px 3px;
        margin: 0 !important;
    }
    
    .category-dots {
        display: flex;
    }
}

/* ===== TABLET — 5 images ===== */
@media (min-width: 768px) and (max-width: 1024px) {
    .story-item {
        min-width: calc(100% / 5) !important;
        max-width: calc(100% / 5) !important;
        width: calc(100% / 5) !important;
    }
}

/* ============================================
   PRODUCT SECTIONS — 8 PER LINE (LAPTOP)
   ============================================ */
.products-section {
    padding: 50px 25px;
    max-width: 1500px;
    margin: 0 auto;
}

.section-title {
    font-size: 22px;
    color: #0f2219;
    letter-spacing: 3px;
    margin-bottom: 35px;
    text-align: center;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #d4af37;
}

/* ✅ 7 products per line — laptop */
.product-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 14px;
}

/* ============================================
   PRODUCT CARD — CLEAN (J. JAISA)
   ============================================ */
.product-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.product-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    background-color: #f7f7f7;
    position: relative;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.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;
}

.product-info {
    padding: 14px 12px 16px;
    text-align: center;
}

.product-info h3 {
    font-size: 13px;
    color: #2c3531;
    margin: 0 0 6px 0;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 36px;
}

.product-info .price,
.product-price {
    font-size: 14px;
    font-weight: 600;
    color: #0f2219;
    margin: 0;
    letter-spacing: 0.5px;
}

/* ============================================
   WISHLIST HEART (Card)
   ============================================ */
.wishlist-heart {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    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: 3;
    padding: 0;
    opacity: 0;
}

.product-card:hover .wishlist-heart {
    opacity: 1;
}

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

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

.wishlist-heart.active {
    opacity: 1;
}

.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); }
}

/* Mobile — heart always visible */
@media (max-width: 767px) {
    .wishlist-heart {
        opacity: 1;
        width: 32px;
        height: 32px;
        top: 8px;
        right: 8px;
    }
    .wishlist-heart svg {
        width: 16px;
        height: 16px;
    }
}

/* ============================================
   SOLD OUT & LOW STOCK BADGES
   ============================================ */
.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);
}

.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 MORE BUTTON
   ============================================ */
.view-more-wrap {
    text-align: center;
    margin-top: 40px;
    padding-top: 25px;
}

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

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



/* ============================================
   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); }
}

/* ============================================
   CART DRAWER & WISHLIST DRAWER
   ============================================ */
.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;
}

/* View My Orders Button */
.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);
}

/* 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;
}

/* ============================================
   SIZE MODAL
   ============================================ */
.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;
}

/* ============================================
   FOOTER
   ============================================ */
.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;
}

.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;
}

.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-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 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-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);
}

.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;
}



/* ============================================
   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;
}

.va-body .product-card {
    display: flex !important;
    flex-direction: column;
}

/* ============================================
   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);
    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 {
    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;
}

/* ============================================
   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);
    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;
}

.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;
}

/* ============================================
   FABRIC QTY 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;
}

.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;
}

/* ============================================
   LOADING & EMPTY MESSAGES
   ============================================ */
.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;
}

/* ============================================
   SWIPE HINT
   ============================================ */
.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; }
}

/* ============================================
   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 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;
}

/* ============================================
   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;
}

.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;
    border-bottom: 1px solid #f5f5f5;
}

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

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

.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;
}

.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 {
    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);
}

/* ============================================
   POLICY PAGES
   ============================================ */
.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 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 p {
    font-size: 14.5px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

.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-contact-box {
    background: #faf8f5;
    border-radius: 10px;
    padding: 18px 20px;
    margin-top: 15px;
    border: 1px solid #e8e4dc;
}

.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;
}

/* ============================================
   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-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-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;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    /* Category strip — arrows mobile pe gayab */
    .nav-arrow {
        display: none !important;
    }
    
    /* Right side fade */
    .category-strip-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 40px;
        height: 100%;
        background: linear-gradient(to right, rgba(255,255,255,0) 0%, #ffffff 90%);
        pointer-events: none;
        z-index: 5;
    }
    
    .category-stories {
        padding-right: 50px !important;
    }
    
    .swipe-hint {
        display: block;
    }
}

@media (max-width: 767px) {
    /* Header compact */
    .main-header {
        padding: 10px 10px !important;
    }
    
    .header-container {
        gap: 6px !important;
        max-width: 100% !important;
    }
    
    .header-logo-img {
        height: 32px !important;
    }
    
    .brand-title {
        font-size: 15px !important;
        letter-spacing: 1px !important;
    }
    
    .brand-sub {
        font-size: 7px !important;
        letter-spacing: 1px !important;
    }
    
    .header-actions {
        gap: 6px !important;
    }
    
    .icon-btn {
        width: 20px !important;
        height: 20px !important;
    }
    
    .cart-btn,
    .wishlist-btn {
        padding: 4px 8px !important;
        font-size: 10px !important;
        gap: 4px !important;
    }
    
    .cart-btn svg,
    .wishlist-btn svg {
        width: 13px !important;
        height: 13px !important;
    }
    
    .cart-badge,
    .wishlist-badge {
        font-size: 9px !important;
        padding: 1px 5px !important;
    }
    
    /* Hero */
    .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 mobile */
    .category-strip-wrapper {
        padding: 18px 0;
    }
    
    .category-stories {
        gap: 12px;
        padding: 0 20px !important;
        padding-right: 50px !important;
    }
    
    .story-item {
        min-width: 42% !important;
        max-width: 200px;
    }
    
    .story-img-wrap {
        border-radius: 10px;
        margin-bottom: 8px;
    }
    
    .story-label {
        font-size: 11px;
        letter-spacing: 1px;
    }
    
    /* Product grid */
    .product-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    
    .product-card {
        border-radius: 8px !important;
    }
    
    .product-img {
        aspect-ratio: 3 / 4 !important;
    }
    
    .product-info {
        padding: 10px 8px 12px !important;
    }
    
    .product-info h3 {
        font-size: 12px !important;
        margin-bottom: 4px !important;
        min-height: 32px !important;
    }
    
    .product-info .price,
    .product-price {
        font-size: 13px !important;
    }
    
    /* Products section */
    .products-section {
        padding: 30px 12px !important;
    }
    
    .section-title {
        font-size: 16px !important;
        letter-spacing: 2px;
        margin-bottom: 22px !important;
    }
    
    /* View more btn */
    .view-more-btn {
        padding: 11px 24px;
        font-size: 11px;
    }
    
    /* Search overlay */
    .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;
    }
    
    
    
    /* View all modal */
    .va-body {
        padding: 15px;
    }
    
    .va-body .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    /* Order modal */
    .order-modal {
        width: 95%;
        max-height: 95vh;
    }
    
    .order-form {
        padding: 18px;
    }
    
    /* My orders */
    .my-orders-modal {
        width: 95%;
        max-height: 92vh;
    }
    
    .my-orders-body {
        padding: 18px;
    }
    
    .phone-input-box {
        flex-direction: column;
    }
    
    .phone-input-box button {
        width: 100%;
    }
    
    .my-order-detail-item {
        flex-direction: column;
        gap: 4px;
    }
    
    .my-order-detail-price {
        text-align: left;
    }
    
    /* Footer */
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 25px 20px;
        padding-bottom: 25px;
    }
    
    .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-desc {
        font-size: 13px;
    }
    
    .footer-heading {
        font-size: 12px;
        letter-spacing: 1.8px;
        margin-bottom: 14px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    .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 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 20px;
    }
    
    .footer-contact li {
        margin-bottom: 0;
        font-size: 13px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 18px 10px;
        gap: 8px;
    }
    
    /* About page */
    .about-section {
        padding: 30px 15px;
    }
    
    .about-intro h2 {
        font-size: 22px;
    }
    
    .about-block {
        padding: 22px 20px;
    }
    
    .about-block h3 {
        font-size: 18px;
    }
    
    .brand-cards {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-cta {
        padding: 30px 20px;
    }
    
    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-about,
    .btn-secondary-about {
        width: 100%;
        max-width: 280px;
    }
    
    /* Policy page */
    .policy-section {
        padding: 30px 15px;
    }
    
    .policy-block {
        padding: 22px 20px;
    }
    
    .policy-block h2 {
        font-size: 16px;
    }
    
    .return-highlights {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    /* Page hero */
    .page-hero {
        padding: 40px 15px;
    }
    
    .page-hero h1 {
        font-size: 24px;
        letter-spacing: 3px;
    }
    
    .page-hero p {
        font-size: 11px;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .story-item {
        min-width: 48% !important;
    }
    
}
/* ✅ FORCE NO GAP — Final Fix */
.category-stories {
    gap: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 0 !important;
}

.story-item {
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    gap: 0 !important;
    font-size: 14px !important;
    min-width: calc(100% / 6) !important;
    max-width: calc(100% / 6) !important;
    width: calc(100% / 6) !important;
}

.story-img-wrap {
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    display: block !important;
    line-height: 0 !important;
    font-size: 0 !important;
    width: 100% !important;
}

.story-img-wrap img {
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.story-label {
    padding: 10px 5px 15px 5px !important;
    margin: 0 !important;
    border: none !important;
    display: block !important;
    width: 100% !important;
    background: #fff !important;
}

@media (max-width: 767px) {
    .story-item {
        min-width: calc(100% / 2.5) !important;
        max-width: calc(100% / 2.5) !important;
        width: calc(100% / 2.5) !important;
    }
}
/* ============================================
   ✅ FORCE — ALL 7 VISIBLE, NO CROP
   ============================================ */
.category-stories {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
}

.story-item {
    flex: 0 0 calc(100% / 7) !important;
    min-width: calc(100% / 7) !important;
    max-width: calc(100% / 7) !important;
    width: calc(100% / 7) !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.story-img-wrap {
    width: 100% !important;
    aspect-ratio: 4 / 5 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    display: block !important;
}

.story-img-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Mobile */
@media (max-width: 767px) {
    .story-item {
        flex: 0 0 calc(100% / 2.5) !important;
        min-width: calc(100% / 2.5) !important;
        max-width: calc(100% / 2.5) !important;
        width: calc(100% / 2.5) !important;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    .story-item {
        flex: 0 0 calc(100% / 5) !important;
        min-width: calc(100% / 5) !important;
        max-width: calc(100% / 5) !important;
        width: calc(100% / 5) !important;
    }
}
/* ============================================
   ✅ FORCE — MOBILE PRODUCT SLIDER (2.5)
   ============================================ */
@media (max-width: 767px) {
    .product-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 10px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        padding: 5px 0 15px 0 !important;
        padding-right: 50px !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }
    
    .product-grid::-webkit-scrollbar {
        display: none !important;
    }
    
    .product-grid .product-card {
        flex: 0 0 40% !important;
        min-width: 40% !important;
        max-width: 40% !important;
        width: 40% !important;
        scroll-snap-align: start !important;
        border-radius: 6px !important;
        box-sizing: border-box !important;
    }
    
    /* ✅ Product Dots */
    .product-dots {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 6px;
        margin: 15px 0 10px 0;
        padding: 0;
        width: 100%;
        text-align: center;
    }
    
    .product-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #d4d4d4;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0;
        flex-shrink: 0;
    }
    
    .product-dot.active {
        background: #d4af37;
        width: 20px;
        border-radius: 4px;
    }
}

/* Non-mobile — Dots hide */
.product-dots {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin: 15px 0 10px 0;
    padding: 0;
    width: 100%;
    text-align: center;
}

.product-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d4d4d4;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
}

.product-dot.active {
    background: #d4af37;
    width: 20px;
    border-radius: 4px;
}