/* ====================================
   LENSNEW PREMIUM DESIGN SYSTEM
   Light Theme with Teal-Blue Accents
   ==================================== */

/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* === CSS VARIABLES === */
:root {
    /* Primary Colors - Matching Logo */
    --primary-gradient: linear-gradient(135deg, #00b4d8 0%, #0077b6 50%, #023e8a 100%);
    --primary-teal: #00b4d8;
    --primary-blue: #0077b6;
    --primary-dark-blue: #023e8a;

    /* Accent Colors */
    --accent-gold: #ffd60a;
    --accent-orange: #ff6b35;
    --accent-pink: #f72585;
    --accent-green: #06d6a0;
    --accent-yellow: #ffc107;

    /* Background Colors - LIGHT THEME */
    --bg-dark: #ffffff;
    --bg-darker: #f8f9fa;
    --bg-card: rgba(0, 119, 182, 0.03);
    --bg-glass: rgba(0, 180, 216, 0.05);

    /* Text Colors - LIGHT THEME */
    --text-primary: #1a1a2e;
    --text-secondary: #4a4a68;
    --text-muted: #8a8aa3;

    /* Glassmorphism - LIGHT THEME */
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(0, 119, 182, 0.15);
    --glass-shadow: 0 8px 32px rgba(0, 119, 182, 0.1);

    /* Fonts */
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Inter', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50px;
}

/* === RESET & BASE === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* === CONTAINER === */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === ANIMATED BACKGROUND === */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: var(--bg-dark);
}

.animated-bg::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 180, 216, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(0, 119, 182, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 40% 40%, rgba(2, 62, 138, 0.1) 0%, transparent 40%);
    animation: bgFloat 20s ease-in-out infinite;
}

@keyframes bgFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(2%, 2%) rotate(1deg);
    }

    50% {
        transform: translate(-2%, 4%) rotate(-1deg);
    }

    75% {
        transform: translate(4%, -2%) rotate(2deg);
    }
}

/* Floating Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-teal);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat 15s infinite;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.3;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* === HEADER & NAVIGATION === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition-normal);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 119, 182, 0.1);
    padding: 10px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition-normal);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-btn,
.cart-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    font-size: 1.2rem;
    transition: var(--transition-normal);
}

.search-btn:hover,
.cart-btn:hover {
    background: var(--primary-teal);
    transform: scale(1.1);
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: var(--accent-pink);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-normal);
}

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--primary-teal);
}

.hero-badge i {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 30px;
}

.hero-price-label {
    font-size: 1rem;
    color: var(--text-muted);
}

.hero-price-value {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--text-primary);
    box-shadow: 0 10px 40px rgba(0, 180, 216, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 180, 216, 0.4);
}

.btn-secondary {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

/* Ripple Effect */
.btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: scale(0);
    opacity: 0;
}

.btn:active::after {
    transform: scale(2);
    opacity: 1;
    transition: 0s;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease;
}

.hero-image-main {
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Floating Elements Around Hero Image */
.hero-float {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 15px 20px;
    animation: floatBounce 4s ease-in-out infinite;
}

.hero-float-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.hero-float-2 {
    bottom: 20%;
    left: -15%;
    animation-delay: 1s;
}

.hero-float-3 {
    bottom: 10%;
    right: 10%;
    animation-delay: 2s;
}

@keyframes floatBounce {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(3deg);
    }
}

/* === FLASH SALE BANNER === */
.flash-banner {
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-orange), var(--accent-gold));
    background-size: 200% 100%;
    animation: gradientSlide 3s linear infinite;
    padding: 15px 0;
    position: relative;
    overflow: hidden;
}

@keyframes gradientSlide {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.flash-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.flash-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
}

.flash-icon {
    animation: flashPulse 0.5s ease-in-out infinite;
}

@keyframes flashPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }
}

.flash-timer {
    display: flex;
    gap: 10px;
}

.flash-timer-item {
    background: #1a1a2e;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    text-align: center;
    min-width: 50px;
}

