/* ================================
   ReShape - Premium Weight Loss Website
   Modern, Animated, Responsive CSS
================================ */

/* CSS Variables */
:root {
    --primary-color: #8B5CF6;
    --primary-dark: #7C3AED;
    --secondary-color: #EC4899;
    --accent-color: #10B981;
    --gradient-primary: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    --gradient-secondary: linear-gradient(135deg, #10B981 0%, #8B5CF6 100%);
    --gradient-hero: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #0f0f1a 100%);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-light: rgba(255, 255, 255, 0.5);
    --bg-primary: #0a0a0f;
    --bg-secondary: #0f0f1a;
    --bg-dark: #050508;
    --bg-glass: rgba(255, 255, 255, 0.05);
    --bg-glass-strong: rgba(255, 255, 255, 0.1);
    --border-glass: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.3);
    --shadow-glow-pink: 0 0 40px rgba(236, 72, 153, 0.3);
    --border-radius: 24px;
    --border-radius-sm: 16px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 0% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Glass effect base */
.glass {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

/* ================================
   Loader Styles
================================ */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #050508 0%, #0a0a14 25%, #0f0f1e 50%, #0a0a14 75%, #050508 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(139, 92, 246, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(236, 72, 153, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 60%);
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { 
        opacity: 0.8; 
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        opacity: 1; 
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes ringPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.loader-logo {
    margin-bottom: 40px;
    animation: float 3s ease-in-out infinite;
}

.loader-logo img {
    width: 220px;
    height: auto;
    filter: drop-shadow(0 0 60px rgba(139, 92, 246, 0.8))
            drop-shadow(0 0 100px rgba(236, 72, 153, 0.4));
    animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 60px rgba(139, 92, 246, 0.8))
                drop-shadow(0 0 100px rgba(236, 72, 153, 0.4));
    }
    100% {
        filter: drop-shadow(0 0 80px rgba(139, 92, 246, 1))
                drop-shadow(0 0 120px rgba(236, 72, 153, 0.6))
                drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    }
}

/* Dot Spinner */
.dot-spinner {
    --uib-size: 2.8rem;
    --uib-speed: 0.9s;
    --uib-color: #8B5CF6;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: var(--uib-size);
    width: var(--uib-size);
    margin: 0 auto 25px;
}

.dot-spinner__dot {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
}

.dot-spinner__dot::before {
    content: '';
    height: 20%;
    width: 20%;
    border-radius: 50%;
    background-color: var(--uib-color);
    transform: scale(0);
    opacity: 0.5;
    animation: pulse0112 calc(var(--uib-speed) * 1.111) ease-in-out infinite;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.dot-spinner__dot:nth-child(2) {
    transform: rotate(45deg);
}

.dot-spinner__dot:nth-child(2)::before {
    animation-delay: calc(var(--uib-speed) * -0.875);
    background-color: #9F6FF6;
}

.dot-spinner__dot:nth-child(3) {
    transform: rotate(90deg);
}

.dot-spinner__dot:nth-child(3)::before {
    animation-delay: calc(var(--uib-speed) * -0.75);
    background-color: #B380F9;
}

.dot-spinner__dot:nth-child(4) {
    transform: rotate(135deg);
}

.dot-spinner__dot:nth-child(4)::before {
    animation-delay: calc(var(--uib-speed) * -0.625);
    background-color: #C994FC;
}

.dot-spinner__dot:nth-child(5) {
    transform: rotate(180deg);
}

.dot-spinner__dot:nth-child(5)::before {
    animation-delay: calc(var(--uib-speed) * -0.5);
    background-color: #EC4899;
}

.dot-spinner__dot:nth-child(6) {
    transform: rotate(225deg);
}

.dot-spinner__dot:nth-child(6)::before {
    animation-delay: calc(var(--uib-speed) * -0.375);
    background-color: #C994FC;
}

.dot-spinner__dot:nth-child(7) {
    transform: rotate(270deg);
}

.dot-spinner__dot:nth-child(7)::before {
    animation-delay: calc(var(--uib-speed) * -0.25);
    background-color: #B380F9;
}

.dot-spinner__dot:nth-child(8) {
    transform: rotate(315deg);
}

.dot-spinner__dot:nth-child(8)::before {
    animation-delay: calc(var(--uib-speed) * -0.125);
    background-color: #9F6FF6;
}

@keyframes pulse0112 {
    0%,
    100% {
        transform: scale(0);
        opacity: 0.5;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }
}

.loader-text {
    color: white;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: fadeInOut 2s ease-in-out infinite;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ================================
   Header & Navigation
================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

.header.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    padding: 15px 0;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 700;
    color: white;
    transition: var(--transition);
}

.header.scrolled .nav-logo {
    color: var(--text-primary);
}

.nav-logo img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.nav-list {
    display: flex;
    gap: 40px;
}

.nav-link {
    position: relative;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
}

.header.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.8);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-cart {
    position: relative;
    background: transparent;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    transition: var(--transition);
}

.nav-cart:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--gradient-primary);
    color: white;
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-toggle, .nav-close {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

.header.scrolled .nav-toggle {
    color: var(--text-primary);
}

.header.scrolled .nav-cart {
    color: var(--text-primary);
}

.header.scrolled .nav-cart:hover {
    color: var(--primary-color);
}

/* ================================
   Hero Section
================================ */
.hero {
    min-height: 100vh;
    background: var(--bg-primary);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    animation: bgFloat 20s ease-in-out infinite;
}

@keyframes bgFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(2%, 2%) rotate(1deg); }
    66% { transform: translate(-2%, 1%) rotate(-1deg); }
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 20s ease-in-out infinite;
}

