/* ===== CSS VARIABLES ===== */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary: #0f172a;
    --accent: #10b981;
    --accent-dark: #059669;
    --whatsapp: #25d366;
    --whatsapp-dark: #1da851;
    --text: #1e293b;
    --text-light: #64748b;
    --text-lighter: #94a3b8;
    --bg: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #f1f5f9;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Poppins', sans-serif;
}

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

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

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
    background: linear-gradient(135deg, var(--secondary) 0%, #1e293b 100%);
    color: #fff;
    padding: 10px 0;
    font-size: 0.85rem;
    text-align: center;
}

.announcement-bar p i {
    margin-right: 6px;
    color: var(--accent);
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 24px;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-geka {
    color: var(--primary);
}

.logo-shop {
    color: var(--secondary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    position: static;
}

.nav-menu-header,
.nav-menu-footer,
.nav-menu-close {
    display: none;
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
    position: relative;
    padding: 4px 0;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.search-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text);
    transition: var(--transition);
}

.search-toggle:hover {
    background: var(--bg-dark);
    color: var(--primary);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== SEARCH OVERLAY ===== */
.search-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 24px 0;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.search-overlay.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 12px 20px;
    border: 2px solid var(--border);
    transition: var(--transition);
}

.search-box:focus-within {
    border-color: var(--primary);
    background: var(--bg);
}

.search-box input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    color: var(--text);
}

.search-close {
    color: var(--text-light);
    font-size: 1.25rem;
    transition: var(--transition);
}

.search-close:hover {
    color: var(--primary);
}

.search-results {
    max-height: 300px;
    overflow-y: auto;
    margin-top: 10px;
    display: none;
}

.search-results.active {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.search-result-info h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.search-result-info p {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 30%, #0f172a 60%, #1a1a2e 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    top: -10%;
    right: -5%;
    animation: float1 20s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    bottom: -10%;
    left: -5%;
    animation: float2 18s ease-in-out infinite;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    top: 40%;
    right: 20%;
    animation: float3 15s ease-in-out infinite;
}

.shape-4 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    bottom: 30%;
    right: 10%;
    animation: float1 22s ease-in-out infinite reverse;
}

.shape-5 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    top: 20%;
    left: 10%;
    animation: float2 25s ease-in-out infinite;
}

.shape-6 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    top: 60%;
    left: 30%;
    animation: float3 12s ease-in-out infinite reverse;
}

.shape-7 {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #f43f5e, #f59e0b);
    top: 10%;
    left: 40%;
    animation: float1 16s ease-in-out infinite;
}

.shape-8 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    bottom: 15%;
    right: 25%;
    animation: float2 14s ease-in-out infinite reverse;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(30px, -40px) rotate(90deg) scale(1.1); }
    50% { transform: translate(-20px, -80px) rotate(180deg) scale(1); }
    75% { transform: translate(-40px, -30px) rotate(270deg) scale(1.15); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(40px, -60px) rotate(120deg); }
    66% { transform: translate(-30px, -30px) rotate(240deg); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, -60px) scale(1.2); }
}

/* Particles */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: sparkle linear infinite;
}

.particle-1 { left: 10%; top: 20%; animation-duration: 8s; animation-delay: 0s; }
.particle-2 { left: 20%; top: 80%; animation-duration: 10s; animation-delay: 1s; }
.particle-3 { left: 30%; top: 40%; animation-duration: 7s; animation-delay: 2s; }
.particle-4 { left: 50%; top: 60%; animation-duration: 9s; animation-delay: 0.5s; }
.particle-5 { left: 60%; top: 30%; animation-duration: 11s; animation-delay: 1.5s; }
.particle-6 { left: 70%; top: 70%; animation-duration: 8s; animation-delay: 3s; }
.particle-7 { left: 80%; top: 50%; animation-duration: 10s; animation-delay: 0.8s; }
.particle-8 { left: 90%; top: 20%; animation-duration: 7s; animation-delay: 2.5s; }
.particle-9 { left: 40%; top: 90%; animation-duration: 9s; animation-delay: 1.2s; }
.particle-10 { left: 55%; top: 10%; animation-duration: 12s; animation-delay: 0.3s; }

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: translateY(0) scale(0); }
    10% { opacity: 1; transform: scale(1); }
    90% { opacity: 1; transform: scale(1); }
    50% { transform: translateY(-100px) scale(1.5); }
}

