/* ================================================================
   ASHREN - PUBLIC PAGE STYLES
   Part 1: Theme Variables + Base + Header + Offer Title + Bottom Nav
   ================================================================ */

/* ================================================================
   GOOGLE FONTS
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800;900&family=Roboto:wght@300;400;500;700;900&family=Montserrat:wght@300;400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600;700;800&family=Lato:wght@300;400;700;900&family=Nunito:wght@300;400;500;600;700;800;900&display=swap');

/* ================================================================
   THEME VARIABLES (Dynamic - Controlled by Admin Panel)
   ================================================================ */
:root {
    --theme-primary: #FF9900;
    --theme-secondary: #232F3E;
    --theme-accent: #FFD814;
    --theme-bg: #FFFFFF;
    --theme-text: #111111;
    --theme-header-bg: #FFFFFF;
    --theme-header-text: #000000;
    --theme-brand: #000000;
    --theme-button-bg: #FF9900;
    --theme-button-text: #111111;
    --theme-url: #007185;
    --theme-font-heading: 'Cinzel', serif;
    --theme-font-body: 'Inter', sans-serif;
    --theme-font-button: 'Inter', sans-serif;
}

/* ================================================================
   RESET & BASE
   ================================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--theme-font-body);
    background: var(--theme-bg);
    color: var(--theme-text);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

input, textarea, select {
    font-size: 16px !important;
    font-family: var(--theme-font-body);
}

/* ================================================================
   SCROLLBAR
   ================================================================ */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #F3F3F3;
}
::-webkit-scrollbar-thumb {
    background: #CCCCCC;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--theme-primary);
}

.hide-scrollbar {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

/* ================================================================
   APP CONTAINER
   ================================================================ */
.app-container {
    min-height: 100vh;
    background: var(--theme-bg);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    overflow-x: hidden;
}

.main-content {
    flex: 1;
    padding-bottom: 80px;
    max-width: 100%;
    overflow-x: hidden;
}

/* ================================================================
   HEADER
   ================================================================ */
.header {
    background: var(--theme-header-bg);
    border-bottom: 1px solid #E0E0E0;
    padding: 1rem 1.5rem;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: background 0.3s ease;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    flex-shrink: 0;
    min-width: 0;
    transition: transform 0.2s ease;
}

.header-left:hover {
    transform: scale(1.02);
}

.header-left:active {
    transform: scale(0.98);
}

/* ===== Logo ===== */
.header-logo {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
    border: none !important;
    background: transparent !important;
    flex-shrink: 0;
    box-shadow: none !important;
}

.header-logo-placeholder {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: var(--theme-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-family: var(--theme-font-heading);
    font-weight: 900;
    font-size: 2.2rem;
    flex-shrink: 0;
    border: none !important;
    box-shadow: none !important;
}

/* ===== Brand Name ===== */
.header-brand {
    font-family: var(--theme-font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--theme-brand) !important;
    letter-spacing: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.header-brand span {
    color: var(--theme-brand) !important;
}

/* Right: Search + Cart */
.header-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.header-icon-btn {
    background: none;
    border: none;
    color: var(--theme-header-text);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
}

.header-icon-btn:hover {
    background: rgba(255, 153, 0, 0.1);
    color: var(--theme-primary);
    transform: scale(1.05);
}

.header-icon-btn:active {
    transform: scale(0.95);
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--theme-primary);
    color: var(--theme-button-text);
    font-size: 0.65rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--theme-header-bg);
    font-family: var(--theme-font-body);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* ================================================================
   SEARCH BAR
   ================================================================ */
.search-bar-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--theme-header-bg);
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #E0E0E0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 99;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.search-bar-inner {
    display: flex;
    align-items: center;
    background: #F3F3F3;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid #E0E0E0;
}

.search-bar-inner input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    outline: none;
    font-size: 0.95rem;
    font-family: var(--theme-font-body);
    background: transparent;
    color: var(--theme-text);
}

.search-bar-inner input::placeholder {
    color: #999;
}

.search-bar-inner .search-icon {
    padding: 0.75rem 1rem;
    color: #666;
    font-size: 1rem;
}

.search-bar-inner .clear-btn {
    background: none;
    border: none;
    padding: 0.75rem 1rem;
    color: #999;
    cursor: pointer;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.search-bar-inner .clear-btn:hover {
    color: var(--theme-primary);
}

/* ================================================================
   OFFER TITLE (Black Background + White Text - Fixed)
   ================================================================ */
.offer-title-bar {
    background: #000000;
    color: #FFFFFF;
    padding: 0.65rem 0;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    border-bottom: 2px solid var(--theme-primary);
}

.offer-title-bar .marquee-text {
    display: inline-block;
    padding-left: 100%;
    animation: marqueeScroll linear infinite;
    font-family: var(--theme-font-body);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    color: #FFFFFF;
    text-transform: uppercase;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* ================================================================
   BOTTOM NAVIGATION (Fixed - Keyboard Safe)
   ================================================================ */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--theme-header-bg);
    border-top: 1px solid #E0E0E0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0.5rem 0;
    z-index: 99999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.06);
    transform: translateZ(0);
    backface-visibility: hidden;
    transition: background 0.3s ease;
    /* Keyboard safe */
    bottom: env(safe-area-inset-bottom, 0);
}

/* Jab search input focus ho, bottom nav hide karo */
body.search-focused .bottom-nav {
    display: none !important;
}

.bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    padding: 0.4rem;
    cursor: pointer;
    transition: all 0.2s ease;
    background: none;
    border: none;
    color: #666;
    font-family: var(--theme-font-body);
    position: relative;
}

.bottom-nav-item i {
    font-size: 1.2rem;
}

.bottom-nav-item span {
    font-size: 0.65rem;
    font-weight: 600;
}

.bottom-nav-item:hover {
    color: var(--theme-primary);
}

.bottom-nav-item.active {
    color: var(--theme-primary);
}

.bottom-nav-item .nav-cart-badge {
    position: absolute;
    top: 0;
    right: 25%;
    background: var(--theme-primary);
    color: var(--theme-button-text);
    font-size: 0.6rem;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    border: 2px solid var(--theme-header-bg);
}

.bottom-nav-item.whatsapp {
    color: #25D366;
}

.bottom-nav-item.whatsapp:hover {
    color: #1DA851;
}

.bottom-nav-item.whatsapp i {
    font-size: 1.4rem;
}

/* ================================================================
   SECTION SPACING
   ================================================================ */