.hero-particles::before {
    top: -100px;
    right: -100px;
}

.hero-particles::after {
    bottom: -150px;
    left: -150px;
    animation-delay: -10s;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.hero-container .hero-title {
    color: white;
    margin-bottom: 40px;
}

/* Hero Logo */
.hero-logo {
    display: none;
    margin-bottom: 30px;
    text-align: center;
}

.hero-logo-text {
    font-size: 120px;
    font-weight: 800;
    background: linear-gradient(135deg, #EC4899 0%, #8B5CF6 50%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 10px 40px rgba(139, 92, 246, 0.3));
    animation: logoFloat 4s ease-in-out infinite;
    display: inline-block;
}

.hero-logo img {
    max-width: 840px;
    height: auto;
    filter: drop-shadow(0 10px 40px rgba(139, 92, 246, 0.3));
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-content {
    color: white;
}

.hero-subtitle {
    display: inline-block;
    padding: 10px 20px;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 50%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: white;
    border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
    background: var(--bg-glass-strong);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border-glass);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(139, 92, 246, 0.1);
}

.cart-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-stats {
    display: flex;
    gap: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-image img {
    max-width: 450px;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
}

.hero-bottles {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

.hero-bottles-desktop {
    display: flex;
}

.hero-bottles-mobile {
    display: none;
}

.bottle-combined {
    max-width: 100%;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
}

.bottle-link {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.4s ease;
}

.bottle-link:hover .bottle {
    transform: translateY(-20px) scale(1.15) rotate(0deg) !important;
    z-index: 10;
    filter: drop-shadow(0 40px 80px rgba(108, 99, 255, 0.6));
}

.bottle {
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.3));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.bottle-left {
    max-width: 320px;
    transform: translateX(100px) rotate(-10deg);
    z-index: 1;
    animation: floatLeft 6s ease-in-out infinite;
}

.bottle-center {
    max-width: 420px;
    z-index: 3;
    animation: floatCenter 6s ease-in-out infinite;
    position: relative;
}

.bottle-right {
    max-width: 320px;
    transform: translateX(-100px) rotate(10deg);
    z-index: 2;
    animation: floatRight 6s ease-in-out infinite;
}

.bottle:hover {
    transform: translateY(-20px) scale(1.15) rotate(0deg) !important;
    z-index: 10;
    filter: drop-shadow(0 40px 80px rgba(108, 99, 255, 0.6));
}

@keyframes floatLeft {
    0%, 100% { transform: translateX(100px) translateY(0) rotate(-10deg); }
    50% { transform: translateX(100px) translateY(-20px) rotate(-10deg); }
}

@keyframes floatCenter {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-25px); }
}

@keyframes floatRight {
    0%, 100% { transform: translateX(-100px) translateY(0) rotate(10deg); }
    50% { transform: translateX(-100px) translateY(-20px) rotate(10deg); }
}

.hero-image-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    display: none;
}

.hero-wave svg {
    width: 100%;
    height: auto;
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
    animation: slideUp 1s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.animate-slide-up-delay {
    animation: slideUp 1s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
   Section Headers
================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    padding: 8px 20px;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 44px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.section-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* ================================
   About Section
================================ */
.about {
    background: var(--bg-secondary);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.about-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-card:hover {
    transform: translateY(-10px);
    background: var(--bg-glass-strong);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: var(--shadow-glow);
}

.about-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.about-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.about-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

/* ================================
   Products Section
================================ */
.products {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.products-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(236, 72, 153, 0.08) 0%, transparent 40%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.product-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.3);
}

.product-card.featured {
    transform: scale(1.05);
    z-index: 10;
    border: 1px solid rgba(139, 92, 246, 0.5);
    box-shadow: var(--shadow-glow);
}

.product-card.featured::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    z-index: -1;
    opacity: 0.3;
    filter: blur(20px);
}

.product-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    background: var(--gradient-primary);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.4);
}

.product-badge.premium {
    background: var(--gradient-primary);
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.4);
}

.product-badge.elite {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a2e;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.product-discount {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 14px;
    background: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);
    color: white;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    z-index: 10;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 5px 20px rgba(255, 71, 87, 0.4);
}

.product-ribbon {
    position: absolute;
    top: 70px;
    right: -35px;
    padding: 8px 40px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #059669 100%);
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.5);
}

.product-image {
    position: relative;
    padding: 40px;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.05) 0%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    overflow: hidden;
}

.product-image img {
    max-height: 250px;
    transition: var(--transition);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.product-card:hover .product-image img {
    transform: scale(1.1) rotate(5deg);
}

.product-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    transition: var(--transition);
}

.product-card:hover .product-glow {
    transform: scale(1.5);
}

.product-actions {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
}

/* Show action buttons on touch devices */
@media (hover: none) and (pointer: coarse) {
    .product-actions {
        opacity: 1;
        right: 10px;
    }
    
    .action-btn {
        transform: translateX(0);
    }
}

.action-btn {
    width: 45px;
    height: 45px;
    background: var(--bg-glass-strong);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transform: translateX(20px);
}

.product-card:hover .action-btn {
    transform: translateX(0);
}

.product-card:hover .action-btn:nth-child(1) {
    transition-delay: 0s;
}

.product-card:hover .action-btn:nth-child(2) {
    transition-delay: 0.1s;
}

.product-card:hover .action-btn:nth-child(3) {
    transition-delay: 0.2s;
}

.action-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(0) scale(1.1);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
}

.quick-buy-btn:hover {
    background: var(--accent-color);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
}

