
@media (min-width: 1024px) {
    body.offers-compact .offer-section {
        display: none !important;
    }

    .offer-ticker {
        display: none;
        flex: 1 1 auto;
        min-width: 0;
        margin: 0 clamp(12px, 2vw, 24px);
        padding: 2px 0;
        border-radius: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        backdrop-filter: none;
        overflow: hidden;
        position: relative;
    }

    body.offers-ticker .offer-ticker {
        display: block;
    }

    .offer-ticker-track {
        display: inline-flex;
        align-items: center;
        gap: clamp(20px, 2.6vw, 36px);
        white-space: nowrap;
        will-change: transform;
        animation: offerTickerScroll 26s linear infinite;
        padding: 4px 0;
    }

    .offer-ticker-item {
        display: inline-flex;
        align-items: center;
        gap: clamp(8px, 1.2vw, 16px);
        color: rgba(255, 255, 255, 0.94);
        font-size: clamp(0.78rem, 0.85vw, 0.98rem);
        font-weight: 600;
        letter-spacing: 0.2px;
        padding: 6px 14px;
        border-radius: 999px;
        background: rgba(15, 23, 42, 0.35);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    }

    .offer-ticker-badge {
        text-transform: uppercase;
        font-size: clamp(0.65rem, 0.72vw, 0.8rem);
        letter-spacing: 0.8px;
        color: rgba(255, 255, 255, 0.65);
    }

    .offer-ticker-value {
        font-weight: 800;
        color: #ffd166;
        text-shadow: 0 2px 8px rgba(255, 209, 102, 0.25);
    }

    .offer-ticker-title {
        color: rgba(255, 255, 255, 0.95);
        font-weight: 600;
    }

    .offer-ticker-code {
        padding: 2px 10px;
        border-radius: 999px;
        border: 1px solid rgba(255, 178, 0, 0.55);
        background: rgba(255, 178, 0, 0.18);
        color: #ffcf6a;
        font-weight: 700;
        font-size: clamp(0.7rem, 0.8vw, 0.9rem);
        letter-spacing: 0.6px;
        font-family: 'Courier New', monospace;
    }

    .offer-ticker-sep {
        color: rgba(255, 255, 255, 0.35);
        font-weight: 700;
    }
    @keyframes offerTickerScroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }
    /* EXACT MOBILE NAVIGATION in web view */
    .mobile-nav {
        display: block !important;
        position: fixed !important;
        bottom: 20px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        background: linear-gradient(135deg, 
            rgba(255, 255, 255, 0.97) 0%, 
            rgba(255, 255, 255, 0.92) 100%) !important;
        backdrop-filter: blur(40px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(40px) saturate(180%) !important;
        border-radius: 28px !important;
        z-index: 2000 !important;
        padding: 16px 24px !important;
        width: 90% !important;
        max-width: 420px !important;
        box-shadow: 
            0 30px 70px rgba(0, 0, 0, 0.18),
            0 15px 35px rgba(255, 178, 0, 0.12),
            inset 0 1px 0 rgba(255, 255, 255, 0.95),
            0 0 0 1px rgba(255, 255, 255, 0.5),
            0 0 60px rgba(255, 178, 0, 0.05) !important;
        border: 1.5px solid rgba(255, 255, 255, 0.6) !important;
        overflow: hidden !important;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
        top: auto !important;
        right: auto !important;
        height: auto !important;
    }

    .mobile-nav::before {
        content: '' !important;
        position: absolute !important;
        inset: 0 !important;
        background: linear-gradient(135deg, 
            rgba(255, 178, 0, 0.03) 0%, 
            rgba(255, 209, 102, 0.02) 50%,
            rgba(255, 178, 0, 0.03) 100%) !important;
        border-radius: 28px !important;
        z-index: 1 !important;
    }

    .mobile-nav::after {
        content: '' !important;
        position: absolute !important;
        inset: 0 !important;
        border-radius: 28px !important;
        padding: 2px !important;
        background: linear-gradient(135deg, 
            rgba(255, 178, 0, 0.2) 0%, 
            rgba(255, 209, 102, 0.1) 50%,
            transparent 100%) !important;
        -webkit-mask: 
            linear-gradient(#fff 0 0) content-box, 
            linear-gradient(#fff 0 0) !important;
        -webkit-mask-composite: xor !important;
        mask-composite: exclude !important;
        z-index: 0 !important;
    }

    .nav-items {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        position: relative !important;
        z-index: 2 !important;
        gap: 8px !important;
    }

    .nav-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 8px !important;
        cursor: pointer !important;
        padding: 14px 16px !important;
        border-radius: 20px !important;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
        min-width: 70px !important;
        position: relative !important;
        flex: 1 !important;
        text-decoration: none !important;
        background: transparent !important;
        border: none !important;
        will-change: transform !important;
    }

    .nav-item::before {
        content: '' !important;
        position: absolute !important;
        inset: 0 !important;
        background: linear-gradient(135deg, 
            rgba(255, 178, 0, 0.08) 0%, 
            rgba(255, 209, 102, 0.04) 100%) !important;
        border-radius: 20px !important;
        opacity: 0 !important;
        transition: opacity 0.4s ease !important;
        z-index: -1 !important;
    }

    .nav-item:hover::before {
        opacity: 1 !important;
    }

    .nav-item.active {
        background: linear-gradient(135deg, 
            rgba(255, 178, 0, 0.12) 0%, 
            rgba(255, 209, 102, 0.08) 100%) !important;
        backdrop-filter: blur(20px) !important;
        border: 1px solid rgba(255, 178, 0, 0.25) !important;
        box-shadow: 
            0 15px 40px rgba(255, 178, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.6),
            0 0 20px rgba(255, 178, 0, 0.1) !important;
        transform: translateY(-4px) scale(1.02) !important;
    }

    .nav-icon-container {
        position: relative !important;
        width: 46px !important;
        height: 46px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
        z-index: 1 !important;
    }

    .nav-icon-container::before {
        content: '' !important;
        position: absolute !important;
        inset: 0 !important;
        background: linear-gradient(135deg, 
            rgba(255, 178, 0, 0.1) 0%, 
            rgba(255, 209, 102, 0.05) 100%) !important;
        border-radius: 16px !important;
        transform: scale(0.8) !important;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
        z-index: -1 !important;
    }

    .nav-item.active .nav-icon-container::before {
        background: linear-gradient(135deg, 
            rgba(255, 178, 0, 0.15) 0%, 
            rgba(255, 209, 102, 0.08) 100%) !important;
        transform: scale(1) !important;
    }

    .nav-icon {
        font-size: 1.25rem !important;
        color: var(--gray-dark) !important;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
        position: relative !important;
        z-index: 1 !important;
    }

    .nav-item.active .nav-icon {
        color: var(--accent) !important;
        transform: scale(1.15) !important;
        filter: drop-shadow(0 3px 8px rgba(255, 178, 0, 0.3)) !important;
    }

    .nav-label {
        font-size: 0.75rem !important;
        font-weight: 700 !important;
        letter-spacing: 0.4px !important;
        text-transform: uppercase !important;
        background: linear-gradient(135deg, var(--primary), var(--gray-dark)) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        transition: all 0.4s ease !important;
        position: relative !important;
        z-index: 1 !important;
    }

    .nav-item.active .nav-label {
        background: linear-gradient(135deg, var(--accent), #ffd166) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        font-weight: 800 !important;
        letter-spacing: 0.5px !important;
    }

    .cart-count {
        position: absolute !important;
        top: -4px !important;
        right: -4px !important;
        background: linear-gradient(135deg, #ef4444, #dc2626) !important;
        color: white !important;
        font-size: 0.65rem !important;
        font-weight: 700 !important;
        padding: 3px 7px !important;
        border-radius: 12px !important;
        min-width: 20px !important;
        text-align: center !important;
        box-shadow: 0 3px 10px rgba(239, 68, 68, 0.4) !important;
        z-index: 10 !important;
    }

    body {
        padding-bottom: 0 !important;
    }
}

/* ========================================
   OFFER CAROUSEL - INFINITE LOOP
   ======================================== */
@media (min-width: 1024px) {
    .offer-section {
        position: relative !important;
        overflow: hidden !important;
        padding: 8px 0 14px !important;
    }

    .offer-carousel {
        overflow: visible !important;
        position: relative !important;
    }

    .offer-carousel-container {
        position: relative !important;
        overflow: hidden !important;
        max-width: 1400px !important;
        margin: 0 auto !important;
        padding: 0 60px !important;
    }

    .search-container {
        margin: 0px auto 24px !important;
    }

    .offer-track {
        display: flex !important;
        gap: 25px !important;
        align-items: center !important;
        transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
        will-change: transform !important;
        padding: 20px 0 !important;
    }

    .offer-slide {
        flex-shrink: 0 !important;
        min-width: calc(33.333% - 17px) !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        transform: scale(0.92) !important;
        transform-origin: center !important;
        transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
            opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
        z-index: 1 !important;
    }

    .offer-slide.is-left,
    .offer-slide.is-right {
        transform: scale(0.95) !important;
        opacity: 0.85 !important;
        z-index: 5 !important;
    }

    .offer-slide.is-center {
        transform: scale(1.04) !important;
        opacity: 1 !important;
        z-index: 20 !important;
    }

    .offer-slide .luxury-card {
        background: white !important;
        opacity: 1 !important;
        visibility: visible !important;
        height: 220px !important;
        transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
            box-shadow 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
            border-color 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
            border-width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    }

    .offer-slide.is-center .luxury-card {
        border: 2px solid rgba(255, 178, 0, 0.9) !important;
        box-shadow: 0 10px 22px rgba(10, 29, 42, 0.10), 0 0 0 1px rgba(255, 178, 0, 0.2) !important;
    }

    .offer-slide.is-left .luxury-card,
    .offer-slide.is-right .luxury-card {
        border: 1px solid rgba(0, 0, 0, 0.1) !important;
        box-shadow: 0 4px 12px rgba(15, 23, 42, 0.07) !important;
    }

    /* Navigation buttons */
    .carousel-nav {
        position: absolute !important;
        top: 50% !important;
        left: 0 !important;
        right: 0 !important;
        transform: translateY(-50%) !important;
        display: flex !important;
        justify-content: space-between !important;
        pointer-events: none !important;
        z-index: 30 !important;
        padding: 0 15px !important;
    }

    .carousel-btn {
        width: 55px !important;
        height: 55px !important;
        border-radius: 50% !important;
        background: white !important;
        border: 3px solid var(--accent) !important;
        color: var(--primary) !important;
        font-size: 1.3rem !important;
        cursor: pointer !important;
        pointer-events: all !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
        z-index: 31 !important;
    }

    .carousel-btn:hover {
        background: var(--accent) !important;
        color: white !important;
        transform: scale(1.15) !important;
        box-shadow: 0 15px 40px rgba(255, 178, 0, 0.4) !important;
    }

    .carousel-btn:active {
        transform: scale(1.05) !important;
    }
}

/* ========================================
   CATEGORY ROW 
   ======================================== */
@media (min-width: 1024px) {
    .category-header {
        background: white !important;
        padding: 12px 0 !important;
        border-bottom: 2px solid var(--gray-light) !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 999 !important;
        width: 100% !important;
        display: block !important;
    }

    .category-header .header-container {
        max-width: 1400px !important;
        margin: 0 auto !important;
        padding: 0 40px !important;
    }

    .category-tabs {
        display: flex !important;
        gap: 10px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        padding: 8px 4px !important;
        flex-wrap: nowrap !important;
        white-space: nowrap !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-behavior: smooth !important;
        cursor: grab !important;
        user-select: none !important;
        /* HIDE SCROLLBAR */
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }

    .category-tabs::-webkit-scrollbar {
        display: none !important;
    }

    .category-tabs:active {
        cursor: grabbing !important;
    }

    /* CATEGORY TABS */
    .category-tab {
        display: inline-flex !important;
        align-items: center !important;
        gap: 8px !important;
        padding: 10px 18px !important;
        background: var(--gray-light) !important;
        border-radius: 14px !important;
        font-weight: 600 !important;
        color: var(--gray-dark) !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
        border: 2px solid transparent !important;
        font-size: 0.85rem !important;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04) !important;
    }

    .category-tab:hover {
        background: #e2e8f0 !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    }

    .category-tab.active {
        background: linear-gradient(135deg, var(--accent), #ffd166) !important;
        color: white !important;
        border-color: var(--accent) !important;
        box-shadow: 0 6px 20px rgba(255, 178, 0, 0.35) !important;
        transform: translateY(-2px) !important;
    }

    .category-tab i {
        font-size: 1rem !important;
        display: inline-flex !important;
    }

    .category-count {
        background: rgba(0, 0, 0, 0.1) !important;
        color: inherit !important;
        padding: 2px 12px !important;
        border-radius: 9px !important;
        font-size: 0.75rem !important;
        font-weight: 700 !important;
        min-width: 28px !important;
        text-align: center !important;
    }

    .category-tab.active .category-count {
        background: rgba(255, 255, 255, 0.3) !important;
        color: white !important;
    }
}

/* ========================================
   PRODUCT CARDS - DESKTOP INTERACTIONS
   ======================================== */
@media (min-width: 1024px) {
    .product-card .add-to-cart-btn {
        cursor: pointer !important;
        transition: all 0.3s ease !important;
    }

    .product-card .add-to-cart-btn:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 25px rgba(255, 178, 0, 0.3) !important;
    }

    .product-card .add-to-cart-btn:active {
        transform: translateY(0) !important;
    }

    .product-card .quantity-controls {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 12px !important;
        width: 100% !important;
        padding: 8px 12px !important;
        background: white !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    }

    .product-card .quantity-btn {
        width: 34px !important;
        height: 34px !important;
        border-radius: 8px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1.1rem !important;
        font-weight: 700 !important;
        cursor: pointer !important;
        transition: all 0.2s ease !important;
        background: linear-gradient(135deg, var(--accent), #ffd166) !important;
        color: white !important;
        border: none !important;
        box-shadow: 0 2px 8px rgba(255, 178, 0, 0.2) !important;
    }

    .product-card .quantity-btn:hover {
        transform: scale(1.1) !important;
        box-shadow: 0 4px 12px rgba(255, 178, 0, 0.3) !important;
    }

    .product-card .quantity-btn:active {
        transform: scale(0.95) !important;
    }

    .product-card .quantity-display {
        min-width: 40px !important;
        text-align: center !important;
        font-size: 1rem !important;
        font-weight: 700 !important;
        color: var(--primary) !important;
    }

    .cart-item-controls .quantity-controls {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        background: white !important;
        padding: 6px 10px !important;
        border-radius: 10px !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
    }

    .cart-item-controls .quantity-btn {
        width: 30px !important;
        height: 30px !important;
        font-size: 1rem !important;
        cursor: pointer !important;
    }

    .cart-item-controls .quantity-display {
        min-width: 35px !important;
        font-size: 0.95rem !important;
    }

    .remove-item-btn {
        cursor: pointer !important;
        transition: all 0.2s ease !important;
    }

    .remove-item-btn:hover {
        transform: scale(1.1) !important;
        color: var(--danger) !important;
    }
}

/* ========================================
   ADDITIONAL DESKTOP IMPROVEMENTS
   ======================================== */
@media (min-width: 1024px) {
    .main-content {
        padding-bottom: 0px !important;
    }

    .products-grid {
        margin-bottom: 24px !important;
    }

    .category-icon-btn {
        bottom: 140px !important;
    }
}

/* ========================================
   LARGE DESKTOP ADJUSTMENTS (1440px+)
   ======================================== */
@media (min-width: 1440px) {
    .search-container {
        max-width: 700px !important;
    }

    .category-tab {
        padding: 10px 20px !important;
        font-size: 0.85rem !important;
    }
}

/* ========================================
   EXTRA LARGE DESKTOP (1920px+)
   ======================================== */
@media (min-width: 1920px) {
    .search-container {
        max-width: 800px !important;
    }
}

/* ========================================
   FLUID DESKTOP RESPONSIVENESS (1024px+)
   Keeps layout balanced across 100% / 90% / 80% zoom and varied desktop widths
   ======================================== */
@media (min-width: 1024px) {
    .header-container,
    .category-header .header-container,
    .offer-carousel-container,
    .footer-container {
        width: min(100%, 1600px) !important;
        max-width: 1600px !important;
        padding-left: clamp(16px, 2.4vw, 56px) !important;
        padding-right: clamp(16px, 2.4vw, 56px) !important;
    }

    .header-main-content,
    .header-bottom-content {
        gap: clamp(12px, 2vw, 28px) !important;
        flex-wrap: wrap !important;
    }

    .brand-section {
        gap: clamp(16px, 2vw, 28px) !important;
        align-items: center !important;
    }

    .logo-container {
        width: clamp(80px, 6vw, 110px) !important;
        height: clamp(80px, 6vw, 110px) !important;
        flex-shrink: 0 !important;
    }

    .logo-wrapper {
        width: 100% !important;
        height: 100% !important;
        transform: scale(1.08) !important;
        transform-origin: left center !important;
    }

    .brand-info {
        min-width: 0 !important;
    }

    .store-name {
        font-size: clamp(1.95rem, 2.15vw, 2.7rem) !important;
        line-height: 1.4 !important;
        white-space: normal !important;
        display: inline-block !important;
        transform: scale(1.04) !important;
        transform-origin: left center !important;
    }

    .store-tagline {
        font-size: clamp(0.86rem, 0.95vw, 1.08rem) !important;
    }

    .header-bottom {
        padding: clamp(4px, 0.5vw, 8px) 0 !important;
    }

    .header-bottom-content {
        margin-top: 0 !important;
        align-items: center !important;
        min-height: 0 !important;
        flex-wrap: nowrap !important;
        gap: clamp(12px, 2vw, 24px) !important;
    }

    .social-icons-left {
        gap: clamp(6px, 0.7vw, 10px) !important;
        align-items: center !important;
        order: 1 !important;
    }

    .offer-ticker {
        order: 2 !important;
    }

    .contact-buttons-right {
        order: 3 !important;
    }

    .social-icon {
        width: clamp(34px, 2.6vw, 40px) !important;
        height: clamp(34px, 2.6vw, 40px) !important;
        border-radius: clamp(8px, 0.9vw, 12px) !important;
    }

    .social-icon i {
        font-size: clamp(0.9rem, 1vw, 1.1rem) !important;
    }

    .contact-buttons-right {
        gap: clamp(8px, 0.9vw, 14px) !important;
        align-items: center !important;
    }

    .contact-btn {
        width: clamp(38px, 2.8vw, 46px) !important;
        height: clamp(38px, 2.8vw, 46px) !important;
        border-radius: clamp(10px, 1vw, 14px) !important;
    }

    .contact-btn i {
        font-size: clamp(1rem, 1.1vw, 1.3rem) !important;
    }

    .category-tabs {
        gap: clamp(8px, 1vw, 14px) !important;
        padding: clamp(6px, 0.6vw, 10px) 4px !important;
    }

    .category-tab {
        padding: clamp(8px, 0.85vw, 11px) clamp(12px, 1.3vw, 20px) !important;
        font-size: clamp(0.78rem, 0.75vw, 0.9rem) !important;
        text-transform: capitalize;
    }

    .category-header-section {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
    }

    .category-description {
        max-width: 100% !important;
    }

    .offer-track {
        gap: clamp(14px, 1.8vw, 24px) !important;
        padding: clamp(10px, 1.2vw, 18px) 0 !important;
    }

    .offer-slide {
        flex: 0 0 calc((100% - (2 * clamp(14px, 1.8vw, 24px))) / 3) !important;
        min-width: calc((100% - (2 * clamp(14px, 1.8vw, 24px))) / 3) !important;
        container-type: inline-size !important;
    }

    .offer-slide .luxury-card {
        width: 100% !important;
        min-height: clamp(210px, 12.6vw, 236px) !important;
        height: auto !important;
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 31% !important;
        grid-template-rows: 1fr !important;
        align-items: stretch !important;
        align-content: stretch !important;
        overflow: hidden !important;
    }

    .card-left {
        display: grid !important;
        grid-template-rows: auto auto auto minmax(0, 1fr) auto !important;
        align-content: stretch !important;
        width: auto !important;
        align-self: stretch !important;
        min-width: 0 !important;
        height: 100% !important;
        padding: clamp(8px, 0.72vw, 12px) clamp(10px, 0.9vw, 14px) !important;
        row-gap: clamp(2px, 0.24vw, 4px) !important;
    }

    .card-right {
        width: auto !important;
        min-width: 90px !important;
        align-self: stretch !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .visual-bg,
    .geometric-pattern {
        height: 100% !important;
    }

    .offer-badge {
        font-size: clamp(0.66rem, 0.7vw, 0.78rem) !important;
        padding: 4px 12px !important;
        letter-spacing: 0.8px !important;
        margin-bottom: 0 !important;
    }

    .offer-value {
        font-size: clamp(2.05rem, 2.35vw, 2.75rem) !important;
        margin-bottom: 0 !important;
        line-height: 0.92 !important;
    }

    .offer-title {
        font-size: clamp(0.98rem, 1.02vw, 1.16rem) !important;
        margin-bottom: 0 !important;
        line-height: 1.12 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .offer-desc {
        font-size: clamp(0.78rem, 0.74vw, 0.88rem) !important;
        line-height: 1.25 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        margin-bottom: 0 !important;
        max-width: none !important;
        min-height: 0 !important;
    }

    .code-container {
        gap: clamp(8px, 0.6vw, 10px) !important;
        flex-wrap: nowrap !important;
        margin-top: 0 !important;
        min-width: 0 !important;
        align-self: start !important;
        align-items: center !important;
    }

    .code-box {
        min-width: 108px !important;
        max-width: calc(100% - 46px) !important;
        padding: 6px 11px !important;
        font-size: clamp(0.75rem, 0.7vw, 0.86rem) !important;
        letter-spacing: 0.5px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .copy-btn {
        width: 38px !important;
        height: 38px !important;
        font-size: 0.84rem !important;
        flex: 0 0 auto !important;
    }

    .visual-icon {
        font-size: clamp(2.05rem, 2.2vw, 2.8rem) !important;
    }

    /* Per-card responsiveness based on actual card width */
    @container (max-width: 560px) {
        .offer-slide .luxury-card {
            min-height: 214px !important;
            grid-template-columns: minmax(0, 1fr) 32% !important;
        }

        .card-left {
            padding: 10px 11px !important;
            gap: 4px !important;
        }

        .offer-badge {
            font-size: 0.66rem !important;
            padding: 4px 10px !important;
            margin-bottom: 0 !important;
        }

        .offer-value {
            font-size: 1.9rem !important;
            margin-bottom: 0 !important;
        }

        .offer-title {
            font-size: 1rem !important;
            margin-bottom: 0 !important;
            -webkit-line-clamp: 2 !important;
        }

        .offer-desc {
            font-size: 0.82rem !important;
            -webkit-line-clamp: 3 !important;
            margin-bottom: 0 !important;
        }

        .code-container {
            gap: 8px !important;
            flex-wrap: nowrap !important;
        }

        .code-box {
            min-width: 102px !important;
            padding: 6px 9px !important;
            font-size: 0.77rem !important;
        }

        .copy-btn {
            width: 35px !important;
            height: 35px !important;
            font-size: 0.82rem !important;
        }

        .visual-icon {
            font-size: 2.1rem !important;
        }
    }

    @container (max-width: 430px) {
        .offer-slide .luxury-card {
            grid-template-columns: minmax(0, 1fr) 84px !important;
            min-height: 206px !important;
        }

        .card-left {
            padding: 9px !important;
            gap: 3px !important;
        }

        .offer-badge {
            font-size: 0.62rem !important;
            padding: 4px 9px !important;
        }

        .offer-desc {
            font-size: 0.78rem !important;
            -webkit-line-clamp: 2 !important;
        }

        .offer-value {
            font-size: 1.68rem !important;
        }

        .offer-title {
            font-size: 0.92rem !important;
            -webkit-line-clamp: 2 !important;
        }

        .code-box {
            min-width: 92px !important;
            font-size: 0.73rem !important;
            padding: 5px 8px !important;
        }

        .copy-btn {
            width: 32px !important;
            height: 32px !important;
        }
    }

    @container (max-width: 380px) {
        .offer-slide .luxury-card {
            grid-template-columns: minmax(0, 1fr) 74px !important;
            min-height: 196px !important;
        }

        .offer-value {
            font-size: 1.48rem !important;
        }

        .offer-title {
            font-size: 0.86rem !important;
        }

        .offer-desc {
            font-size: 0.72rem !important;
            -webkit-line-clamp: 2 !important;
        }

        .code-box {
            min-width: 84px !important;
            font-size: 0.69rem !important;
        }

        .copy-btn {
            width: 30px !important;
            height: 30px !important;
        }

        .visual-icon {
            font-size: 1.8rem !important;
        }
    }

    .search-container {
        width: min(92vw, 760px) !important;
        max-width: 760px !important;
        margin: clamp(10px, 1.2vw, 18px) auto clamp(18px, 1.8vw, 28px) !important;
        padding: 0 clamp(8px, 1vw, 16px) !important;
    }

    .main-content {
        padding-left: clamp(10px, 1.2vw, 20px) !important;
        padding-right: clamp(10px, 1.2vw, 20px) !important;
        margin: 20px 0px;
    }

    .category-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .products-grid {
        width: 100% !important;
        max-width: 1600px !important;
        margin: 0 auto clamp(18px, 1.8vw, 28px) !important;
        padding: 0 clamp(10px, 1.8vw, 40px) !important;
        gap: clamp(14px, 1.6vw, 26px) !important;
        /*grid-template-columns: repeat(auto-fit, minmax(clamp(220px, 21vw, 290px), 1fr)) !important;*/
    }

    .product-card {
        min-width: 0 !important;
    }

    .footer {
        margin-top: clamp(20px, 2vw, 32px) !important;
    }
}

/* ========================================
   OFFER CARD DENSITY FIX (1440px+)
   Reduce extra white space inside cards on large screens
   ======================================== */
@media (min-width: 1440px) {
    .offer-slide .luxury-card {
        width: 100% !important;
        min-height: 220px !important;
        height: 220px !important;
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 31% !important;
        grid-template-rows: 1fr !important;
        align-items: stretch !important;
        align-content: stretch !important;
        overflow: hidden !important;
        border-radius: 24px !important;
    }

    .card-left {
        display: grid !important;
        grid-template-rows: repeat(5, auto) !important;
        align-content: space-between !important;
        width: auto !important;
        align-self: stretch !important;
        min-width: 0 !important;
        height: 100% !important;
        padding: clamp(8px, 0.72vw, 12px) clamp(10px, 0.9vw, 14px) !important;
        row-gap: clamp(2px, 0.24vw, 5px) !important;
    }

    .card-right {
        width: auto !important;
        min-width: 90px !important;
        align-self: stretch !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .offer-badge {
        font-size: clamp(0.66rem, 0.7vw, 0.78rem) !important;
        padding: 4px 12px !important;
        letter-spacing: 0.8px !important;
        margin-bottom: 0 !important;
    }

    .offer-value {
        font-size: clamp(2.05rem, 2.35vw, 2.75rem) !important;
        margin-bottom: 0 !important;
        line-height: 0.92 !important;
    }

    .offer-title {
        font-size: clamp(0.9rem, 1.05vw, 1.2rem) !important;
        margin-bottom: 0 !important;
        line-height: 1.15 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .offer-desc {
        font-size: clamp(0.8rem, 0.78vw, 0.92rem) !important;
        line-height: 1.3 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        margin-bottom: 0 !important;
        max-width: none !important;
        min-height: 0 !important;
    }

    .code-container {
        gap: clamp(8px, 0.6vw, 10px) !important;
        flex-wrap: nowrap !important;
        margin-top: 0 !important;
        min-width: 0 !important;
        align-self: start !important;
        align-items: center !important;
    }

    .code-box {
        min-width: 108px !important;
        max-width: calc(100% - 46px) !important;
        padding: 6px 11px !important;
        font-size: clamp(0.75rem, 0.7vw, 0.86rem) !important;
        letter-spacing: 0.5px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .copy-btn {
        width: 38px !important;
        height: 38px !important;
        font-size: 0.84rem !important;
        flex: 0 0 auto !important;
    }

    .visual-icon {
        font-size: clamp(2.05rem, 2.2vw, 2.8rem) !important;
    }
}

/* ========================================
   WHATSAPP DESKTOP CHAT BUTTON
   ======================================== */
@media (min-width: 1024px) {
    :root {
        --desktop-nav-bottom: 20px;
        --desktop-nav-height: 120px;
        --desktop-nav-gap: 12px;
        --whatsapp-offset-x: 40px;
        --whatsapp-offset-y: 120px;
    }

    .whatsapp-widget {
        position: fixed;
        right: calc(clamp(18px, 2.8vw, 42px) - var(--whatsapp-offset-x));
        bottom: calc(var(--desktop-nav-bottom) + var(--desktop-nav-height) + var(--desktop-nav-gap) - var(--whatsapp-offset-y));
        display: inline-flex;
        align-items: center;
        gap: 0;
        padding: 8px;
        width: 64px;
        height: 64px;
        border-radius: 999px;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 52%, #ffffff 100%);
        color: #0f172a;
        text-decoration: none;
        border: 1px solid rgba(15, 23, 42, 0.1);
        box-shadow:
            0 16px 34px rgba(15, 23, 42, 0.14),
            0 8px 16px rgba(255, 178, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.6);
        transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, width 0.45s ease, padding 0.45s ease, gap 0.45s ease;
        isolation: isolate;
        backdrop-filter: blur(10px) saturate(160%);
        z-index: 2100;
        font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
        justify-content: center;
        overflow: hidden;
        animation: wh-cycle 10s ease-in-out infinite;
        will-change: transform, box-shadow;
    }

    .whatsapp-widget:focus-visible {
        outline: 3px solid rgba(37, 211, 102, 0.55);
        outline-offset: 4px;
    }

    .whatsapp-widget::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 999px;
        padding: 1px;
        background: linear-gradient(120deg,
                rgba(255, 209, 102, 0.9),
                rgba(37, 211, 102, 0.35),
                rgba(255, 209, 102, 0.7));
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 0.55;
        pointer-events: none;
        z-index: -1;
    }

    .whatsapp-widget:hover {
        transform: translateY(-4px);
        border-color: rgba(15, 23, 42, 0.2);
        box-shadow:
            0 28px 64px rgba(15, 23, 42, 0.22),
            0 14px 30px rgba(255, 178, 0, 0.22);
        animation-play-state: paused;
        width: 190px;
        height: 64px;
        padding: 10px 16px;
        gap: 10px;
    }

    .whatsapp-widget:active {
        transform: translateY(-1px) scale(0.99);
    }

    .whatsapp-fab-icon {
        width: 48px;
        height: 48px;
        border-radius: 18px;
        flex: 0 0 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: relative;
        background:
            radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.45), transparent 60%),
            linear-gradient(135deg, #25d366, #1ebd59);
        font-size: 1.4rem;
        box-shadow:
            0 12px 24px rgba(37, 211, 102, 0.32),
            inset 0 0 0 1px rgba(255, 255, 255, 0.35);
        transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    .whatsapp-widget:not(:hover) .whatsapp-fab-icon {
        transform: none !important;
    }

    .whatsapp-fab-icon::before {
        content: '';
        position: absolute;
        inset: 6px;
        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, 0.35);
        opacity: 0.25;
    }

    .whatsapp-fab-icon::after {
        content: '';
        position: absolute;
        inset: -6px;
        border-radius: 20px;
        border: 1px solid rgba(37, 211, 102, 0.25);
        opacity: 0.25;
    }

    .whatsapp-widget:hover .whatsapp-fab-icon {
        transform: translateY(-2px) scale(1.05);
        box-shadow:
            0 16px 32px rgba(37, 211, 102, 0.45),
            inset 0 0 0 1px rgba(255, 255, 255, 0.35);
    }

    .whatsapp-fab-text {
        font-size: 0.88rem;
        font-weight: 700;
        letter-spacing: 0.3px;
        text-transform: none;
        color: #0f172a;
        text-shadow: 0 6px 16px rgba(15, 23, 42, 0.15);
        white-space: nowrap;
        flex: 0 0 auto;
        max-width: 0;
        opacity: 0;
        transform: translateX(-8px);
        overflow: hidden;
        animation: wh-text 10s ease-in-out infinite;
    }

    .whatsapp-widget:hover .whatsapp-fab-text {
        max-width: 130px;
        opacity: 1;
        transform: translateX(0);
        animation-play-state: paused;
    }

    @keyframes wh-cycle {
        0%, 45% {
            width: 64px;
            padding: 8px;
            gap: 0;
        }
        55%, 78% {
            width: 190px;
            padding: 10px 16px;
            gap: 10px;
        }
        100% {
            width: 64px;
            padding: 8px;
            gap: 0;
        }
    }

    @keyframes wh-text {
        0%, 48% {
            max-width: 0;
            opacity: 0;
            transform: translateX(-8px);
        }
        58%, 76% {
            max-width: 130px;
            opacity: 1;
            transform: translateX(0);
        }
        100% {
            max-width: 0;
            opacity: 0;
            transform: translateX(-8px);
        }
    }
}

@media (max-width: 1023px) {
    .whatsapp-widget {
        display: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .whatsapp-widget,
    .whatsapp-fab-icon,
    .whatsapp-fab-icon::after,
    .whatsapp-fab-text {
        animation: none !important;
        transition: none !important;
    }
}