.flash-timer-value {
    font-size: 1.3rem;
    font-weight: 700;
    display: block;
}

.flash-timer-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    opacity: 0.7;
}

.flash-btn {
    background: #1a1a2e;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: var(--radius-full);
    font-weight: 600;
    animation: btnBounce 2s ease-in-out infinite;
}

@keyframes btnBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* === CATEGORIES SECTION === */
.categories {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--primary-teal);
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: var(--transition-normal);
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.category-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
    transition: var(--transition-normal);
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(10deg);
}

.category-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.category-count {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.category-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-size: 1.2rem;
    transform: translateX(100px);
    opacity: 0;
    transition: var(--transition-normal);
}

.category-card:hover .category-btn {
    transform: translateX(0);
    opacity: 1;
}

/* === PRODUCTS SECTION === */
.products {
    padding: 100px 0;
    position: relative;
}

.products-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.product-tab {
    padding: 12px 30px;
    border-radius: var(--radius-full);
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: var(--transition-normal);
}

.product-tab:hover,
.product-tab.active {
    background: var(--primary-gradient);
    color: var(--text-primary);
    border-color: transparent;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 180, 216, 0.15);
    border-color: var(--primary-teal);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.product-badge.sale {
    background: var(--accent-pink);
    color: var(--text-primary);
}

.product-badge.new {
    background: var(--accent-green);
    color: var(--bg-dark);
}

.product-badge.hot {
    background: var(--accent-orange);
    color: var(--text-primary);
}

.product-wishlist {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition-normal);
}

.product-card:hover .product-wishlist {
    opacity: 1;
    transform: scale(1);
}

.product-wishlist:hover {
    background: var(--accent-pink);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.05) 0%, rgba(0, 119, 182, 0.05) 100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-image img.product-img-main {
    transform: scale(1.1);
}

/* === PRODUCT IMAGE HOVER SWAP (Lenskart-style) === */
.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.05) 0%, rgba(0, 119, 182, 0.05) 100%);
}

.product-image img.product-img-main,
.product-image img.product-img-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: opacity 0.4s ease, transform 0.5s ease;
}

.product-image img.product-img-main {
    opacity: 1;
    z-index: 1;
}

.product-image img.product-img-hover {
    opacity: 0;
    z-index: 2;
}

.product-card:hover .product-image img.product-img-main {
    opacity: 0;
}

.product-card:hover .product-image img.product-img-hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Fallback for single image products */
.product-image img:only-child {
    position: relative;
    opacity: 1 !important;
}

.product-card:hover .product-image img:only-child {
    transform: scale(1.1);
}

.product-quick-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    transform: translateY(100%);
    transition: var(--transition-normal);
}

.product-card:hover .product-quick-actions {
    transform: translateY(0);
}

.quick-action-btn {
    width: 45px;
    height: 45px;
    background: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-size: 1.1rem;
    transition: var(--transition-normal);
}

.quick-action-btn:hover {
    background: var(--primary-teal);
    color: var(--text-primary);
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 0.8rem;
    color: var(--primary-teal);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    transition: var(--transition-fast);
}

.product-card:hover .product-name {
    color: var(--primary-teal);
}

/* Product Links - Clickable Image and Title */
.product-image-link,
.product-title-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-image-link:hover,
.product-title-link:hover {
    text-decoration: none;
}

.product-title-link .product-title {
    cursor: pointer;
    transition: color 0.2s ease;
}

.product-title-link:hover .product-title {
    color: var(--primary-teal);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 12px;
}

.product-rating i {
    color: var(--accent-gold);
    font-size: 0.85rem;
}

.product-rating span {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-left: 5px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-current {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
}

.price-old {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-discount {
    font-size: 0.8rem;
    color: var(--accent-green);
    font-weight: 600;
}

/* === DEAL OF THE DAY === */
.deal-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.08) 0%, rgba(0, 119, 182, 0.08) 100%);
    position: relative;
    overflow: hidden;
}