.wishlist-btn:hover {
    background: #ff4757;
    box-shadow: 0 8px 30px rgba(255, 71, 87, 0.5);
}

.wishlist-btn.active {
    background: #ff4757;
    color: white;
    box-shadow: 0 8px 30px rgba(255, 71, 87, 0.5);
}

.wishlist-btn.active i {
    animation: heartBeat 0.5s ease;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none; /* Hidden - using action buttons instead */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

/* Quick view button styles - inherits from action-btn */
.action-btn.quick-view-btn {
    color: var(--primary-color);
}

.action-btn.quick-view-btn:hover {
    background: var(--primary-color);
    color: white;
}

.product-card:hover .action-btn.quick-view-btn {
    transform: translateX(0);
}

.product-content {
    padding: 20px;
    background: transparent;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.product-rating .stars {
    display: flex;
    gap: 2px;
}

.product-rating .stars i {
    color: #FFD700;
    font-size: 14px;
}

.product-rating span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.product-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.product-description {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-features {
    margin-bottom: 15px;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    padding: 12px;
    border-radius: var(--border-radius-sm);
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 6px;
}

.product-features li:last-child {
    margin-bottom: 0;
}

.product-features i {
    color: var(--accent-color);
    font-size: 14px;
}

.product-pricing {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding: 12px 0;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.price-old {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.price-new {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-buttons-wrapper {
    margin-top: auto;
}

.product-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.product-buttons .btn-cart {
    flex: 1;
    padding: 12px 16px;
    font-size: 13px;
    justify-content: center;
}

.btn-buy-now {
    flex: 1;
    padding: 12px 16px;
    font-size: 13px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #059669 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
    border: none;
    justify-content: center;
}

.btn-buy-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.6);
}

.btn-view-product {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.btn-view-product:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.btn-view-product i {
    font-size: 14px;
}

.btn-cart {
    width: 100%;
    justify-content: center;
}

/* ================================
   Results Section
================================ */
.results {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
    position: relative;
    overflow: hidden;
}

.results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top left, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
                radial-gradient(ellipse at bottom right, rgba(236, 72, 153, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.results .section-subtitle {
    background: var(--bg-glass-strong);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
}

.results .section-title {
    color: var(--text-primary);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.result-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.result-card:hover {
    transform: translateY(-10px);
    background: var(--bg-glass-strong);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.result-stats {
    margin-bottom: 20px;
}

.result-stat {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.result-number {
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-unit {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
}

.result-time {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.result-info h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.result-info p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* ================================
   Testimonials Section
================================ */
.testimonials {
    background: transparent;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border-color: rgba(139, 92, 246, 0.3);
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 60px;
    color: rgba(139, 92, 246, 0.2);
}

.testimonial-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.author-info span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.author-rating {
    margin-top: 5px;
}

.author-rating i {
    color: #FFD700;
    font-size: 12px;
}

/* ================================
   CTA Section
================================ */
.cta {
    background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.1) 50%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(236, 72, 153, 0.25) 0%, transparent 50%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    color: white;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.cta-timer {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.timer-item {
    background: var(--bg-glass-strong);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-sm);
    padding: 20px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.timer-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timer-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding: 15px 30px;
    background: rgba(16, 185, 129, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    color: var(--accent-color);
    font-weight: 500;
}

.cta-guarantee i {
    font-size: 20px;
}

/* ================================
   Shipping Section
================================ */
.shipping {
    background: transparent;
    position: relative;
    overflow: hidden;
}

.shipping::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.shipping-container {
    position: relative;
    z-index: 1;
}

/* Shipping Map Animation */
.shipping-map {
    position: relative;
    height: 300px;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-center {
    position: relative;
    z-index: 10;
}

.spain-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
}

.spain-marker i {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.5);
    position: relative;
    z-index: 5;
}

.spain-marker span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--bg-glass-strong);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid var(--border-glass);
    white-space: nowrap;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid rgba(139, 92, 246, 0.5);
    border-radius: 50%;
    animation: pulseRing 3s ease-out infinite;
}

.pulse-ring.delay-1 {
    animation-delay: 1s;
}

.pulse-ring.delay-2 {
    animation-delay: 2s;
}

@keyframes pulseRing {
    0% {
        width: 80px;
        height: 80px;
        opacity: 1;
    }
    100% {
        width: 250px;
        height: 250px;
        opacity: 0;
    }
}

/* Shipping Routes */
.shipping-routes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.route {
    position: absolute;
    top: 50%;
    left: 50%;
}

.route-1 {
    transform: translate(-50%, -50%) rotate(-30deg);
}

.route-2 {
    transform: translate(-50%, -50%) rotate(45deg);
}

.route-3 {
    transform: translate(-50%, -50%) rotate(150deg);
}

.route-4 {
    transform: translate(-50%, -50%) rotate(-120deg);
}

.plane, .ship {
    position: absolute;
    font-size: 20px;
    color: var(--accent-color);
    animation: flyRoute 4s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.5));
}

.route-1 .plane { animation-delay: 0s; }
.route-2 .plane { animation-delay: 1s; }
.route-3 .plane { animation-delay: 2s; }
.route-4 .ship { animation-delay: 0.5s; animation-duration: 6s; }

@keyframes flyRoute {
    0% {
        transform: translateX(0) rotate(90deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(150px) rotate(90deg);
        opacity: 0;
    }
}

/* Destinations */
.destination {
    position: absolute;
    font-size: 24px;
    color: var(--secondary-color);
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(236, 72, 153, 0.5));
}

.dest-europe {
    top: 20%;
    right: 30%;
    animation-delay: 0s;
}

.dest-usa {
    top: 35%;
    left: 15%;
    animation-delay: 0.5s;
}

.dest-asia {
    top: 25%;
    right: 15%;
    animation-delay: 1s;
}

.dest-latam {
    bottom: 25%;
    left: 25%;
    animation-delay: 1.5s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Delivery Grid */
.delivery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.delivery-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius);
    padding: 25px;
    padding-top: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    min-height: 120px;
}

.delivery-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.delivery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.delivery-card:hover::before {
    opacity: 1;
}

.delivery-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.delivery-icon.europe {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%);
    color: #3B82F6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.delivery-icon.spain {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(239, 68, 68, 0.1) 100%);
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.delivery-icon.usa {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.1) 100%);
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.delivery-icon.asia {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(245, 158, 11, 0.1) 100%);
    color: #F59E0B;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.delivery-icon.latam {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0.1) 100%);
    color: #8B5CF6;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.delivery-icon.worldwide {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2) 0%, rgba(236, 72, 153, 0.1) 100%);
    color: #EC4899;
    border: 1px solid rgba(236, 72, 153, 0.3);
}

.delivery-info {
    flex: 1;
}

.delivery-info {
    flex: 1;
    min-width: 0;
}

.delivery-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.delivery-countries {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.delivery-time {
    text-align: center;
    padding: 0 15px;
    border-left: 1px solid var(--border-glass);
    flex-shrink: 0;
    min-width: 70px;
}

.time-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.time-unit {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.delivery-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.delivery-badge.express {
    background: rgba(59, 130, 246, 0.2);
    color: #3B82F6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.delivery-badge.fastest {
    background: rgba(16, 185, 129, 0.2);
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.delivery-badge.standard {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--border-glass);
}

/* Shipping Features */
.shipping-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.shipping-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    transition: var(--transition);
}

.shipping-feature:hover {
    transform: translateY(-3px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.shipping-feature .feature-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
}

.shipping-feature span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

/* ================================
   Contact Section
================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.contact-details p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--bg-glass-strong);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
    border-color: transparent;
}

.contact-form {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px 18px 55px;
    font-size: 16px;
    font-family: inherit;
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    background: var(--bg-glass-strong);
    color: var(--text-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(139, 92, 246, 0.1);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.form-group i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

.form-group textarea + i {
    top: 25px;
    transform: none;
}

.form-group input:focus + i,
.form-group textarea:focus + i {
    color: var(--primary-color);
}

/* ================================
   Footer
================================ */
.footer {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    color: white;
    padding-top: 80px;
    position: relative;
}

.footer-wave {
    display: none;
}

.footer-wave svg {
    width: 100%;
    height: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding: 60px 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
}

.footer-brand p {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.8;
}

.footer-links h4,
.footer-newsletter h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 15px;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 10px;
}

.footer-newsletter p {
    font-size: 15px;
    opacity: 0.8;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    font-size: 15px;
    font-family: inherit;
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    background: var(--bg-glass-strong);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: white;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.newsletter-form button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.6);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    font-size: 14px;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-legal a:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* ================================
   Back to Top Button
================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.6);
}

/* ================================
   Cart Sidebar
================================ */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 15, 30, 0.98) 0%, rgba(10, 10, 20, 0.98) 100%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-left: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 
        -20px 0 80px rgba(0, 0, 0, 0.6),
        -5px 0 30px rgba(139, 92, 246, 0.1);
    z-index: 2000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.15);
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.05) 0%, transparent 100%);
}