.section-wrapper {
    padding: 1.5rem 1rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.section-heading {
    font-family: var(--theme-font-heading);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--theme-text);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.section-heading .see-all-link {
    color: var(--theme-primary);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    background: none;
    border: none;
    font-family: var(--theme-font-body);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
    text-transform: none;
    letter-spacing: 0;
}

.section-heading .see-all-link:hover {
    background: rgba(255, 153, 0, 0.1);
}

/* ================================================================
   EMPTY STATE
   ================================================================ */
.empty-state {
    text-align: center;
    padding: 2rem 1rem;
    color: #999;
    font-family: var(--theme-font-body);
}

.empty-state i {
    font-size: 3rem;
    color: #DDD;
    margin-bottom: 0.75rem;
}

.empty-state p {
    font-size: 0.9rem;
}

/* ================================================================
   LOADING SPINNER
   ================================================================ */
.spinner {
    border: 3px solid #F3F3F3;
    border-top: 3px solid var(--theme-primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 0.8s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes loadingBar {
    0% { transform: scaleX(0); transform-origin: left; }
    50% { transform: scaleX(1); transform-origin: left; }
    51% { transform: scaleX(1); transform-origin: right; }
    100% { transform: scaleX(0); transform-origin: right; }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 768px) {
    .header-logo,
    .header-logo-placeholder {
        width: 60px;
        height: 60px;
    }
    .header-logo-placeholder {
        font-size: 1.8rem;
    }
}

    .header-brand {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }

    .header-icon-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .offer-title-bar .marquee-text {
        font-size: 0.85rem;
    }

    .section-wrapper {
        padding: 1rem 0.75rem;
    }

    .section-heading {
        font-size: 1.1rem;
    }

    .bottom-nav-item i {
        font-size: 1.1rem;
    }

    .bottom-nav-item span {
        font-size: 0.6rem;
    }


@media (max-width: 480px) {
    .header-logo,
    .header-logo-placeholder {
        width: 55px;
        height: 55px;
    }
    .header-logo-placeholder {
        font-size: 1.6rem;
    }
}


    .header-brand {
        font-size: 1.2rem;
        letter-spacing: 1.5px;
    }

    .header-icon-btn {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .offer-title-bar .marquee-text {
        font-size: 0.75rem;
    }

    .section-wrapper {
        padding: 0.875rem 0.5rem;
    }

    .section-heading {
        font-size: 1rem;
    }


@media (min-width: 769px) and (max-width: 1024px) {
    .header-logo,
    .header-logo-placeholder {
        width: 80px;
        height: 80px;
    }
    .header-logo-placeholder {
        font-size: 2.4rem;
    }
}

    .header-brand {
        font-size: 2rem;
    }

    .section-wrapper {
        padding: 1.5rem 1.5rem;
    }

    .section-heading {
        font-size: 1.5rem;
    }


@media (min-width: 1025px) {
    .header {
        padding: 1.25rem 3rem;
    }

    .header-logo,
    .header-logo-placeholder {
        width: 85px;
        height: 85px;
    }

    .header-logo-placeholder {
        font-size: 2.5rem;
    }

    .header-brand {
        font-size: 2.2rem;
        letter-spacing: 4px;
    }

    .section-wrapper {
        padding: 2rem 3rem;
    }

    .section-heading {
        font-size: 1.6rem;
    }

    .bottom-nav {
        max-width: 600px;
        left: 50%;
        transform: translateX(-50%);
        bottom: 1rem;
        border-radius: 2rem;
        padding: 0.5rem 1rem;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }

    .main-content {
        padding-bottom: 100px;
    }
}

@media (min-width: 1920px) {
    .header {
        padding: 1.5rem 5rem;
    }

    .header-logo,
    .header-logo-placeholder {
        width: 110px;
        height: 110px;
    }

    .header-logo-placeholder {
        font-size: 3.2rem;
    }

    .header-brand {
        font-size: 3rem;
        letter-spacing: 5px;
    }

    .section-wrapper {
        max-width: 1800px;
        padding: 3rem 5rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .bottom-nav {
        max-width: 800px;
        bottom: 2rem;
    }

    .bottom-nav-item i {
        font-size: 1.5rem;
    }

    .bottom-nav-item span {
        font-size: 0.8rem;
    }
}
/* ================================================================
   PART 2: SLIDER + CATEGORY + FEATURED + REELS + SKELETON
   ================================================================ */

/* ================================================================
   HERO SLIDER
   ================================================================ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
    background: #F3F3F3;
    margin-bottom: 0.5rem;
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.slider-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F3F3F3;
    overflow: hidden;
}

.slider-slide .slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.slider-slide .slide-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: #000;
}

/* ================================================================
   SLIDER OVERLAY
   ================================================================ */
.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 45%;
    max-width: 320px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem;
    z-index: 2;
}

.slider-overlay .slide-title {
    font-family: var(--theme-font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: 1px;
}

.slider-overlay .slide-price {
    font-family: var(--theme-font-body);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--theme-primary);
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.slider-overlay .slide-price::before {
    content: '₹';
    font-size: 1.2rem;
    margin-right: 0.15rem;
}

.slider-overlay .enquiry-btn {
    background: #25D366;
    color: #FFFFFF;
    border: none;
    padding: 0.65rem 1.2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--theme-font-button);
    letter-spacing: 0.3px;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.slider-overlay .enquiry-btn:hover {
    background: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

/* ================================================================
   SLIDER DOTS
   ================================================================ */
.slider-dots {
    position: absolute;
    bottom: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.4rem;
    z-index: 3;
    padding: 0.35rem 0.6rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 1rem;
    backdrop-filter: blur(4px);
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot.active {
    background: var(--theme-primary);
    width: 24px;
    border-radius: 4px;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* ================================================================
   SHOP BY CATEGORY
   ================================================================ */
.category-section {
    background: var(--theme-bg);
    padding: 1.5rem 0;
    border-bottom: 1px solid #F3F3F3;
}

.category-scroll-container {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.25rem 1rem 0.75rem 1rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

.category-scroll-container::-webkit-scrollbar {
    height: 4px;
}

.category-scroll-container::-webkit-scrollbar-track {
    background: #F3F3F3;
    border-radius: 10px;
}

.category-scroll-container::-webkit-scrollbar-thumb {
    background: var(--theme-primary);
    border-radius: 10px;
}

.category-card {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.25s ease;
    background: none;
    border: none;
    padding: 0.25rem;
    scroll-snap-align: start;
    width: 100px;
}

.category-card:hover {
    transform: translateY(-4px);
}

.category-card:active {
    transform: scale(0.95);
}

.category-card .cat-img-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    background: #F3F3F3;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #E0E0E0;
    transition: all 0.25s ease;
    position: relative;
}

.category-card:hover .cat-img-wrapper {
    border-color: var(--theme-primary);
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.3);
    transform: scale(1.05);
}

.category-card .cat-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.category-card .cat-img-wrapper .cat-placeholder {
    color: #999;
    font-size: 1.8rem;
}

.category-card .cat-name {
    font-family: var(--theme-font-body);
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--theme-text);
    text-align: center;
    line-height: 1.2;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
    transition: color 0.2s ease;
}

.category-card:hover .cat-name {
    color: var(--theme-primary);
}

/* ================================================================
   REELS SECTION (Ads Videos - Horizontal Scroll)
   ================================================================ */
.reels-section {
    background: var(--theme-bg);
    padding: 1.5rem 0;
    border-bottom: 1px solid #F3F3F3;
}

.reels-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.5rem 1rem 1rem;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.reels-scroll::-webkit-scrollbar {
    height: 4px;
}

.reels-scroll::-webkit-scrollbar-track {
    background: #F3F3F3;
    border-radius: 10px;
}

.reels-scroll::-webkit-scrollbar-thumb {
    background: var(--theme-primary);
    border-radius: 10px;
}

.reel-card {
    flex-shrink: 0;
    width: 160px;
    height: 280px;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    background: #000;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    scroll-snap-align: start;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.reel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

.reel-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #FFFFFF;
    font-family: var(--theme-font-body);
    font-weight: 600;
    font-size: 0.8rem;
}

/* ================================================================
   FEATURED PRODUCTS
   ================================================================ */
.featured-section {
    background: var(--theme-bg);
    padding: 1.5rem 0;
    border-bottom: 1px solid #F3F3F3;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 0 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* ================================================================
   PRODUCT CARD
   ================================================================ */
.product-card {
    background: var(--theme-bg);
    border: 1px solid #E8E8E8;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--theme-primary);
    box-shadow: 0 4px 16px rgba(255, 153, 0, 0.15);
    transform: translateY(-2px);
}

.product-card .pc-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #F8F8F8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-card .pc-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.35s ease;
    padding: 0.5rem;
}

.product-card:hover .pc-image-wrapper img {
    transform: scale(1.06);
}

.product-card .pc-discount-badge {
    position: absolute;
    top: 0.4rem;
    left: 0.4rem;
    background: #CC0000;
    color: #FFFFFF;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.2rem 0.45rem;
    border-radius: 0.25rem;
    font-family: var(--theme-font-body);
    letter-spacing: 0.2px;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(204, 0, 0, 0.3);
}

.product-card .pc-info {
    padding: 0.6rem 0.65rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
}

.product-card .pc-title {
    font-family: var(--theme-font-body);
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--theme-text);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2rem;
    transition: color 0.2s ease;
}

.product-card:hover .pc-title {
    color: var(--theme-url);
}

.product-card .pc-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.product-card .pc-price {
    font-family: var(--theme-font-body);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--theme-text);
    line-height: 1;
}

.product-card .pc-price::before {
    content: '₹';
    font-size: 0.75rem;
    margin-right: 0.1rem;
    font-weight: 600;
}

.product-card .pc-original-price {
    font-family: var(--theme-font-body);
    font-weight: 500;
    font-size: 0.72rem;
    color: #999;
    text-decoration: line-through;
}

.product-card .pc-category {
    font-family: var(--theme-font-body);
    font-size: 0.65rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.product-card .pc-category i {
    font-size: 0.6rem;
    color: var(--theme-primary);
}

.product-card .pc-actions {
    display: flex;
    gap: 0.4rem;
    margin-top: auto;
    padding-top: 0.35rem;
}

.product-card .pc-cart-btn {
    flex: 1;
    background: var(--theme-accent);
    color: var(--theme-text);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    padding: 0.45rem 0.4rem;
    font-family: var(--theme-font-button);
    font-weight: 700;
    font-size: 0.68rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.product-card .pc-cart-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.product-card .pc-wa-btn {
    background: #25D366;
    color: #FFFFFF;
    border: none;
    border-radius: 1rem;
    padding: 0.45rem 0.55rem;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 36px;
}

.product-card .pc-wa-btn:hover {
    background: #1DA851;
    transform: translateY(-1px);
}

/* ================================================================
   CUSTOM SECTIONS (Admin Created)
   ================================================================ */
.custom-section {
    background: var(--theme-bg);
    padding: 1.5rem 0;
    border-bottom: 1px solid #F3F3F3;
}

.section-description {
    font-family: var(--theme-font-body);
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* ================================================================
   SKELETON LOADING
   ================================================================ */
@keyframes skeletonShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.skeleton-shimmer,
.skeleton-circle,
.skeleton-text,
.skeleton-text-small,
.skeleton-text-short,
.skeleton-price,
.skeleton-heading,
.skeleton-heading-white,
.skeleton-badge,
.skeleton-product-image,
.skeleton-offer-image,
.skeleton-reel-video {
    background: linear-gradient(90deg, #F0F0F0 25%, #E0E0E0 50%, #F0F0F0 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s ease-in-out infinite;
    border-radius: 0.5rem;
}

.skeleton-slider {
    width: 100%;
    height: 380px;
    background: #F3F3F3;
    position: relative;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.skeleton-slider .skeleton-shimmer {
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.skeleton-category-card {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100px;
    padding: 0.25rem;
}

.skeleton-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
}

.skeleton-text-small {
    width: 60px;
    height: 10px;
    border-radius: 4px;
}

.skeleton-heading {
    width: 180px;
    height: 22px;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.skeleton-heading-white {
    width: 280px;
    height: 32px;
    border-radius: 4px;
    background: linear-gradient(90deg, rgba(255,255,255,0.1) 25%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.1) 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s ease-in-out infinite;
    margin: 0.5rem auto;
}

.skeleton-product-card {
    background: var(--theme-bg);
    border: 1px solid #E8E8E8;
    border-radius: 0.5rem;
    overflow: hidden;
}

.skeleton-product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 0;
}

.skeleton-product-info {
    padding: 0.6rem 0.65rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.skeleton-text {
    width: 100%;
    height: 12px;
    border-radius: 4px;
}

.skeleton-text-short {
    width: 60%;
    height: 10px;
    border-radius: 4px;
}

.skeleton-price {
    width: 40%;
    height: 16px;
    border-radius: 4px;
    margin-top: 0.25rem;
}

.skeleton-reel-card {
    flex-shrink: 0;
    width: 160px;
    height: 280px;
    border-radius: 1rem;
    overflow: hidden;
}

.skeleton-reel-video {
    width: 100%;
    height: 100%;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 768px) {
    .hero-slider { height: 280px; }
    .skeleton-slider { height: 280px; }

    .slider-overlay {
        width: 60%;
        max-width: 260px;
        padding: 1rem;
    }

    .slider-overlay .slide-title { font-size: 1.1rem; }
    .slider-overlay .slide-price { font-size: 1.3rem; margin-bottom: 0.75rem; }
    .slider-overlay .enquiry-btn { padding: 0.5rem 0.9rem; font-size: 0.75rem; }

    .slider-dots { bottom: 0.5rem; padding: 0.25rem 0.5rem; }
    .slider-dot { width: 6px; height: 6px; }
    .slider-dot.active { width: 18px; }

    .category-card { width: 85px; }
    .category-card .cat-img-wrapper { width: 75px; height: 75px; }
    .category-card .cat-name { font-size: 0.72rem; max-width: 85px; }
    .skeleton-category-card { width: 85px; }
    .skeleton-circle { width: 75px; height: 75px; }

    .reel-card, .skeleton-reel-card { width: 140px; height: 240px; }

    .products-grid { gap: 0.6rem; padding: 0 0.75rem; }
    .product-card .pc-title { font-size: 0.75rem; }
    .product-card .pc-price { font-size: 0.95rem; }
    .product-card .pc-cart-btn { font-size: 0.62rem; padding: 0.4rem 0.3rem; }
}

@media (max-width: 480px) {
    .hero-slider { height: 220px; }
    .skeleton-slider { height: 220px; }

    .slider-overlay { width: 65%; max-width: 220px; padding: 0.75rem; }
    .slider-overlay .slide-title { font-size: 0.95rem; }
    .slider-overlay .slide-price { font-size: 1.15rem; }
    .slider-overlay .enquiry-btn { padding: 0.4rem 0.75rem; font-size: 0.7rem; }

    .category-card { width: 80px; }
    .category-card .cat-img-wrapper { width: 70px; height: 70px; }
    .category-card .cat-name { font-size: 0.68rem; max-width: 80px; }

    .reel-card, .skeleton-reel-card { width: 130px; height: 220px; }

    .products-grid { gap: 0.5rem; padding: 0 0.5rem; }
    .product-card .pc-info { padding: 0.5rem 0.5rem 0.6rem; }
    .product-card .pc-title { font-size: 0.72rem; min-height: 1.8rem; }
    .product-card .pc-price { font-size: 0.9rem; }
    .product-card .pc-cart-btn { font-size: 0.58rem; padding: 0.35rem 0.2rem; }
    .product-card .pc-cart-btn i { display: none; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-slider { height: 420px; }
    .slider-overlay .slide-title { font-size: 1.8rem; }
    .slider-overlay .slide-price { font-size: 2rem; }

    .category-card { width: 110px; }
    .category-card .cat-img-wrapper { width: 100px; height: 100px; }

    .reel-card { width: 180px; height: 320px; }

    .products-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; padding: 0 1.5rem; }
}

@media (min-width: 1025px) {
    .hero-slider { height: 500px; }
    .slider-overlay { width: 40%; max-width: 420px; padding: 2.5rem; }
    .slider-overlay .slide-title { font-size: 2.2rem; }
    .slider-overlay .slide-price { font-size: 2.5rem; margin-bottom: 1.5rem; }

    .category-card { width: 130px; }
    .category-card .cat-img-wrapper { width: 110px; height: 110px; }
    .category-card .cat-name { font-size: 0.9rem; max-width: 130px; }
    .category-scroll-container { gap: 1.25rem; padding: 0.5rem 3rem 1rem 3rem; }

    .reel-card { width: 200px; height: 356px; }

    .products-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; padding: 0 3rem; }
}

@media (min-width: 1920px) {
    .hero-slider { height: 650px; }
    .slider-overlay { max-width: 520px; padding: 3rem; }
    .slider-overlay .slide-title { font-size: 2.8rem; }
    .slider-overlay .slide-price { font-size: 3.2rem; }

    .category-card { width: 160px; }
    .category-card .cat-img-wrapper { width: 140px; height: 140px; }

    .reel-card { width: 240px; height: 427px; }

    .products-grid { grid-template-columns: repeat(5, 1fr); gap: 1.5rem; max-width: 1800px; padding: 0 5rem; }
}
/* ================================================================
   PART 3: PRODUCT DETAILS + CATEGORY PAGE + CART
   ================================================================ */

/* PRODUCT DETAILS */
.product-details-page {
    background: var(--theme-bg);
    min-height: 100vh;
    padding-bottom: 100px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.details-header {
    background: var(--theme-header-bg);
    border-bottom: 1px solid #E8E8E8;
    padding: 0.75rem 1rem;
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.details-back-btn {
    background: #F3F3F3;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--theme-text);
    font-size: 1rem;
    flex-shrink: 0;
    position: relative;
}

.details-back-btn:hover {
    background: var(--theme-primary);
    color: #FFFFFF;
    transform: scale(1.05);
}

.details-header .details-title {
    font-family: var(--theme-font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--theme-text);
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* GALLERY */
.details-gallery {
    background: var(--theme-bg);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    border-bottom: 1px solid #F3F3F3;
}

.details-main-image {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1 / 1;
    background: #F8F8F8;
    border-radius: 0.75rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid #E8E8E8;
}

.details-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
}

.details-thumbnails {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0.25rem;
    width: 100%;
    justify-content: center;
    max-width: 500px;
}

.details-thumb {
    width: 60px;
    height: 60px;
    border-radius: 0.5rem;
    border: 2px solid #E8E8E8;
    background: #F8F8F8;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s ease;
    padding: 0.15rem;
}

.details-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.details-thumb.active {
    border-color: var(--theme-primary);
    box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.2);
    transform: scale(1.05);
}

/* DETAILS INFO */
.details-info {
    padding: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.details-info .di-title {
    font-family: var(--theme-font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--theme-text);
    line-height: 1.35;
    margin-bottom: 0.5rem;
}

.details-info .di-category {
    font-family: var(--theme-font-body);
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.details-info .di-category i {
    color: var(--theme-primary);
    font-size: 0.7rem;
}

.details-price-block {
    background: #FFFBF0;
    border: 1px solid #FFE0B8;
    border-radius: 0.5rem;
    padding: 0.85rem 1rem;
    margin-bottom: 1rem;
}

.details-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.details-price {
    font-family: var(--theme-font-body);
    font-weight: 800;
    font-size: 1.7rem;
    color: #CC0000;
    line-height: 1;
}

.details-price::before {
    content: '₹';
    font-size: 1.1rem;
    margin-right: 0.15rem;
}

.details-original-price {
    font-family: var(--theme-font-body);
    font-weight: 500;
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

.details-discount-tag {
    background: #CC0000;
    color: #FFFFFF;
    font-family: var(--theme-font-body);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

.details-price-block .tax-note {
    font-family: var(--theme-font-body);
    font-size: 0.7rem;
    color: #666;
    margin-top: 0.35rem;
}

/* SIZE */
.details-size-section { margin-bottom: 1rem; }
.details-size-label {
    font-family: var(--theme-font-body);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--theme-text);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.details-size-label .size-chart-link {
    color: var(--theme-url);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    background: none;
    border: none;
    text-decoration: underline;
}

.details-size-options { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.size-option {
    background: var(--theme-bg);
    border: 2px solid #E0E0E0;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--theme-font-body);
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--theme-text);
    cursor: pointer;
    transition: all 0.2s ease;
}

.size-option:hover {
    border-color: var(--theme-primary);
    transform: scale(1.05);
}

.size-option.active {
    background: var(--theme-primary);
    border-color: var(--theme-primary);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.3);
}

/* QUANTITY */
.details-quantity-section { margin-bottom: 1rem; }
.details-quantity-label {
    font-family: var(--theme-font-body);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--theme-text);
    margin-bottom: 0.5rem;
}

.quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 2px solid #E0E0E0;
    border-radius: 0.5rem;
    overflow: hidden;
    background: var(--theme-bg);
}

.quantity-btn {
    background: #F8F8F8;
    border: none;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    color: var(--theme-text);
    transition: all 0.2s ease;
    font-weight: 700;
}

.quantity-btn:hover {
    background: var(--theme-primary);
    color: #FFFFFF;
}

.quantity-btn:disabled { opacity: 0.4; cursor: not-allowed; }

.quantity-value {
    min-width: 55px;
    text-align: center;
    font-family: var(--theme-font-body);
    font-weight: 700;
    font-size: 1rem;
    color: var(--theme-text);
    padding: 0 0.5rem;
}

/* ACTIONS */
.details-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.details-add-cart-btn {
    background: var(--theme-accent);
    color: var(--theme-text);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 2rem;
    padding: 0.9rem 1.5rem;
    font-family: var(--theme-font-button);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.details-add-cart-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.details-wa-enquiry-btn {
    background: #25D366;
    color: #FFFFFF;
    border: none;
    border-radius: 2rem;
    padding: 0.9rem 1.5rem;
    font-family: var(--theme-font-button);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.details-wa-enquiry-btn:hover {
    background: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

/* DELIVERY */
.details-delivery-info {
    background: #F8F8F8;
    border-radius: 0.5rem;
    padding: 0.85rem 1rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.delivery-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-family: var(--theme-font-body);
    font-size: 0.82rem;
    color: #333;
    line-height: 1.4;
}

.delivery-item i {
    color: var(--theme-primary);
    font-size: 0.95rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}

.delivery-item strong { color: var(--theme-text); font-weight: 700; }

/* DESCRIPTION */
.details-section-block {
    margin-bottom: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid #F3F3F3;
}

.details-section-title {
    font-family: var(--theme-font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--theme-text);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.details-section-title i { color: var(--theme-primary); font-size: 0.95rem; }

.details-description {
    font-family: var(--theme-font-body);
    font-size: 0.85rem;
    color: #444;
    line-height: 1.65;
    white-space: pre-wrap;
    word-break: break-word;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--theme-font-body);
    font-size: 0.82rem;
    border: 1px solid #E8E8E8;
    border-radius: 0.5rem;
    overflow: hidden;
}

.specs-table tr { border-bottom: 1px solid #F3F3F3; }
.specs-table tr:last-child { border-bottom: none; }
.specs-table tr:nth-child(even) { background: #FAFAFA; }
.specs-table td { padding: 0.6rem 0.85rem; vertical-align: top; }
.specs-table td:first-child { font-weight: 700; color: var(--theme-text); width: 40%; }
.specs-table td:last-child { color: #555; }

/* SUGGESTIONS */
.suggestions-section {
    padding: 1.25rem 0 1.5rem;
    border-top: 1px solid #F3F3F3;
    background: var(--theme-bg);
}

.suggestions-scroll {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.25rem 1rem 0.75rem;
    scroll-behavior: smooth;
}

.suggestion-card {
    flex-shrink: 0;
    width: 140px;
    background: var(--theme-bg);
    border: 1px solid #E8E8E8;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.25s ease;
}

.suggestion-card:hover {
    border-color: var(--theme-primary);
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.15);
    transform: translateY(-2px);
}

.suggestion-card .sc-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #F8F8F8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.suggestion-card .sc-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.4rem;
}

.suggestion-card .sc-info { padding: 0.5rem; }

.suggestion-card .sc-title {
    font-family: var(--theme-font-body);
    font-weight: 600;
    font-size: 0.72rem;
    color: var(--theme-text);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 1.9rem;
    margin-bottom: 0.3rem;
}

.suggestion-card .sc-price {
    font-family: var(--theme-font-body);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--theme-text);
}

.suggestion-card .sc-price::before {
    content: '₹';
    font-size: 0.65rem;
    margin-right: 0.1rem;
}

/* CART */
.cart-page {
    background: var(--theme-bg);
    min-height: 100vh;
    padding-bottom: 100px;
    animation: fadeIn 0.3s ease;
}

.cart-header {
    background: var(--theme-header-bg);
    border-bottom: 1px solid #E8E8E8;
    padding: 0.75rem 1rem;
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.cart-header .cart-title {
    font-family: var(--theme-font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--theme-text);
    flex: 1;
}

.cart-header .cart-count-label {
    font-family: var(--theme-font-body);
    font-size: 0.8rem;
    color: #666;
}

.cart-items-list {
    padding: 1rem;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cart-item {
    display: flex;
    gap: 0.75rem;
    background: var(--theme-bg);
    border: 1px solid #E8E8E8;
    border-radius: 0.5rem;
    padding: 0.75rem;
    transition: all 0.2s ease;
}

.cart-item:hover {
    border-color: var(--theme-primary);
    box-shadow: 0 2px 8px rgba(255, 153, 0, 0.1);
}

.cart-item .ci-image {
    width: 80px;
    height: 80px;
    border-radius: 0.4rem;
    background: #F8F8F8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid #F0F0F0;
}

.cart-item .ci-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.25rem;
}

.cart-item .ci-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cart-item .ci-title {
    font-family: var(--theme-font-body);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--theme-text);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-item .ci-category {
    font-family: var(--theme-font-body);
    font-size: 0.7rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.cart-item .ci-category i { color: var(--theme-primary); font-size: 0.6rem; }

.cart-item .ci-size-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    background: #F3F3F3;
    color: #333;
    font-family: var(--theme-font-body);
    font-size: 0.68rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 1rem;
    width: fit-content;
    margin-top: 0.1rem;
}

.cart-item .ci-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-top: 0.15rem;
    flex-wrap: wrap;
}

.cart-item .ci-price {
    font-family: var(--theme-font-body);
    font-weight: 700;
    font-size: 1rem;
    color: var(--theme-text);
}

.cart-item .ci-price::before {
    content: '₹';
    font-size: 0.7rem;
    margin-right: 0.1rem;
}

.cart-item .ci-original {
    font-family: var(--theme-font-body);
    font-size: 0.7rem;
    color: #999;
    text-decoration: line-through;
}

.cart-item .ci-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.5rem;
    flex-shrink: 0;
}

.cart-item .ci-remove-btn {
    background: none;
    border: none;
    color: #CC0000;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 50%;
    transition: all 0.2s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item .ci-remove-btn:hover {
    background: #FFF0F0;
    transform: scale(1.1);
}

.cart-item .ci-quantity {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid #E0E0E0;
    border-radius: 1rem;
    overflow: hidden;
    background: var(--theme-bg);
}

.cart-item .ci-quantity .cq-btn {
    background: var(--theme-bg);
    border: none;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.75rem;
    color: var(--theme-text);
    transition: all 0.2s ease;
    font-weight: 700;
}

.cart-item .ci-quantity .cq-btn:hover {
    background: var(--theme-primary);
    color: #FFFFFF;
}

.cart-item .ci-quantity .cq-btn:disabled { opacity: 0.3; cursor: not-allowed; }

.cart-item .ci-quantity .cq-value {
    min-width: 30px;
    text-align: center;
    font-family: var(--theme-font-body);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--theme-text);
    padding: 0 0.15rem;
}

.cart-summary {
    max-width: 900px;
    margin: 1rem auto;
    padding: 1rem;
    background: #F8F8F8;
    border-radius: 0.5rem;
    border: 1px solid #E8E8E8;
}

.cart-summary-title {
    font-family: var(--theme-font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--theme-text);
    margin-bottom: 0.85rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px dashed #CCC;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--theme-font-body);
    font-size: 0.85rem;
    color: #333;
    padding: 0.4rem 0;
}

.cart-summary-row.total {
    border-top: 2px solid #E0E0E0;
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    font-family: var(--theme-font-body);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--theme-text);
}

.cart-summary-row.total .value { color: #CC0000; }
.cart-summary-row .free-tag { color: #00A651; font-weight: 700; }

.cart-actions {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.cart-wa-order-btn {
    background: #25D366;
    color: #FFFFFF;
    border: none;
    border-radius: 2rem;
    padding: 0.9rem 1.5rem;
    font-family: var(--theme-font-button);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.cart-wa-order-btn:hover {
    background: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.cart-continue-btn {
    background: var(--theme-bg);
    color: var(--theme-text);
    border: 2px solid #E0E0E0;
    border-radius: 2rem;
    padding: 0.9rem 1.5rem;
    font-family: var(--theme-font-button);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cart-continue-btn:hover {
    border-color: var(--theme-primary);
    color: var(--theme-primary);
    transform: translateY(-2px);
}

.cart-empty { text-align: center; padding: 4rem 1rem; }
.cart-empty i { font-size: 4rem; color: #DDD; margin-bottom: 1rem; }
.cart-empty h3 {
    font-family: var(--theme-font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--theme-text);
    margin-bottom: 0.5rem;
}

.cart-empty p {
    font-family: var(--theme-font-body);
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 1.5rem;
}

.cart-empty .cart-shop-btn {
    background: var(--theme-primary);
    color: var(--theme-button-text);
    border: none;
    border-radius: 2rem;
    padding: 0.75rem 2rem;
    font-family: var(--theme-font-button);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-empty .cart-shop-btn:hover { opacity: 0.9; transform: translateY(-2px); }

/* TOAST */
.toast {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--theme-secondary);
    color: #FFFFFF;
    padding: 0.75rem 1.25rem;
    border-radius: 2rem;
    font-family: var(--theme-font-body);
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    animation: toastIn 0.3s ease;
    max-width: 90%;
}

.toast.success { background: #00A651; }
.toast.error { background: #CC0000; }

@keyframes toastIn {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .details-info { padding: 0.75rem; }
    .details-info .di-title { font-size: 1rem; }
    .details-price { font-size: 1.4rem; }
    .size-option { width: 40px; height: 40px; font-size: 0.75rem; }
    .suggestion-card { width: 120px; }
    .cart-item { gap: 0.5rem; padding: 0.6rem; }
    .cart-item .ci-image { width: 70px; height: 70px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .details-gallery { flex-direction: row; align-items: flex-start; gap: 1rem; }
    .details-main-image { flex: 1; }
    .details-thumbnails { flex-direction: column; width: auto; max-width: 70px; overflow-y: auto; max-height: 400px; }
}

@media (min-width: 1025px) {
    .product-details-page .details-content-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
        padding: 1.5rem 3rem;
    }
    .details-gallery { position: sticky; top: 80px; flex-direction: column; border-bottom: none; padding: 0; }
    .details-info { padding: 0; max-width: 100%; }
    .details-info .di-title { font-size: 1.5rem; }
    .details-price { font-size: 2.2rem; }
    .details-actions { flex-direction: row; flex-wrap: wrap; }
    .details-add-cart-btn, .details-wa-enquiry-btn { flex: 1; min-width: 200px; }
    .suggestion-card { width: 180px; }
}

@media (min-width: 1920px) {
    .details-info .di-title { font-size: 1.8rem; }
    .details-price { font-size: 2.5rem; }
    .suggestion-card { width: 220px; }
}
/* ================================================================
   PART 4: OFFER SECTION + SOCIAL MEDIA + MARKETPLACE
   ================================================================ */

/* OFFER SECTION */
.offer-section-public {
    background: linear-gradient(135deg, var(--theme-secondary) 0%, #131A22 100%);
    padding: 2rem 1rem;
    margin: 1rem 0;
    position: relative;
    overflow: hidden;
}

.offer-section-public::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 153, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: rotateBg 15s linear infinite;
}

@keyframes rotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.offer-section-header {
    max-width: 1200px;
    margin: 0 auto 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(90deg, #FF0000, #FF6B35);
    color: #FFFFFF;
    padding: 0.35rem 1rem;
    border-radius: 2rem;
    font-family: var(--theme-font-body);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    animation: pulseBadge 2s ease-in-out infinite;
}

@keyframes pulseBadge {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.5); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 12px rgba(255, 0, 0, 0); }
}

.offer-heading {
    font-family: var(--theme-font-heading);
    font-weight: 700;
    font-size: 1.75rem;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.offer-heading span { color: var(--theme-primary); }

.offer-subheading {
    font-family: var(--theme-font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.offer-products-scroll {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.25rem 1rem 0.75rem;
    scroll-behavior: smooth;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.offer-products-scroll::-webkit-scrollbar { height: 4px; }
.offer-products-scroll::-webkit-scrollbar-thumb { background: var(--theme-primary); border-radius: 10px; }

.offer-product-card {
    flex-shrink: 0;
    width: 180px;
    background: var(--theme-bg);
    border-radius: 0.75rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.offer-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(255, 0, 0, 0.25);
}

.offer-timer-badge {
    position: absolute;
    top: 0.4rem;
    left: 0.4rem;
    background: linear-gradient(90deg, #FF0000, #CC0000);
    color: #FFFFFF;
    padding: 0.25rem 0.5rem;
    border-radius: 0.4rem;
    font-family: var(--theme-font-body);
    font-weight: 700;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.4);
    animation: timerPulse 1s ease-in-out infinite;
}

@keyframes timerPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.offer-discount-badge {
    position: absolute;
    top: 0.4rem;
    right: 0.4rem;
    background: var(--theme-primary);
    color: var(--theme-text);
    padding: 0.2rem 0.45rem;
    border-radius: 0.4rem;
    font-family: var(--theme-font-body);
    font-weight: 800;
    font-size: 0.65rem;
    z-index: 3;
}

.offer-product-card .opc-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #F8F8F8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.offer-product-card .opc-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.offer-product-card:hover .opc-image-wrapper img { transform: scale(1.08); }

.offer-product-card .opc-info {
    padding: 0.6rem 0.65rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.offer-product-card .opc-title {
    font-family: var(--theme-font-body);
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--theme-text);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2rem;
}

.offer-product-card .opc-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.offer-product-card .opc-price {
    font-family: var(--theme-font-body);
    font-weight: 800;
    font-size: 1.05rem;
    color: #CC0000;
}

.offer-product-card .opc-price::before {
    content: '₹';
    font-size: 0.75rem;
    margin-right: 0.1rem;
}

.offer-product-card .opc-original {
    font-family: var(--theme-font-body);
    font-size: 0.7rem;
    color: #999;
    text-decoration: line-through;
}

.offer-product-card .opc-enquiry-btn {
    width: 100%;
    background: #25D366;
    color: #FFFFFF;
    border: none;
    border-radius: 1rem;
    padding: 0.45rem;
    font-family: var(--theme-font-button);
    font-weight: 700;
    font-size: 0.72rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    margin-top: 0.15rem;
}

.offer-product-card .opc-enquiry-btn:hover { background: #1DA851; transform: scale(1.02); }

/* FOLLOW US */
.follow-us-section {
    padding: 2rem 1rem;
    background: #FAFAFA;
    border-bottom: 1px solid #F0F0F0;
}

.follow-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    max-width: 700px;
    margin: 0 auto;
}

.social-card-full {
    border-radius: 0.75rem;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
    min-height: 100px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-card-full:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-card-full.instagram { background: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%); }
.social-card-full.whatsapp { background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); }
.social-card-full.youtube { background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%); }
.social-card-full.facebook { background: linear-gradient(135deg, #1877F2 0%, #0C63D4 100%); }

.social-card-full .scf-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #FFFFFF;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-card-full .scf-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.social-card-full .scf-label {
    font-family: var(--theme-font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: #FFFFFF;
}

.social-card-full .scf-username {
    font-family: var(--theme-font-body);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.85);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.social-card-full .scf-btn {
    background: rgba(255, 255, 255, 0.95);
    color: var(--theme-text);
    border: none;
    border-radius: 1rem;
    padding: 0.3rem 0.7rem;
    font-family: var(--theme-font-button);
    font-weight: 700;
    font-size: 0.65rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    width: fit-content;
    margin-top: 0.25rem;
}

/* MARKETPLACE */
.marketplace-section-public {
    padding: 2rem 1rem;
    background: var(--theme-bg);
    border-bottom: 1px solid #F0F0F0;
}

.marketplace-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 600px;
    margin: 0 auto;
}

.marketplace-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--theme-bg);
    border: 1px solid #E8E8E8;
    border-radius: 0.75rem;
    padding: 0.85rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.marketplace-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.marketplace-item.amazon:hover { border-color: #FF9900; }
.marketplace-item.flipkart:hover { border-color: #2874F0; }
.marketplace-item.meesho:hover { border-color: #F43397; }

.marketplace-item .marketplace-logo {
    width: 52px;
    height: 52px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: #FFFFFF;
    flex-shrink: 0;
}

.marketplace-item.amazon .marketplace-logo { background: linear-gradient(135deg, #FF9900, #FF6600); color: #111; }
.marketplace-item.flipkart .marketplace-logo { background: linear-gradient(135deg, #2874F0, #1A5FD4); }
.marketplace-item.meesho .marketplace-logo { background: linear-gradient(135deg, #F43397, #D42680); }

.marketplace-item .marketplace-info { flex: 1; min-width: 0; }

.marketplace-item .marketplace-name {
    font-family: var(--theme-font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--theme-text);
    margin-bottom: 0.1rem;
}

.marketplace-item .marketplace-desc {
    font-family: var(--theme-font-body);
    font-size: 0.75rem;
    color: #999;
}

.marketplace-item .marketplace-arrow {
    color: #CCC;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.marketplace-item:hover .marketplace-arrow { transform: translateX(4px); color: var(--theme-primary); }

/* RESPONSIVE */
@media (max-width: 768px) {
    .offer-section-public { padding: 1.5rem 0.75rem; }
    .offer-heading { font-size: 1.35rem; }
    .offer-product-card { width: 160px; }
    .follow-us-section { padding: 1.5rem 0.75rem; }
    .social-card-full { padding: 0.85rem; min-height: 90px; gap: 0.6rem; }
    .social-card-full .scf-icon { width: 42px; height: 42px; font-size: 1.3rem; }
    .marketplace-section-public { padding: 1.5rem 0.75rem; }
    .marketplace-item { padding: 0.7rem 0.85rem; gap: 0.75rem; }
    .marketplace-item .marketplace-logo { width: 46px; height: 46px; font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .offer-heading { font-size: 1.15rem; }
    .offer-product-card { width: 140px; }
    .social-card-full { padding: 0.75rem; min-height: 80px; gap: 0.5rem; }
    .social-card-full .scf-icon { width: 36px; height: 36px; font-size: 1.1rem; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .offer-heading { font-size: 2rem; }
    .offer-product-card { width: 200px; }
    .follow-us-grid { grid-template-columns: repeat(4, 1fr); max-width: 1000px; }
}

@media (min-width: 1025px) {
    .offer-section-public { padding: 3rem; }
    .offer-heading { font-size: 2.5rem; }
    .offer-product-card { width: 220px; }
    .follow-us-section { padding: 3rem; }
    .follow-us-grid { grid-template-columns: repeat(4, 1fr); max-width: 1200px; }
    .marketplace-section-public { padding: 3rem; }
}

@media (min-width: 1920px) {
    .offer-section-public { padding: 4rem 5rem; }
    .offer-heading { font-size: 3rem; }
    .offer-product-card { width: 260px; }
}
/* ================================================================
   PART 5: MONSUN EFFECTS + TITLE FONTS + FOOTER + FINAL
   ================================================================ */

/* MONSUN EFFECTS */
.weather-effects {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
    contain: strict;
}

.rain-drop {
    position: absolute;
    top: -20px;
    width: 2px;
    height: 18px;
    background: linear-gradient(to bottom, transparent, rgba(100, 150, 220, 0.7));
    animation: rainFall linear infinite;
    border-radius: 1px;
    will-change: transform;
    backface-visibility: hidden;
}

@keyframes rainFall {
    0% { transform: translate3d(0, -20px, 0); opacity: 1; }
    100% { transform: translate3d(-30px, 100vh, 0); opacity: 0.3; }
}

.snow-flake {
    position: absolute;
    top: -20px;
    color: #FFFFFF;
    opacity: 0.9;
    animation: snowFall linear infinite;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.8);
    will-change: transform;
    backface-visibility: hidden;
}

@keyframes snowFall {
    0% { transform: translate3d(0, -20px, 0) rotate(0deg); opacity: 0.9; }
    100% { transform: translate3d(40px, 100vh, 0) rotate(360deg); opacity: 0.3; }
}

.lightning-flash {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #FFFFFF;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
}

.lightning-flash.active { animation: lightningFlash 0.4s ease-out; }

@keyframes lightningFlash {
    0% { opacity: 0; }
    10% { opacity: 0.8; }
    20% { opacity: 0.1; }
    30% { opacity: 0.7; }
    100% { opacity: 0; }
}

.firework {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    bottom: 0;
    animation: fireworkExplode 2.5s ease-out infinite;
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
}

@keyframes fireworkExplode {
    0% { transform: translate3d(0, 0, 0) scale(1); opacity: 1; }
    60% { transform: translate3d(0, -50vh, 0) scale(1); opacity: 1; }
    85% { transform: translate3d(0, -60vh, 0) scale(6); opacity: 0.6; }
    100% { transform: translate3d(0, -65vh, 0) scale(10); opacity: 0; }
}

.rocket {
    position: absolute;
    bottom: 0;
    width: 3px;
    height: 20px;
    background: linear-gradient(to top, transparent, #FFD700, #FF6B35);
    border-radius: 3px 3px 0 0;
    animation: rocketFly 3s ease-out infinite;
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
}

@keyframes rocketFly {
    0% { transform: translate3d(0, 0, 0); opacity: 1; }
    75% { transform: translate3d(0, -55vh, 0); opacity: 1; }
    100% { transform: translate3d(0, -65vh, 0); opacity: 0; }
}

/* MONSUN TITLE FONTS */
.title-char {
    position: relative;
    display: inline-block;
}

.title-rain .title-char {
    display: inline-block;
    animation: titleRainWave 2s ease-in-out infinite;
    color: #4A90D9 !important;
    text-shadow: 0 0 8px rgba(100, 150, 220, 0.6) !important;
}

.title-rain .title-char:nth-child(1) { animation-delay: 0s; }
.title-rain .title-char:nth-child(2) { animation-delay: 0.1s; }
.title-rain .title-char:nth-child(3) { animation-delay: 0.2s; }
.title-rain .title-char:nth-child(4) { animation-delay: 0.3s; }
.title-rain .title-char:nth-child(5) { animation-delay: 0.4s; }
.title-rain .title-char:nth-child(6) { animation-delay: 0.5s; }

@keyframes titleRainWave {
    0%, 100% { transform: translateY(0); text-shadow: 0 0 8px rgba(100, 150, 220, 0.6); }
    50% { transform: translateY(-5px); text-shadow: 0 0 18px rgba(100, 150, 220, 1); }
}

.title-rain .title-char::before {
    content: '💧';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.55rem;
    animation: dropFall 1.5s ease-in infinite;
    opacity: 0;
    pointer-events: none;
}

@keyframes dropFall {
    0% { top: -12px; opacity: 0; }
    30% { opacity: 1; }
    100% { top: 10px; opacity: 0; }
}

.title-snow .title-char {
    display: inline-block;
    animation: titleSnowFrost 3s ease-in-out infinite;
    color: #E8F4FD !important;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8) !important;
}

@keyframes titleSnowFrost {
    0%, 100% { text-shadow: 0 0 8px rgba(255, 255, 255, 0.7); color: #E8F4FD; }
    50% { text-shadow: 0 0 20px rgba(255, 255, 255, 1); color: #FFFFFF; }
}

.title-snow .title-char::before {
    content: '❄';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.55rem;
    color: #FFFFFF;
    animation: snowOnChar 3s ease-in-out infinite;
    opacity: 0.9;
    pointer-events: none;
}

@keyframes snowOnChar {
    0%, 100% { opacity: 0.4; transform: translateX(-50%) scale(0.8); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.title-diwali .title-char {
    display: inline-block;
    animation: titleDiwaliGlow 2.5s ease-in-out infinite;
    color: #FFD700 !important;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6) !important;
}

.title-diwali .title-char:nth-child(odd) { animation-delay: 0.4s; }

@keyframes titleDiwaliGlow {
    0%, 100% { text-shadow: 0 0 8px rgba(255, 215, 0, 0.6); color: #FFD700; }
    50% { text-shadow: 0 0 18px rgba(255, 215, 0, 0.9), 0 0 30px rgba(255, 107, 53, 0.6); color: #FFFFFF; }
}

.title-diwali .title-char::before {
    content: '🪔';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.55rem;
    animation: diyaGlow 2.5s ease-in-out infinite;
    opacity: 0;
    pointer-events: none;
}

.title-diwali .title-char:nth-child(3n+1)::before { animation-delay: 0s; opacity: 1; }
.title-diwali .title-char:nth-child(3n+2)::before { animation-delay: 0.8s; opacity: 1; }
.title-diwali .title-char:nth-child(3n)::before { animation-delay: 1.6s; opacity: 1; }

@keyframes diyaGlow {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.7; }
    50% { transform: translateX(-50%) scale(1.15); opacity: 1; }
}

/* FOOTER */
.footer {
    background: var(--theme-secondary);
    color: #FFFFFF;
    padding: 2.5rem 1rem 1.5rem;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: none;
    background: transparent;
    flex-shrink: 0;
}

.footer-logo-placeholder {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #131A22;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-family: var(--theme-font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.footer-brand-info .footer-brand-name {
    font-family: var(--theme-font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    color: #FFFFFF;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-brand-info .footer-tagline {
    font-family: var(--theme-font-body);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.15rem;
}

.footer-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
    margin-bottom: 1.75rem;
}

.footer-feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0.5rem;
    padding: 0.6rem 0.75rem;
    transition: all 0.3s ease;
}

.footer-feature:hover {
    background: rgba(255, 153, 0, 0.08);
    border-color: rgba(255, 153, 0, 0.25);
    transform: translateY(-2px);
}

.footer-feature i {
    color: var(--theme-primary);
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.footer-feature .feature-text {
    font-family: var(--theme-font-body);
    font-weight: 600;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.3;
}

.footer-description {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--theme-primary);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.footer-description p {
    font-family: var(--theme-font-body);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

.footer-description p strong { color: var(--theme-primary); font-weight: 700; }

.footer-social-row {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
}

.footer-social-icon:hover { transform: translateY(-4px); color: #FFFFFF; border-color: transparent; }
.footer-social-icon.instagram:hover { background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF); }
.footer-social-icon.whatsapp:hover { background: #25D366; }
.footer-social-icon.facebook:hover { background: #1877F2; }
.footer-social-icon.youtube:hover { background: #FF0000; }

.footer-bottom { text-align: center; padding-top: 0.5rem; }

.footer-bottom .footer-copyright {
    font-family: var(--theme-font-body);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 0.25rem;
}

.footer-bottom .footer-made-with {
    font-family: var(--theme-font-body);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.25);
}

.footer-bottom .footer-made-with i { color: var(--theme-primary); }

/* UTILITIES */
.fade-in { animation: fadeIn 0.3s ease; }
.slide-up { animation: slideUp 0.35s ease; }

@keyframes slideUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

button:focus-visible, input:focus-visible, a:focus-visible {
    outline: 2px solid var(--theme-primary);
    outline-offset: 2px;
}

::selection { background: var(--theme-primary); color: var(--theme-text); }
::-moz-selection { background: var(--theme-primary); color: var(--theme-text); }

* { -webkit-tap-highlight-color: transparent; }

@media print {
    .header, .bottom-nav, .offer-title-bar, .cart-actions, .details-actions, .weather-effects {
        display: none !important;
    }
    .main-content { padding-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .rain-drop, .snow-flake, .firework, .rocket { display: none !important; }
}

/* FOOTER RESPONSIVE */
@media (max-width: 768px) {
    .footer { padding: 2rem 0.75rem 1.25rem; }
    .footer-brand-info .footer-brand-name { font-size: 1.3rem; letter-spacing: 2px; }
    .footer-feature { padding: 0.5rem 0.6rem; }
    .footer-feature i { font-size: 1rem; }
    .footer-feature .feature-text { font-size: 0.72rem; }
    .footer-social-icon { width: 40px; height: 40px; font-size: 1rem; }
}

@media (max-width: 480px) {
    .footer-brand-info .footer-brand-name { font-size: 1.15rem; letter-spacing: 1.5px; }
    .footer-features { gap: 0.6rem; }
    .footer-feature .feature-text { font-size: 0.68rem; }
    .footer-social-icon { width: 38px; height: 38px; font-size: 0.95rem; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .footer-features { grid-template-columns: repeat(4, 1fr); }
    .footer-brand-info .footer-brand-name { font-size: 1.8rem; }
}

@media (min-width: 1025px) {
    .footer { padding: 3rem 3rem 2rem; }
    .footer-features { grid-template-columns: repeat(4, 1fr); }
    .footer-brand-info .footer-brand-name { font-size: 2rem; }
    .footer-social-icon { width: 48px; height: 48px; font-size: 1.3rem; }
}

@media (min-width: 1920px) {
    .footer { padding: 4rem 5rem 2.5rem; }
    .footer-brand-info .footer-brand-name { font-size: 2.5rem; letter-spacing: 4px; }
    .footer-feature .feature-text { font-size: 0.95rem; }
    .footer-description p { font-size: 1rem; }
    .footer-social-icon { width: 56px; height: 56px; font-size: 1.5rem; }
}
/* ================================================================
   REEL CARD WRAPPER (With Enquiry Button)
   ================================================================ */
.reel-card-wrapper {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    scroll-snap-align: start;
}

.reel-card-wrapper .reel-card {
    width: 160px;
    height: 280px;
    flex-shrink: 0;
}

.reel-enquiry-btn {
    width: 100%;
    background: #25D366;
    color: #FFFFFF;
    border: none;
    border-radius: 1rem;
    padding: 0.5rem;
    font-family: var(--theme-font-button);
    font-weight: 700;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.reel-enquiry-btn:hover {
    background: #1DA851;
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .reel-card-wrapper .reel-card {
        width: 140px;
        height: 240px;
    }
}

@media (max-width: 480px) {
    .reel-card-wrapper .reel-card {
        width: 130px;
        height: 220px;
    }
}

@media (min-width: 1025px) {
    .reel-card-wrapper .reel-card {
        width: 200px;
        height: 356px;
    }
}

@media (min-width: 1920px) {
    .reel-card-wrapper .reel-card {
        width: 240px;
        height: 427px;
    }
}

/* ================================================================
   MARKETPLACE LOGOS - INFINITE MARQUEE (No Gap)
   ================================================================ */
.marketplace-logos-section {
    background: var(--theme-bg);
    padding: 1.5rem 0;
    border-bottom: 1px solid #F0F0F0;
    overflow: hidden;
}

.marketplace-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 0.5rem 0;
    mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
}

.marketplace-marquee-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: marketplaceScroll 25s linear infinite;
    align-items: center;
}

@keyframes marketplaceScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.333%);
    }
}

.marketplace-logo-item {
    flex-shrink: 0;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.marketplace-logo-item:hover {
    transform: scale(1.1);
}

.marketplace-logo-item img {
    height: 100%;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.marketplace-logo-item:hover img {
    filter: grayscale(0%);
}

/* Pause on hover */
.marketplace-marquee:hover .marketplace-marquee-track {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .marketplace-logos-section {
        padding: 1rem 0;
    }
    .marketplace-marquee-track {
        gap: 2rem;
        animation-duration: 20s;
    }
    .marketplace-logo-item {
        height: 45px;
    }
    .marketplace-logo-item img {
        max-width: 130px;
    }
}

@media (max-width: 480px) {
    .marketplace-marquee-track {
        gap: 1.5rem;
        animation-duration: 18s;
    }
    .marketplace-logo-item {
        height: 38px;
    }
    .marketplace-logo-item img {
        max-width: 110px;
    }
}

@media (min-width: 1025px) {
    .marketplace-logo-item {
        height: 70px;
    }
    .marketplace-logo-item img {
        max-width: 200px;
    }
}

/* ================================================================
   IMAGE FULL VIEW MODAL
   ================================================================ */
.image-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.image-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.image-modal-close:hover {
    background: rgba(255, 0, 0, 0.6);
    transform: rotate(90deg) scale(1.1);
}

.image-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.image-modal-nav:hover {
    background: var(--theme-primary);
    border-color: var(--theme-primary);
    transform: translateY(-50%) scale(1.1);
}

.image-modal-nav.prev {
    left: 1rem;
}

.image-modal-nav.next {
    right: 1rem;
}

.image-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: modalZoomIn 0.4s ease;
}

@keyframes modalZoomIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.image-modal-content img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 0.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    background: #FFFFFF;
    padding: 0.5rem;
}

.image-modal-info {
    text-align: center;
    color: #FFFFFF;
    max-width: 90vw;
}

.image-modal-info h3 {
    font-family: var(--theme-font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #FFFFFF;
}

.image-modal-counter {
    font-family: var(--theme-font-body);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.5);
    padding: 0.3rem 0.8rem;
    border-radius: 2rem;
    display: inline-block;
}

@media (max-width: 768px) {
    .image-modal-close {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    .image-modal-nav {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
    .image-modal-nav.prev { left: 0.5rem; }
    .image-modal-nav.next { right: 0.5rem; }
    .image-modal-info h3 { font-size: 0.95rem; }
}