.deal-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-teal) 0%, transparent 70%);
    opacity: 0.1;
    top: -200px;
    right: -200px;
    animation: glowFloat 8s ease-in-out infinite;
}

@keyframes glowFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-50px, 50px);
    }
}

.deal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.deal-image {
    position: relative;
}

.deal-image-main {
    border-radius: var(--radius-xl);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
    animation: dealPulse 4s ease-in-out infinite;
}

@keyframes dealPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 50px 100px rgba(0, 180, 216, 0.2);
    }
}

.deal-badge-big {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--accent-pink);
    color: var(--text-primary);
    padding: 15px 25px;
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    font-weight: 800;
    animation: badgeBounce 2s ease-in-out infinite;
}

@keyframes badgeBounce {

    0%,
    100% {
        transform: rotate(-5deg) scale(1);
    }

    50% {
        transform: rotate(5deg) scale(1.05);
    }
}

.deal-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.deal-info h2 span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.deal-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.deal-timer {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.deal-timer-item {
    text-align: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 20px;
    min-width: 80px;
}

.deal-timer-value {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.deal-timer-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 8px;
}

.deal-price-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.deal-price-current {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.deal-price-old {
    font-size: 1.5rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

/* Progress Bar */
.deal-progress {
    margin-bottom: 30px;
}

.deal-progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.deal-progress-bar {
    height: 10px;
    background: var(--glass-bg);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.deal-progress-fill {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    animation: progressPulse 2s ease-in-out infinite;
}

@keyframes progressPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* === STATS SECTION === */
.stats {
    padding: 80px 0;
    background: var(--primary-gradient);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: var(--text-primary);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    animation: statBounce 3s ease-in-out infinite;
}

.stat-item:nth-child(2) .stat-icon {
    animation-delay: 0.5s;
}

.stat-item:nth-child(3) .stat-icon {
    animation-delay: 1s;
}

.stat-item:nth-child(4) .stat-icon {
    animation-delay: 1.5s;
}

@keyframes statBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* === BRANDS SECTION === */
.brands {
    padding: 80px 0;
    background: var(--bg-darker);
}

.brands-slider {
    display: flex;
    align-items: center;
    gap: 60px;
    overflow: hidden;
}

.brands-track {
    display: flex;
    gap: 60px;
    animation: brandSlide 20s linear infinite;
}

@keyframes brandSlide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.brand-item {
    flex-shrink: 0;
    width: 150px;
    height: 60px;
    background: var(--glass-bg);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    opacity: 0.6;
    transition: var(--transition-normal);
}

.brand-item:hover {
    opacity: 1;
    background: var(--glass-border);
}

.brand-item img {
    max-height: 30px;
    filter: brightness(0) invert(1);
}

/* === TESTIMONIALS === */
.testimonials {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition-normal);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-teal);
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    color: var(--primary-teal);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--accent-gold);
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-teal);
}

.testimonial-name {
    font-weight: 600;
    margin-bottom: 3px;
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* === FEATURES === */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.05) 0%, transparent 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-teal);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* === EYE CARE TIPS === */
.eye-tips {
    padding: 100px 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tip-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
}

.tip-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-teal);
}

.tip-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.tip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.tip-card:hover .tip-image img {
    transform: scale(1.1);
}

.tip-content {
    padding: 30px;
}

.tip-tag {
    display: inline-block;
    padding: 5px 15px;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.tip-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    transition: var(--transition-fast);
}

.tip-card:hover .tip-title {
    color: var(--primary-teal);
}

.tip-excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* === NEWSLETTER === */
.newsletter {
    padding: 100px 0;
    background: var(--primary-gradient);
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: -300px;
    right: -300px;
}

.newsletter-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.newsletter-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 18px 25px;
    border-radius: var(--radius-full);
    border: none;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.95);
    color: var(--bg-dark);
}

.newsletter-input::placeholder {
    color: var(--text-muted);
}

.newsletter-btn {
    padding: 18px 35px;
    background: var(--bg-dark);
    color: var(--text-primary);
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: var(--transition-normal);
}