.cart-header h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
}

.cart-header h3 i {
    color: var(--primary-color);
}

.cart-close {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition);
}

.cart-close:hover {
    background: rgba(236, 72, 153, 0.2);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-items::-webkit-scrollbar {
    width: 6px;
}

.cart-items::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

.cart-items::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.3);
    border-radius: 3px;
}

.cart-items::-webkit-scrollbar-thumb:hover {
    background: rgba(139, 92, 246, 0.5);
}

.cart-empty {
    text-align: center;
    padding: 80px 30px;
    color: rgba(255, 255, 255, 0.4);
}

.cart-empty i {
    font-size: 80px;
    margin-bottom: 25px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.4;
}

.cart-empty p {
    font-size: 16px;
    font-weight: 500;
}

/* Cart Item */
.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    margin-bottom: 12px;
    transition: var(--transition);
    position: relative;
}

.cart-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(139, 92, 246, 0.2);
    transform: translateX(-5px);
}

.cart-item-image {
    width: 65px;
    height: 65px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-price {
    font-size: 16px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cart-item-remove {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.cart-item-remove:hover {
    background: rgba(236, 72, 153, 0.2);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.cart-footer {
    padding: 25px 30px 30px;
    border-top: 1px solid rgba(139, 92, 246, 0.15);
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.05) 0%, transparent 100%);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.cart-total span:last-child {
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cart-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-buttons .btn {
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1999;
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* ================================
   AOS-like Animations
================================ */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"] {
    transform: translateY(40px);
}

[data-aos="fade-right"] {
    transform: translateX(-40px);
}

[data-aos="fade-left"] {
    transform: translateX(40px);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* ================================
   Responsive Design
================================ */
@media (max-width: 1200px) {
    .products-grid {
        gap: 30px;
    }
    
    .product-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-image {
        margin-bottom: 40px;
    }
    
    .hero-bottles-desktop {
        display: none;
    }
    
    .hero-bottles-mobile {
        display: flex;
        justify-content: center;
    }
    
    .bottle-combined {
        max-width: 500px;
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Shipping Section 1024px */
    .delivery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .delivery-card {
        flex-wrap: wrap;
        padding: 15px;
        gap: 10px;
    }
    
    .delivery-info {
        flex: 1;
        min-width: 80px;
    }
    
    .delivery-time {
        border-left: none;
        padding: 0;
        text-align: right;
    }
    
    .shipping-map {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100%;
        background: rgba(10, 10, 20, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        border-left: 1px solid var(--border-glass);
        padding: 80px 30px;
        box-shadow: -10px 0 60px rgba(0, 0, 0, 0.5);
        transition: var(--transition);
    }
    
    .nav-menu.show {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-link {
        color: var(--text-primary);
        font-size: 16px;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-close {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        color: var(--text-primary);
    }
    
    .nav-logo span {
        display: inline;
        font-size: 20px;
    }
    
    .nav-logo img {
        width: 35px;
        height: 35px;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-logo {
        display: block;
        margin-bottom: 20px;
    }
    
    .hero-logo-text {
        font-size: 64px;
    }
    
    .hero-logo img {
        max-width: 540px;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    
    .stat-item {
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .section-subtitle {
        font-size: 11px;
        padding: 8px 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 14px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-card {
        padding: 25px;
    }
    
    .about-card h3 {
        font-size: 18px;
    }
    
    .about-card p {
        font-size: 13px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        gap: 30px;
        padding: 0 20px;
    }
    
    .product-card {
        margin: 0;
    }
    
    .product-image {
        min-height: 480px;
        padding: 40px;
    }
    
    .product-image img {
        max-height: 420px;
    }
    
    .product-content {
        padding: 15px;
    }
    
    .product-title {
        font-size: 18px;
    }
    
    .product-description {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .product-features {
        padding: 10px;
    }
    
    .product-features li {
        font-size: 11px;
        gap: 6px;
        margin-bottom: 4px;
    }
    
    .product-features i {
        font-size: 10px;
    }
    
    .product-pricing {
        padding: 10px 0;
        margin-bottom: 12px;
    }
    
    .price-old {
        font-size: 14px;
    }
    
    .price-new {
        font-size: 24px;
    }
    
    .product-buttons {
        flex-direction: row;
        gap: 6px;
    }
    
    .product-buttons .btn-cart,
    .btn-buy-now {
        padding: 10px 12px;
        font-size: 11px;
    }
    
    .product-buttons .btn-cart i,
    .btn-buy-now i {
        font-size: 12px;
    }
    
    .product-buttons .btn-cart span,
    .btn-buy-now span {
        display: inline;
        font-size: 11px;
    }
    
    .btn-view-product {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .product-badge {
        padding: 5px 10px;
        font-size: 10px;
    }
    
    .product-discount {
        padding: 5px 10px;
        font-size: 11px;
    }
    
    .action-btn {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
    
    .product-actions {
        gap: 8px;
        right: 10px;
    }
    
    .bottle-combined {
        max-width: 280px;
    }
    
    .result-card {
        padding: 25px;
    }
    
    .result-number {
        font-size: 48px;
    }
    
    .result-unit {
        font-size: 18px;
    }
    
    .result-info h4 {
        font-size: 16px;
    }
    
    .result-info p {
        font-size: 13px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .testimonial-quote {
        font-size: 40px;
    }
    
    .author-info h4 {
        font-size: 15px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-description {
        font-size: 14px;
    }
    
    .cta-timer {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .timer-item {
        padding: 12px 18px;
    }
    
    .timer-number {
        font-size: 28px;
    }
    
    .timer-label {
        font-size: 10px;
    }
    
    /* Shipping Section 768px */
    .shipping-map {
        height: 200px;
        margin-bottom: 40px;
    }
    
    .spain-marker i {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .spain-marker span {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .pulse-ring {
        width: 60px;
        height: 60px;
    }
    
    @keyframes pulseRing {
        0% {
            width: 60px;
            height: 60px;
            opacity: 1;
        }
        100% {
            width: 180px;
            height: 180px;
            opacity: 0;
        }
    }
    
    .delivery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .delivery-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
        gap: 10px;
    }
    
    .delivery-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .delivery-info {
        width: 100%;
    }
    
    .delivery-info h4 {
        font-size: 14px;
    }
    
    .delivery-countries {
        font-size: 11px;
    }
    
    .delivery-time {
        display: flex;
        align-items: center;
        gap: 5px;
        border-left: none;
        padding: 0;
        width: 100%;
    }
    
    .time-value {
        font-size: 22px;
    }
    
    .time-unit {
        font-size: 11px;
    }
    
    .delivery-badge {
        top: 8px;
        right: 8px;
        padding: 3px 8px;
        font-size: 9px;
    }
    
    .shipping-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .shipping-feature {
        width: 100%;
        max-width: none;
        justify-content: flex-start;
        padding: 12px 20px;
    }
    
    .shipping-feature .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .shipping-feature span {
        font-size: 13px;
    }
    
    .destination {
        display: none;
    }
    
    .shipping-routes {
        display: none;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 14px 15px 14px 45px;
        font-size: 14px;
    }
    
    .form-group i {
        left: 15px;
        font-size: 14px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .contact-details h4 {
        font-size: 16px;
    }
    
    .contact-details p {
        font-size: 13px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-links,
    .footer-newsletter {
        display: none;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .cart-header {
        padding: 20px;
    }
    
    .cart-header h3 {
        font-size: 18px;
    }
    
    .cart-items {
        padding: 15px;
    }
    
    .cart-item {
        padding: 14px;
        gap: 12px;
    }
    
    .cart-item-image {
        width: 55px;
        height: 55px;
    }
    
    .cart-item-image img {
        width: 40px;
        height: 40px;
    }
    
    .cart-item-name {
        font-size: 14px;
    }
    
    .cart-item-price {
        font-size: 15px;
    }
    
    .cart-footer {
        padding: 20px;
    }
    
    .cart-total span:last-child {
        font-size: 24px;
    }
    
    .cart-buttons .btn {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 16px;
    }
    
    /* Loader mobile */
    .loader-logo img {
        width: 150px;
    }
    
    .dot-spinner {
        --uib-size: 2.2rem;
    }
    
    .loader-text {
        font-size: 12px;
        letter-spacing: 3px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .hero-subtitle {
        font-size: 10px;
        padding: 6px 12px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 13px;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .stat-item {
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-description {
        font-size: 13px;
    }
    
    .about-card {
        padding: 20px;
    }
    
    .about-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .product-image {
        min-height: 450px;
        padding: 35px;
    }
    
    .product-image img {
        max-height: 400px;
    }
    
    .product-buttons {
        flex-direction: row;
    }
    
    .product-buttons .btn-cart,
    .btn-buy-now {
        padding: 10px;
        min-width: 0;
    }
    
    .result-card {
        padding: 20px;
    }
    
    .result-number {
        font-size: 40px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 13px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .timer-item {
        padding: 10px 15px;
        min-width: 70px;
    }
    
    .timer-number {
        font-size: 24px;
    }
    
    .timer-label {
        font-size: 9px;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
    
    .bottle-combined {
        max-width: 250px;
    }
    
    /* Modal mobile styles */
    .modal-content {
        padding: 25px 20px;
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .modal-product-image {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }
    
    .modal-content h3 {
        font-size: 20px;
    }
    
    .modal-price {
        font-size: 24px;
    }
    
    .quick-buy-form input {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .quick-buy-form .form-row {
        flex-direction: row;
        gap: 10px;
    }
    
    .modal-secure {
        font-size: 11px;
    }
    
    .quick-view-content {
        max-width: 100%;
    }
    
    .quick-view-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .quick-view-image {
        padding: 15px;
    }
    
    .quick-view-image img {
        max-height: 150px;
    }
    
    .quick-view-info h3 {
        font-size: 18px;
    }
    
    .modal-description {
        font-size: 13px;
    }
    
    .modal-close {
        width: 35px;
        height: 35px;
        font-size: 14px;
        top: 10px;
        right: 10px;
    }
    
    .success-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 22px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .stat-item {
        min-width: 70px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .timer-item {
        padding: 8px 12px;
    }
    
    .timer-number {
        font-size: 20px;
    }
    
    .product-buttons .btn-cart,
    .btn-buy-now {
        padding: 8px;
        font-size: 10px;
    }
    
    .price-new {
        font-size: 22px;
    }
}

/* ================================
   Modals
================================ */
.quick-buy-modal,
.quick-view-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.quick-buy-modal.active,
.quick-view-modal.active {
    opacity: 1;
    visibility: visible;
}

.quick-buy-modal .modal-overlay,
.quick-view-modal .modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: rgba(15, 15, 30, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--border-glass);
    padding: 40px;
    border-radius: var(--border-radius);
    max-width: 400px;
    width: 90%;
    text-align: center;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.quick-buy-modal.active .modal-content,
.quick-view-modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--bg-glass-strong);
    border: 1px solid var(--border-glass);
    border-radius: 50%;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--primary-color);
    color: white;
    border-color: transparent;
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
}

.modal-product-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-sm);
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.modal-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.modal-product {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
}

.modal-price {
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
}

.quick-buy-form input {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    font-family: inherit;
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-sm);
    margin-bottom: 15px;
    transition: var(--transition);
    background: var(--bg-glass-strong);
    color: var(--text-primary);
}

.quick-buy-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.quick-buy-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(139, 92, 246, 0.1);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.quick-buy-form .form-row {
    display: flex;
    gap: 15px;
}

.quick-buy-form .form-row input {
    flex: 1;
}

.modal-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 500;
}

.modal-success {
    padding: 20px;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 48px;
    color: white;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.quick-view-content {
    max-width: 700px;
}

.quick-view-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    text-align: left;
}

.quick-view-image {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-sm);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-view-image img {
    max-height: 250px;
}

.quick-view-info h3 {
    text-align: left;
    margin-bottom: 15px;
}

.quick-view-info .modal-price {
    text-align: left;
    margin-bottom: 15px;
}

.modal-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
}

@media (max-width: 600px) {
    .quick-view-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-view-image {
        padding: 20px;
    }
    
    .quick-view-image img {
        max-height: 180px;
    }
    
    .quick-view-content {
        padding: 25px 20px;
    }
    
    .quick-view-info h3 {
        text-align: center;
    }
    
    .quick-view-info .modal-price {
        text-align: center;
    }
    
    .modal-description {
        text-align: center;
    }
}

/* ================================
   Exit Intent Popup
================================ */
.exit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.exit-popup-overlay.active {
    display: flex;
}

.exit-popup {
    background: linear-gradient(135deg, rgba(30, 30, 45, 0.98), rgba(20, 20, 35, 0.99));
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 24px;
    padding: 60px 50px;
    max-width: 520px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    text-align: center;
    position: relative;
    animation: scaleIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 80px rgba(139, 92, 246, 0.3), 0 0 120px rgba(236, 72, 153, 0.15);
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}

.exit-popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.exit-popup-badge {
    background: var(--gradient-primary);
    padding: 10px 24px;
    border-radius: 30px;
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.exit-popup h2 {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.exit-popup .discount-value {
    font-size: 90px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin: 25px 0;
}

.exit-popup p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 35px;
    font-size: 16px;
    line-height: 1.6;
}

.exit-popup .promo-code {
    background: rgba(139, 92, 246, 0.2);
    border: 2px dashed rgba(139, 92, 246, 0.5);
    padding: 18px 35px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 30px;
}

.exit-popup .promo-code span {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--primary-color);
}

.exit-popup .btn {
    width: 100%;
    padding: 20px;
    font-size: 17px;
    margin-top: 10px;
}

.exit-popup .btn-secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 20px;
    font-size: 14px;
    padding: 15px;
}

.exit-popup .btn-secondary:hover {
    color: white;
}

/* ================================
   Social Proof Notifications
================================ */
.social-proof {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, rgba(30, 30, 45, 0.95), rgba(20, 20, 35, 0.98));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 9999;
    transform: translateX(-150%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(139, 92, 246, 0.15);
    max-width: 350px;
}

.social-proof.show {
    transform: translateX(0);
}

.social-proof-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-proof-icon i {
    font-size: 20px;
    color: white;
}

.social-proof-content h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
}

.social-proof-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.social-proof-content .time-ago {
    font-size: 11px;
    color: var(--accent-color);
    margin-top: 5px;
    display: block;
}

.social-proof-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 5px;
    font-size: 12px;
    transition: color 0.3s ease;
}

.social-proof-close:hover {
    color: white;
}

@media (max-width: 768px) {
    .social-proof {
        left: 50%;
        right: auto;
        bottom: auto;
        top: 80px;
        transform: translateX(-150%);
        max-width: 220px;
        padding: 8px 12px;
        gap: 8px;
        border-radius: 10px;
    }
    
    .social-proof.show {
        transform: translateX(-50%);
    }
    
    .social-proof-icon {
        width: 30px;
        height: 30px;
        border-radius: 6px;
        min-width: 30px;
    }
    
    .social-proof-icon i {
        font-size: 12px;
    }
    
    .social-proof-content h4 {
        font-size: 11px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 130px;
    }
    
    .social-proof-content p {
        font-size: 10px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 130px;
    }
    
    .social-proof-content .time-ago {
        font-size: 9px;
        margin-top: 1px;
    }
    
    .social-proof-close {
        top: 3px;
        right: 3px;
        font-size: 9px;
        padding: 2px;
    }
}

/* ================================
   Live Viewers Counter
================================ */
.live-viewers {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(236, 72, 153, 0.15);
    border: 1px solid rgba(236, 72, 153, 0.3);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    color: #EC4899;
    animation: pulse-border 2s ease infinite;
    margin-top: 20px;
}

.live-viewers .live-dot {
    width: 8px;
    height: 8px;
    background: #EC4899;
    border-radius: 50%;
    animation: livePulse 1.5s ease infinite;
}

@keyframes livePulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

@keyframes pulse-border {
    0%, 100% {
        border-color: rgba(236, 72, 153, 0.3);
    }
    50% {
        border-color: rgba(236, 72, 153, 0.6);
    }
}

/* ================================
   Before/After Slider
================================ */
.before-after-section {
    padding: 80px 0;
}

.before-after-slider {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 60px rgba(139, 92, 246, 0.15);
    user-select: none;
}

.before-after-slider .ba-image {
    width: 100%;
    display: block;
}

.before-after-slider .ba-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.before-after-slider .ba-before img {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    max-width: none;
    height: 100%;
    object-fit: cover;
}

.before-after-slider .ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: white;
    transform: translateX(-50%);
    cursor: ew-resize;
    z-index: 10;
}

.before-after-slider .ba-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.before-after-slider .ba-handle::after {
    content: '\f337';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    color: var(--primary-color);
    z-index: 11;
}

.before-after-slider .ba-label {
    position: absolute;
    bottom: 20px;
    padding: 8px 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.before-after-slider .ba-label.before {
    left: 20px;
}

.before-after-slider .ba-label.after {
    right: 20px;
}


/* ================================
   Mobile Sticky Buy Button
================================ */
.sticky-buy-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(30, 30, 45, 0.98), rgba(20, 20, 35, 0.99));
    border-top: 1px solid rgba(139, 92, 246, 0.3);
    padding: 15px 20px;
    z-index: 9990;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    backdrop-filter: blur(20px);
}

.sticky-buy-bar.show {
    transform: translateY(0);
}

.sticky-buy-info {
    flex: 1;
}

.sticky-buy-info .product-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sticky-buy-info .product-price {
    font-size: 18px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sticky-buy-bar .btn {
    padding: 14px 30px;
    white-space: nowrap;
}

@media (min-width: 769px) {
    .sticky-buy-bar {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .sticky-buy-bar {
        display: flex;
    }
    
    /* Add padding to body to prevent content being hidden */
    body.has-sticky-bar {
        padding-bottom: 80px;
    }
}

/* ================================
   Mobile Optimizations - Disable Animations
================================ */
@media (max-width: 768px) {
    /* Disable decorative animations on mobile, but keep functional transitions */
    .animate-float,
    .animate-pulse,
    .animate-fade-in,
    .animate-slide-up,
    .product-glow,
    .hero-image-glow {
        animation: none !important;
    }
    
    .hero-particles {
        display: none !important;
    }
    
    /* Keep nav-menu transition working */
    .nav-menu {
        transition: right 0.3s ease !important;
    }
    
    /* Mobile Navigation - Force display */
    .nav-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        font-size: 22px;
        color: white;
        cursor: pointer;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: rgba(10, 10, 20, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 80px 30px 30px;
        z-index: 1000;
        display: flex;
        flex-direction: column;
    }
    
    .nav-menu.show {
        right: 0 !important;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 25px;
    }
    
    .nav-link {
        font-size: 18px;
        display: block;
        padding: 10px 0;
    }
    
    .nav-close {
        display: flex !important;
        position: absolute;
        top: 25px;
        right: 25px;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: white;
        cursor: pointer;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
    }
    
    .nav-close:hover {
        background: rgba(255,255,255,0.2);
    }

    /* Hero section mobile */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .hero-logo-text {
        font-size: 36px;
    }
    
    .hero-bottles .bottle {
        max-height: 200px;
    }
    
    .hero-bottles-desktop {
        display: none;
    }
    
    .hero-bottles-mobile {
        display: flex;
    }
    
    /* Section headers mobile */
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .section-subtitle {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .section-description {
        font-size: 14px;
    }
    
    /* Products grid mobile */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 10px;
    }
    
    .product-card {
        padding: 20px;
    }
    
    .product-card.featured {
        transform: none;
    }
    
    /* Disable all hover effects on mobile */
    .product-card:hover {
        transform: none !important;
        box-shadow: none !important;
    }
    
    .product-card:hover .product-image img {
        transform: none !important;
    }
    
    .product-card:hover .product-glow {
        opacity: 0 !important;
    }
    
    .btn:hover,
    .btn-cart:hover,
    .btn-buy-now:hover,
    .btn-view-product:hover,
    .btn-primary:hover {
        transform: none !important;
        box-shadow: inherit !important;
    }
    
    .feature-card:hover,
    .stat-card:hover,
    .result-card:hover,
    .testimonial-card:hover,
    .shipping-feature:hover {
        transform: none !important;
        box-shadow: none !important;
    }
    
    /* Hide product action buttons (heart, eye) on mobile */
    .product-actions {
        display: none !important;
    }
    
    .product-image {
        min-height: auto;
        padding: 20px;
    }
    
    .product-image img {
        max-height: 350px;
        width: auto;
    }
    
    .product-title {
        font-size: 18px;
    }
    
    .product-price .current {
        font-size: 24px;
    }
    
    .product-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .product-buttons .btn {
        width: 100%;
        padding: 14px;
    }
    
    /* About section mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-title {
        font-size: 28px;
    }
    
    /* Features mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    /* Stats mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    /* Results mobile */
    .results-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .result-card {
        padding: 25px;
    }
    
    .result-number {
        font-size: 40px;
    }
    
    /* Testimonials mobile */
    .testimonials-slider {
        flex-direction: column;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    /* Footer mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-newsletter {
        max-width: 100%;
    }
    
    /* CTA section mobile */
    .cta-title {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    /* Navigation mobile */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(15, 15, 26, 0.98);
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.show {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 25px;
    }
    
    /* Live viewers mobile */
    .live-viewers {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    /* Social proof mobile */
    .social-proof {
        left: 10px;
        right: 10px;
        bottom: 90px;
        max-width: none;
    }
    
    /* Exit popup mobile */
    .exit-popup {
        padding: 40px 25px;
        max-width: 95%;
    }
    
    .exit-popup h2 {
        font-size: 24px;
    }
    
    .exit-popup .discount-value {
        font-size: 60px;
    }
    
    .exit-popup .promo-code span {
        font-size: 20px;
    }
    
    /* Back to top button mobile */
    .back-to-top {
        bottom: 90px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
    
    /* Cart sidebar mobile */
    .cart-sidebar {
        width: 100%;
    }
    
    /* Container padding */
    .container {
        padding: 0 15px;
    }
    
    /* Section padding */
    .section {
        padding: 60px 0;
    }
    
    /* Header mobile fix */
    .header {
        padding: 10px 0;
    }
    
    .nav {
        padding: 0 15px;
    }
    
    .nav-logo span {
        font-size: 22px;
    }
    
    .nav-actions {
        gap: 10px;
    }
    
    .nav-cart {
        font-size: 18px;
    }
    
    /* Hero mobile improvements */
    .hero-container {
        padding: 0 15px;
        text-align: center;
    }
    
    .hero-logo-text {
        font-size: 42px;
        margin-bottom: 15px;
    }
    
    .hero-title {
        font-size: 22px;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .hero-bottles-mobile {
        display: flex !important;
        justify-content: center;
    }
    
    .hero-bottles-desktop {
        display: none !important;
    }
    
    .bottle-combined {
        max-width: 100%;
        height: auto;
    }
    
    /* Overlay for mobile menu */
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
        z-index: -1;
    }
    
    .nav-menu.show::before {
        opacity: 1;
        visibility: visible;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 20px;
    }
    
    .hero-logo-text {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .section-subtitle {
        font-size: 11px;
    }
    
    .product-card {
        padding: 15px;
    }
    
    .product-title {
        font-size: 16px;
    }
    
    .product-price .current {
        font-size: 22px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .result-number {
        font-size: 28px;
    }
    
    .cta-title {
        font-size: 22px;
    }
    
    .exit-popup .discount-value {
        font-size: 50px;
    }
    
    .dosage-calculator {
        padding: 25px 15px;
    }
    
    .live-viewers {
        font-size: 10px;
        padding: 5px 10px;
    }
}

/* ================================
   Page Loader
================================ */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.loader-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(139, 92, 246, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: loaderSpin 1s linear infinite;
}

@keyframes loaderSpin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .loader-logo {
        font-size: 36px;
    }
    
    .loader-spinner {
        width: 40px;
        height: 40px;
    }
}