/* Glow effect */
.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.8; }
}

.hero-slider {
    position: relative;
    width: 100%;
    z-index: 5;
}

.hero-slide {
    display: none;
    padding: 80px 0;
}

.hero-slide.active {
    display: block;
    animation: fadeInUp 0.8s ease;
}

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

.hero-content {
    max-width: 700px;
    color: #fff;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--accent) 0%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: #fff;
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* ===== HERO DOTS ===== */
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    border: 2px solid transparent;
}

.hero-dot.active {
    background: var(--accent);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.hero-scroll {
    position: absolute;
    bottom: 100px;
    right: 40px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    z-index: 10;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-7px);
    }
}

/* ===== FEATURES STRIP ===== */
.features-strip {
    background: var(--bg);
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-item i {
    font-size: 1.75rem;
    color: var(--primary);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: var(--radius);
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.section-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto;
}

/* ===== CATEGORIES ===== */
.categories {
    padding: 80px 0;
    background: var(--bg-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.category-card {
    background: var(--bg);
    padding: 32px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--border);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.category-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    transition: var(--transition);
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.category-card p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ===== PRODUCTS ===== */
.products {
    padding: 80px 0;
}

.products-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    background: var(--bg-light);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.product-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, transparent 50%, rgba(59, 130, 246, 0.1) 100%);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card.hidden {
    display: none;
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    z-index: 2;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.product-badge.new {
    background: linear-gradient(135deg, var(--accent), #34d399);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.product-badge.sale {
    background: linear-gradient(135deg, #ef4444, #f97316);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.product-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--bg), transparent);
    pointer-events: none;
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    color: var(--text);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    transform: translateY(20px);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.quick-view::before {
    content: '\f06e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
}

.product-card:hover .quick-view {
    transform: translateY(0);
}

.quick-view:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.product-info {
    padding: 20px 22px;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(59, 130, 246, 0.08);
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
    white-space: nowrap;
}

.product-category::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}

.product-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.3;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em;
}

.product-name:hover {
    color: var(--primary);
}

.product-desc {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 14px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.4em;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 14px;
    margin-top: auto;
    margin-top: 16px;
    border-top: 1px solid var(--border);
}

.product-price {
    font-size: 1.15rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.btn-buy-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-buy-whatsapp::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-buy-whatsapp:hover::before {
    opacity: 1;
}

.btn-buy-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.btn-buy-whatsapp span,
.btn-buy-whatsapp svg {
    position: relative;
    z-index: 1;
}

.whatsapp-icon {
    width: 18px;
    height: 18px;
}

/* ===== PROMO BANNER ===== */
.promo-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.promo-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.promo-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.promo-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.promo-content p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

.promo-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.promo-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
}

.promo-feature i {
    color: var(--accent);
}

/* ===== NEWSLETTER ===== */
.newsletter {
    padding: 60px 0;
    background: var(--bg-dark);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.newsletter-content h3 i {
    color: var(--primary);
    margin-right: 8px;
}

.newsletter-content p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border-radius: var(--radius);
    border: 2px solid var(--border);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--primary);
}

.newsletter-form button {
    padding: 14px 28px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

/* ===== CONTACT ===== */
.contact {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.contact-card {
    background: var(--bg);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--whatsapp) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #fff;
}

.contact-card:nth-child(2) .contact-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.contact-card:nth-child(3) .contact-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.contact-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.contact-link {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--primary-dark);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--secondary);
    color: #fff;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-contact ul li i {
    color: var(--primary-light);
    width: 16px;
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.75rem;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--secondary);
    color: #fff;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 34px;
    width: 45px;
    height: 45px;
    background: var(--secondary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal {
    background: var(--bg);
    border-radius: var(--radius-xl);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text);
    z-index: 10;
    transition: var(--transition);
}

.modal-close:hover {
    background: #ef4444;
    color: #fff;
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.modal-image {
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border-radius: var(--radius-xl) 0 0 var(--radius-xl);
    min-height: 450px;
}

.modal-image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    transition: transform 0.5s ease;
    border-radius: var(--radius);
}

.modal-image img:hover {
    transform: scale(1.05);
}

.modal-details {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.modal-details h2 {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.25;
}

.modal-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.modal-details > p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.modal-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.feature-item-modal {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text);
}

.feature-item-modal i {
    color: var(--accent);
    font-size: 0.85rem;
    width: 18px;
}

.modal-actions {
    display: flex;
    gap: 12px;
}

.modal-actions .btn-whatsapp {
    flex: 1;
    justify-content: center;
    padding: 16px 28px;
    font-size: 1rem;
}

/* ===== RESPONSIVE ===== */

/* TABLETTE */
@media (max-width: 1024px) {
    html {
        scroll-padding-top: 75px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .hero h1 {
        font-size: clamp(2rem, 4vw, 3rem);
    }
}

/* MOBILE */
@media (max-width: 768px) {
    /* Header */
    * {
        -webkit-tap-highlight-color: transparent;
    }

    .announcement-bar {
        padding: 6px 0;
    }

    .announcement-bar p {
        font-size: 0.68rem;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }

    .header-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 8px 0;
        gap: 0;
    }

    .logo {
        font-size: 1.25rem;
        flex-shrink: 0;
        text-decoration: none;
    }

    .logo-geka {
        font-weight: 800;
        color: var(--primary);
    }

    .logo-shop {
        font-weight: 300;
        color: var(--text);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        max-width: 85vw;
        height: 100vh;
        height: 100dvh;
        background: var(--bg);
        flex-direction: column;
        padding: 0;
        gap: 0;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu-header,
    .nav-menu-footer,
    .nav-menu-close {
        display: flex;
    }

    .nav-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 24px;
        border-bottom: 1px solid var(--border);
        position: sticky;
        top: 0;
        background: var(--bg);
        z-index: 2;
        gap: 16px;
    }

    .nav-menu-header .nav-logo {
        font-size: 1.3rem;
        font-weight: 800;
        margin: 0;
    }

    .nav-menu-header .nav-logo .logo-geka {
        color: var(--primary);
    }

    .nav-menu-header .nav-logo .logo-shop {
        color: var(--text);
        font-weight: 300;
    }

    .nav-menu-close {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--bg-light);
        border: none;
        cursor: pointer;
        font-size: 1rem;
        color: var(--text);
        transition: all 0.2s ease;
    }

    .nav-menu-close:hover {
        background: #ef4444;
        color: #fff;
    }

    .nav-menu-items {
        padding: 8px 0;
    }

    .nav-link {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 14px 20px;
        width: 100%;
        font-size: 0.95rem;
        font-weight: 500;
        text-align: left;
        text-decoration: none;
        color: var(--text);
        position: relative;
        transition: all 0.2s ease;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 20px;
        right: 20px;
        height: 1px;
        background: var(--border);
    }

    .nav-link:last-child::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(59, 130, 246, 0.06);
        color: var(--primary);
    }

    .nav-link.active {
        background: rgba(59, 130, 246, 0.1);
    }

    .nav-link i {
        width: 20px;
        text-align: center;
        font-size: 0.9rem;
        opacity: 0.7;
        transition: opacity 0.2s ease;
    }

    .nav-link:hover i,
    .nav-link.active i {
        opacity: 1;
    }

    .nav-menu-footer {
        padding: 20px;
        margin-top: auto;
        border-top: 1px solid var(--border);
        background: var(--bg-light);
    }

    .nav-menu-footer p {
        font-size: 0.82rem;
        color: var(--text-light);
        margin: 0 0 14px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .nav-menu-footer p i {
        color: var(--primary);
    }

    .nav-menu-social {
        display: flex;
        gap: 10px;
    }

    .nav-menu-social a {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg);
        border-radius: 10px;
        color: var(--text-light);
        font-size: 0.95rem;
        transition: all 0.2s ease;
        text-decoration: none;
    }

    .nav-menu-social a:hover {
        background: var(--primary);
        color: #fff;
        transform: translateY(-2px);
    }

    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

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

    .header-actions {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-left: auto;
    }

    .search-toggle {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.95rem;
    }

    .mobile-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        padding: 8px;
        width: 36px;
        height: 36px;
        border-radius: var(--radius-sm);
        background: none;
        border: none;
        cursor: pointer;
    }

    .mobile-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--text);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Search */
    .search-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1002;
        padding: 12px 16px;
        background: var(--bg);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .search-box {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 14px;
        background: var(--bg-light);
        border-radius: var(--radius);
        border: 2px solid var(--border);
    }

    .search-box:focus-within {
        border-color: var(--primary);
    }

    .search-box input {
        flex: 1;
        border: none;
        background: transparent;
        font-size: 0.95rem;
        font-family: inherit;
        outline: none;
        color: var(--text);
    }

    .search-close {
        color: var(--text-light);
        font-size: 1.2rem;
        padding: 4px;
        background: none;
        border: none;
        cursor: pointer;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: 40px 0 60px;
    }

    .hero-slider {
        min-height: auto;
    }

    .hero-slide {
        padding: 20px 0;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-badge {
        font-size: 0.72rem;
        padding: 6px 14px;
        margin-bottom: 14px;
    }

    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 13px 20px;
    }

    .hero-dots {
        bottom: 10px;
        gap: 8px;
    }

    .hero-dot {
        width: 10px;
        height: 10px;
    }

    .hero-scroll {
        display: none;
    }

    .hero-shapes .shape {
        opacity: 0.05;
    }

    .shape-1 { width: 160px; height: 160px; }
    .shape-2 { width: 120px; height: 120px; }
    .shape-3 { width: 80px; height: 80px; }
    .shape-5 { width: 90px; height: 90px; }
    .shape-4, .shape-6, .shape-7, .shape-8 { display: none; }

    /* Features */
    .features-strip {
        padding: 25px 0;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .feature-item {
        gap: 10px;
    }

    .feature-item i {
        font-size: 1.2rem;
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

    .feature-item h4 {
        font-size: 0.82rem;
        line-height: 1.2;
    }

    .feature-item p {
        font-size: 0.75rem;
    }

    /* Categories */
    .categories {
        padding: 45px 0;
    }

    .section-header {
        margin-bottom: 28px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 0.88rem;
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .category-card {
        padding: 18px 8px;
    }

    .category-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .category-card h3 {
        font-size: 0.78rem;
        margin-bottom: 2px;
    }

    .category-card p {
        font-size: 0.68rem;
    }

    /* Products */
    .products {
        padding: 45px 0;
    }

    .products-filter {
        display: flex;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 8px;
        padding-bottom: 12px;
        margin-bottom: 28px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-left: -14px;
        margin-right: -14px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .products-filter::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        padding: 9px 16px;
        font-size: 0.82rem;
        font-weight: 500;
        white-space: nowrap;
        flex-shrink: 0;
        border-radius: 50px;
        min-height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-card {
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    }

    .product-card::before {
        display: none;
    }

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

    .product-badge {
        top: 8px;
        left: 8px;
        padding: 4px 10px;
        font-size: 0.62rem;
        font-weight: 700;
        border-radius: 50px;
        letter-spacing: 0.5px;
    }

    .product-image {
        height: 170px;
        background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    }

    .product-image::after {
        height: 40px;
    }

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

    .product-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(15, 23, 42, 0.6) 0%, transparent 70%);
        padding-bottom: 12px;
        align-items: flex-end;
        justify-content: center;
    }

    .quick-view {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(4px);
        color: var(--text);
        padding: 6px 12px;
        font-size: 0.68rem;
        border-radius: 50px;
        transform: none;
        opacity: 1;
        border: none;
        cursor: pointer;
    }

    .quick-view::before {
        display: none;
    }

    .product-info {
        padding: 12px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .product-category {
        font-size: 0.62rem;
        font-weight: 600;
        padding: 3px 8px;
        margin-bottom: 8px;
        letter-spacing: 0.5px;
        align-self: flex-start;
        white-space: nowrap;
    }

    .product-name {
        font-size: 0.82rem;
        font-weight: 700;
        margin-bottom: 4px;
        line-height: 1.3;
        -webkit-line-clamp: 2;
        min-height: 2.12em;
    }

    .product-desc {
        font-size: 0.72rem;
        margin-bottom: 10px;
        -webkit-line-clamp: 2;
        color: var(--text-light);
    }

    .product-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding-top: 10px;
        margin-top: 10px;
        border-top: 1px solid var(--border);
    }

    .product-price {
        font-size: 0.92rem;
        font-weight: 800;
        background: linear-gradient(135deg, var(--primary), var(--primary-light));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-align: center;
    }

    .btn-buy-whatsapp {
        padding: 10px 14px;
        font-size: 0.78rem;
        font-weight: 600;
        justify-content: center;
        min-height: 42px;
        border-radius: 50px;
    }

    .whatsapp-icon {
        width: 15px;
        height: 15px;
    }

    /* Promo Banner */
    .promo-banner {
        padding: 45px 0;
    }

    .promo-tag {
        font-size: 0.78rem;
        padding: 6px 16px;
    }

    .promo-content h2 {
        font-size: 1.35rem;
    }

    .promo-content p {
        font-size: 0.88rem;
    }

    .promo-banner .btn-lg {
        padding: 14px 24px;
        font-size: 0.92rem;
        width: 100%;
        justify-content: center;
    }

    .promo-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-top: 20px;
    }

    .promo-feature {
        font-size: 0.82rem;
        justify-content: center;
    }

    /* Newsletter */
    .newsletter {
        padding: 35px 0;
    }

    .newsletter-content h3 {
        font-size: 1.15rem;
        margin-bottom: 8px;
    }

    .newsletter-content p {
        font-size: 0.85rem;
        margin-bottom: 18px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form input,
    .newsletter-form button {
        padding: 13px 16px;
        font-size: 0.88rem;
        width: 100%;
    }

    /* Contact */
    .contact {
        padding: 45px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .contact-card {
        padding: 20px;
        flex-direction: row;
        display: flex;
        align-items: center;
        gap: 14px;
        text-align: left;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
        margin: 0;
        flex-shrink: 0;
    }

    .contact-card h3 {
        font-size: 0.92rem;
        margin-bottom: 2px;
    }

    .contact-card p {
        margin-bottom: 3px;
        font-size: 0.82rem;
    }

    .contact-link {
        font-size: 0.85rem;
    }

    /* Footer */
    .footer {
        padding: 35px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-bottom: 28px;
        text-align: center;
    }

    .footer-brand p {
        font-size: 0.85rem;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links h4,
    .footer-contact h4 {
        text-align: center;
        padding-bottom: 10px;
    }

    .footer-links h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links ul li,
    .footer-contact ul li {
        display: inline-block;
        margin: 0 8px 6px;
    }

    .footer-contact ul li i {
        width: auto;
        margin-right: 4px;
    }

    .footer-bottom p {
        font-size: 0.78rem;
    }

    /* WhatsApp Float */
    .whatsapp-float {
        bottom: 18px;
        right: 18px;
        width: 54px;
        height: 54px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    /* Back to Top */
    .back-to-top {
        bottom: 82px;
        right: 22px;
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }

    /* Modal */
    .modal-overlay {
        padding: 0;
        align-items: flex-end;
    }

    .modal {
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        max-height: 92vh;
        width: 100%;
        overflow-y: auto;
        transform: translateY(100%);
    }

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

    .modal-close {
        top: 14px;
        right: 14px;
        width: 38px;
        height: 38px;
        z-index: 10;
        background: rgba(255,255,255,0.9);
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .modal-body {
        grid-template-columns: 1fr;
    }

    .modal-image {
        min-height: 180px;
        max-height: 220px;
        padding: 40px 20px 20px;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        justify-content: flex-start;
    }

    .modal-image img {
        max-width: 100%;
        max-height: 200px;
        width: 100%;
        object-fit: contain;
    }

    .modal-details {
        padding: 20px;
    }

    .modal-details h2 {
        font-size: 1.15rem;
    }

    .modal-price {
        font-size: 1.25rem;
    }

    .modal-details > p {
        font-size: 0.85rem;
    }

    .feature-item-modal {
        font-size: 0.82rem;
    }

    .modal-actions .btn-whatsapp {
        padding: 14px 20px;
        font-size: 0.9rem;
        width: 100%;
    }
}

/* PETIT MOBILE */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .header-content {
        padding: 8px 0;
    }

    .announcement-bar p {
        font-size: 0.7rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .hero h1 {
        font-size: 1.35rem;
    }

    .hero p {
        font-size: 0.85rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .feature-item {
        padding: 4px 0;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .category-card {
        padding: 14px 6px;
    }

    .category-icon {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }

    .category-card h3 {
        font-size: 0.72rem;
    }

    .category-card p {
        display: none;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-card {
        border-radius: var(--radius-sm);
        box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
    }

    .product-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    }

    .product-badge {
        top: 6px;
        left: 6px;
        padding: 3px 8px;
        font-size: 0.58rem;
        font-weight: 700;
    }

    .product-image {
        height: 145px;
    }

    .product-image::after {
        height: 30px;
    }

    .product-info {
        padding: 10px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .product-category {
        font-size: 0.58rem;
        padding: 2px 6px;
        margin-bottom: 6px;
        align-self: flex-start;
        white-space: nowrap;
    }

    .product-name {
        font-size: 0.76rem;
        font-weight: 700;
        line-height: 1.25;
        -webkit-line-clamp: 2;
        min-height: 1.9em;
    }

    .product-desc {
        font-size: 0.66rem;
        -webkit-line-clamp: 1;
        min-height: auto;
    }

    .product-footer {
        gap: 6px;
        padding-top: 8px;
        margin-top: auto;
    }

    .product-price {
        font-size: 0.82rem;
        font-weight: 800;
    }

    .btn-buy-whatsapp {
        padding: 9px 8px;
        font-size: 0.68rem;
        min-height: 38px;
        border-radius: 50px;
    }

    .whatsapp-icon {
        width: 13px;
        height: 13px;
    }

    .promo-content h2 {
        font-size: 1.15rem;
    }

    .promo-features {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .contact-card {
        padding: 16px;
    }

    .contact-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .modal-image {
        min-height: 140px;
        padding: 40px 16px 16px;
    }

    .modal-image img {
        max-height: 160px;
    }

    .modal-details {
        padding: 16px;
    }

    .modal-details h2 {
        font-size: 1rem;
    }
}

/* TRES PETIT ECRAN */
@media (max-width: 360px) {
    html {
        scroll-padding-top: 65px;
    }

    .container {
        padding: 0 10px;
    }

    .hero h1 {
        font-size: 1.2rem;
    }

    .hero-badge {
        font-size: 0.68rem;
    }

    .section-header h2 {
        font-size: 1.3rem;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-image {
        height: 150px;
    }

    .product-name {
        font-size: 0.72rem;
        min-height: 1.8em;
    }

    .product-desc {
        display: -webkit-box;
        -webkit-line-clamp: 1;
        min-height: auto;
    }

    .product-footer {
        gap: 5px;
        padding-top: 8px;
        margin-top: auto;
    }

    .product-price {
        font-size: 0.72rem;
    }

    .btn-buy-whatsapp {
        padding: 8px 6px;
        font-size: 0.65rem;
        min-height: 36px;
    }
}