.newsletter-btn:hover {
    background: #1a1a2e;
    transform: scale(1.05);
}

/* === FOOTER === */
.footer {
    background: var(--bg-darker);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--primary-teal);
    border-color: var(--primary-teal);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-teal);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-contact li i {
    color: var(--primary-teal);
    margin-top: 4px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-payments {
    display: flex;
    gap: 15px;
}

.footer-payments i {
    font-size: 2rem;
    color: var(--text-secondary);
}

/* === SCROLL TO TOP === */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.3rem;
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-normal);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-5px);
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .deal-content {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-price-value {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .deal-timer {
        flex-wrap: wrap;
        justify-content: center;
    }

    .flash-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* === FLOATING WHATSAPP BUTTON === */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    z-index: 998;
    transition: var(--transition-normal);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.8), 0 0 0 15px rgba(37, 211, 102, 0.1);
    }
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: white;
    color: #333;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition-normal);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -8px;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: white;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

/* === ANIMATED ICONS === */
.animated-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.animated-icon:hover {
    color: var(--accent-yellow) !important;
    transform: scale(1.2);
}

/* Feature icons with animation */
.feature-icon,
.category-icon,
.stat-icon {
    transition: all var(--transition-normal);
    animation: iconFloat 3s ease-in-out infinite;
}

.feature-icon:hover,
.category-icon:hover,
.stat-icon:hover {
    color: var(--accent-yellow);
    transform: scale(1.15) rotate(5deg);
}

/* Icon bounce animation */
@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Icon spin on hover */
.icon-spin:hover {
    animation: iconSpin 0.5s ease;
    color: var(--accent-yellow);
}

@keyframes iconSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Icon shake on hover */
.icon-shake:hover {
    animation: iconShake 0.5s ease;
    color: var(--accent-yellow);
}

@keyframes iconShake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-3px);
    }

    75% {
        transform: translateX(3px);
    }
}

/* Yellow glow for icons on hover */
.icon-glow:hover {
    color: var(--accent-yellow);
    text-shadow: 0 0 10px var(--accent-yellow), 0 0 20px var(--accent-yellow);
}

/* Nav link icons with yellow hover */
.nav-link:hover i,
.nav-link:hover .fa,
.nav-link:hover .fab,
.nav-link:hover .fas {
    color: var(--accent-yellow);
}

/* Product action icons */
.quick-action-btn:hover,
.product-wishlist:hover {
    background: var(--accent-yellow) !important;
    color: #1a1a2e !important;
    transform: scale(1.1);
}

/* Category card icon animation */
.category-card .category-icon {
    transition: all var(--transition-normal);
}

.category-card:hover .category-icon {
    background: var(--accent-yellow);
    color: #1a1a2e;
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
}

/* === CATEGORY SUBMENU BAR === */
.category-submenu {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    background: var(--bg-darker);
    border-bottom: 1px solid var(--glass-border);
    z-index: 999;
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 119, 182, 0.08);
    transition: var(--transition-normal);
}

.category-submenu.scrolled {
    top: 65px;
}

.category-submenu-inner {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-submenu-inner::-webkit-scrollbar {
    display: none;
}

.submenu-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.submenu-link:hover {
    background: var(--accent-yellow);
    color: #1a1a2e;
    border-color: var(--accent-yellow);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.3);
}

.submenu-link.active {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
}

.submenu-link .emoji {
    font-size: 1.1rem;
}

/* Adjust body padding to account for fixed submenu */
body.has-submenu {
    padding-top: 130px;
}

@media (max-width: 768px) {
    .category-submenu {
        top: 70px;
        padding: 10px 0;
    }

    .submenu-link {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    body.has-submenu {
        padding-top: 120px;
    }
}

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ============================================ */

/* ============ TABLET (max-width: 1024px) ============ */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    /* Header */
    .nav-menu {
        gap: 25px;
    }

    .header-actions {
        gap: 10px;
    }

    /* Hero Section */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        max-width: 80%;
        margin: 0 auto;
    }

    /* Categories */
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    /* Products */
    .products-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px;
    }

    /* Section Titles */
    .section-title {
        font-size: 2.2rem;
    }
}

/* ============ MOBILE LARGE (max-width: 768px) ============ */
@media (max-width: 768px) {

    /* Header */
    .header {
        padding: 10px 0;
    }

    .header.scrolled {
        padding: 8px 0;
    }

    .logo img {
        height: 40px;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 15px 30px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        width: 100%;
    }

    .nav-link::after {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-actions {
        gap: 8px;
    }

    .search-btn,
    .cart-btn {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    /* Hero */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-price-value {
        font-size: 2.2rem;
    }

    .hero-image {
        max-width: 100%;
    }

    .hero-float {
        display: none;
    }

    /* Flash Banner */
    .flash-banner-content {
        gap: 15px;
        padding: 0 10px;
    }

    .flash-text {
        font-size: 0.9rem;
    }

    .flash-timer-item {
        min-width: 40px;
        padding: 6px 8px;
    }

    .flash-timer-value {
        font-size: 1rem;
    }

    /* Categories */
    .categories {
        padding: 60px 0;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .category-overlay {
        padding: 20px;
    }

    .category-name {
        font-size: 1.1rem;
    }

    .category-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    /* Products */
    .products {
        padding: 60px 0;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }

    .products-tabs {
        gap: 8px;
        margin-bottom: 30px;
    }

    .product-tab {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .product-card {
        border-radius: 12px;
    }

    .product-info {
        padding: 12px;
    }

    .product-name {
        font-size: 0.9rem;
    }

    .price-current {
        font-size: 1rem;
    }

    .product-quick-actions {
        bottom: 10px;
        gap: 6px;
    }

    .quick-action-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    /* Section Headers */
    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    /* Promo Slider */
    .promo-slider-container {
        padding: 60px 0;
    }

    .promo-card {
        padding: 25px;
        border-radius: 20px;
    }

    .promo-card-title {
        font-size: 1.5rem;
    }

    .promo-card-subtitle {
        font-size: 0.9rem;
    }

    .promo-card-price {
        font-size: 1.8rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links {
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* WhatsApp Float */
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 1.6rem;
    }
}

/* ============ MOBILE SMALL (max-width: 576px) ============ */
@media (max-width: 576px) {
    .container {
        padding: 0 12px;
    }

    /* Header */
    .logo img {
        height: 35px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .search-btn,
    .cart-btn {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }

    .cart-count {
        width: 16px;
        height: 16px;
        font-size: 0.6rem;
    }

    /* Hero */
    .hero {
        padding: 90px 0 50px;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-price {
        flex-direction: column;
        gap: 5px;
        align-items: center;
    }

    .hero-price-value {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    /* Flash Banner */
    .flash-banner {
        padding: 10px 0;
    }

    .flash-banner-content {
        flex-direction: column;
        gap: 10px;
    }

    .flash-text {
        font-size: 0.85rem;
    }

    .flash-timer {
        gap: 6px;
    }

    .flash-timer-item {
        min-width: 35px;
        padding: 5px 6px;
    }

    .flash-timer-value {
        font-size: 0.9rem;
    }

    .flash-timer-label {
        font-size: 0.5rem;
    }

    .flash-btn {
        padding: 8px 18px;
        font-size: 0.85rem;
    }

    /* Categories */
    .categories {
        padding: 50px 0;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .category-card {
        aspect-ratio: 1;
        border-radius: 12px;
    }

    .category-overlay {
        padding: 15px;
    }

    .category-name {
        font-size: 0.95rem;
    }

    .category-count {
        font-size: 0.75rem;
    }

    .category-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .category-btn {
        width: 35px;
        height: 35px;
        bottom: 15px;
        right: 15px;
    }

    /* Products */
    .products {
        padding: 50px 0;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }

    .products-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }

    .product-tab {
        padding: 8px 16px;
        font-size: 0.8rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .product-card {
        border-radius: 10px;
    }

    .product-badge {
        padding: 3px 8px;
        font-size: 0.65rem;
    }

    .product-wishlist {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .product-image {
        min-height: 140px;
    }

    .product-info {
        padding: 10px;
    }

    .product-category {
        font-size: 0.65rem;
    }

    .product-name {
        font-size: 0.8rem;
        margin-bottom: 5px;
        -webkit-line-clamp: 2;
    }

    .product-rating {
        font-size: 0.7rem;
        margin-bottom: 5px;
    }

    .product-rating i {
        font-size: 0.65rem;
    }

    .product-price {
        gap: 6px;
    }

    .price-current {
        font-size: 0.95rem;
    }

    .price-old {
        font-size: 0.7rem;
    }

    .product-quick-actions {
        bottom: 8px;
        right: 8px;
        gap: 5px;
    }

    .quick-action-btn {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    /* Section Headers */
    .section-header {
        margin-bottom: 30px;
    }

    .section-badge {
        font-size: 0.75rem;
        padding: 6px 15px;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }

    /* Promo Slider */
    .promo-slider-container {
        padding: 50px 0;
    }

    .promo-card {
        padding: 20px;
        border-radius: 16px;
        display: flex;
        flex-direction: row;
        gap: 15px;
    }

    .promo-card-content {
        flex: 1;
    }

    .promo-card-badge {
        font-size: 0.7rem;
        padding: 4px 10px;
    }

    .promo-card-title {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }

    .promo-card-subtitle {
        font-size: 0.8rem;
        margin-bottom: 10px;
        -webkit-line-clamp: 2;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
    }

    .promo-card-price {
        font-size: 1.4rem;
    }

    .promo-card-image {
        width: 120px;
        flex-shrink: 0;
    }

    .promo-card-image img {
        max-height: 100px;
    }

    .promo-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    /* Slider Navigation */
    .promo-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .promo-nav-btn.prev {
        left: 5px;
    }

    .promo-nav-btn.next {
        right: 5px;
    }

    /* Footer */
    .footer {
        padding: 50px 0 30px;
    }

    .footer-grid {
        gap: 30px;
    }

    .footer-logo img {
        height: 40px;
    }

    .footer-title {
        font-size: 1rem;
    }

    .footer-bottom {
        padding-top: 20px;
        margin-top: 30px;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }

    /* WhatsApp Float */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
        font-size: 1.4rem;
    }

    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    /* Trust Badge */
    .trust-badge {
        padding: 12px 0;
    }

    .trust-badge-content {
        font-size: 0.85rem;
    }

    /* Category Card Scroll Container */
    .category-scroll-wrapper {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        padding: 10px 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .category-scroll-wrapper::-webkit-scrollbar {
        display: none;
    }

    .category-scroll-wrapper .category-card-mini {
        flex: 0 0 auto;
        width: 90px;
        scroll-snap-align: start;
    }
}

/* ============ VERY SMALL SCREENS (max-width: 375px) ============ */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-price-value {
        font-size: 1.5rem;
    }

    .products-grid {
        gap: 8px;
    }

    .product-info {
        padding: 8px;
    }

    .product-name {
        font-size: 0.75rem;
    }

    .price-current {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .promo-card-title {
        font-size: 1rem;
    }

    .promo-card-price {
        font-size: 1.2rem;
    }
}

/* ============ PROMO MODAL ============ */
.promo-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.promo-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.promo-modal-content {
    background: var(--bg-card);
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    padding: 40px;
    position: relative;
    animation: slideUp 0.3s ease;
    border: 1px solid var(--glass-border);
    max-height: 90vh;
    overflow-y: auto;
}

.promo-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg-darker);
    color: var(--text-primary);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.promo-modal-close:hover {
    background: var(--accent-pink);
    color: white;
    transform: rotate(90deg);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Promo Card Hover Effect */
.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 180, 216, 0.2);
}

@media (max-width: 576px) {
    .promo-modal-content {
        padding: 25px;
        margin: 10px;
    }

    .promo-modal-close {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}