/* ============================================
   IQOS TURKEY - PREMIUM E-COMMERCE
   Professional, Sales-Focused Design
   ============================================ */

/* === VARIABLES === */
:root {
    --primary: #0f172a;
    --primary-light: #1e293b;
    --accent: #d4af37;
    --accent-hover: #c9a227;
    --accent-light: rgba(212, 175, 55, 0.15);
    --success: #22c55e;
    --danger: #ef4444;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
    font-family: var(--font); 
    font-size: 16px; 
    line-height: 1.6; 
    color: var(--gray-800); 
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ============================================
   PROMO BAR - SCROLLING MARQUEE
   ============================================ */
.promo-bar {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 10px 0;
    overflow: hidden;
    position: relative;
}

.promo-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.promo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 40px;
    font-size: 13px;
    white-space: nowrap;
}

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

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

/* ============================================
   HEADER
   ============================================ */
.header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    color: var(--primary);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-size: 22px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo-sub {
    font-size: 9px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
}

/* Navigation */
.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    transition: color 0.2s;
    position: relative;
}

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

.nav-highlight {
    color: var(--danger);
    animation: pulse-text 2s ease-in-out infinite;
}

@keyframes pulse-text {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

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

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
}

.header-phone i { color: var(--accent); }

.cart-btn {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: var(--radius);
    color: var(--gray-700);
    font-size: 18px;
    transition: all 0.2s;
}

.cart-btn:hover { background: var(--gray-200); }

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    background: var(--accent);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-cta span { display: none; }

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

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: 0.3s;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-xl { padding: 16px 32px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--primary);
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

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

.btn-outline {
    background: transparent;
    border: 2px solid var(--gray-300);
    color: var(--gray-700);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-light {
    background: var(--white);
    color: var(--primary);
}

.btn-light:hover { transform: translateY(-2px); }

.btn-accent {
    background: linear-gradient(135deg, var(--danger), #dc2626);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.4);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.5);
}

.btn-glow {
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 4px 14px rgba(212, 175, 55, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(212, 175, 55, 0.6); }
}

.btn-pulse {
    animation: btn-pulse 2s ease-in-out infinite;
}

@keyframes btn-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: calc(100vh - 100px);
    padding: 40px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(0,0,0,0.03) 1px, transparent 0);
    background-size: 40px 40px;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
}

.glow-1 {
    width: 600px;
    height: 600px;
    background: rgba(212, 175, 55, 0.15);
    top: -200px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
}

.glow-2 {
    width: 400px;
    height: 400px;
    background: rgba(34, 197, 94, 0.1);
    bottom: -100px;
    left: -100px;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

/* Urgency Bar */
.urgency-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--danger), #dc2626);
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius);
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    gap: 12px;
}

.urgency-left, .urgency-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.urgency-icon {
    font-size: 20px;
    animation: shake 0.5s ease-in-out infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.urgency-text {
    font-size: 14px;
}

.urgency-timer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.timer-value {
    font-weight: 800;
    font-size: 18px;
    font-family: monospace;
    background: rgba(0,0,0,0.2);
    padding: 4px 10px;
    border-radius: 6px;
}

.urgency-stock {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.stock-dot {
    width: 8px;
    height: 8px;
    background: #fbbf24;
    border-radius: 50%;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Hero Grid */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
}

.badge-crown {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--primary);
}

.badge-check {
    background: var(--white);
    color: var(--success);
    box-shadow: var(--shadow);
}

/* Hero Product */
.hero-product {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-product-img {
    max-height: 450px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.2));
    animation: float-product 3s ease-in-out infinite;
}

@keyframes float-product {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    z-index: 10;
    animation: float-badge 3s ease-in-out infinite;
}

.floating-badge i {
    color: var(--accent);
}

.fb-1 { top: 20%; left: 0; animation-delay: 0s; }
.fb-2 { top: 50%; right: 0; animation-delay: 0.5s; }
.fb-3 { bottom: 20%; left: 10%; animation-delay: 1s; }

@keyframes float-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Color Selector */
.color-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.color-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
}

.color-options {
    display: flex;
    gap: 10px;
}

.color-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--c);
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.color-btn:hover { transform: scale(1.1); }
.color-btn.active { border-color: var(--accent); transform: scale(1.15); }

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
}

.campaign-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--accent-light);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.tag-icon {
    font-size: 16px;
    animation: shake 0.5s ease-in-out infinite;
}

.hero-title {
    font-size: 52px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.title-accent {
    display: block;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 17px;
    color: var(--gray-600);
    margin-bottom: 28px;
    max-width: 500px;
}

/* Price Card */
.price-card {
    background: var(--white);
    border: 2px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-lg);
}

.price-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.price-tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-old {
    font-size: 18px;
    color: var(--gray-400);
    text-decoration: line-through;
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 12px;
}

.price-currency {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.price-value {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.price-save {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--success), #16a34a);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
}

/* Hero Benefits */
.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-700);
}

.hero-benefits i {
    color: var(--success);
    font-size: 18px;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

/* Trust Row */
.trust-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-500);
}

.trust-item i {
    color: var(--gray-400);
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-500);
    font-size: 13px;
    font-weight: 500;
    animation: bounce 2s ease-in-out infinite;
    z-index: 10;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   SOCIAL PROOF STRIP
   ============================================ */
.proof-strip {
    background: var(--primary);
    padding: 40px 0;
}

.proof-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.proof-item {
    text-align: center;
}

.proof-num {
    font-size: 36px;
    font-weight: 900;
    color: var(--white);
    display: block;
}

.proof-num small {
    color: var(--accent);
}

.proof-label {
    font-size: 14px;
    color: var(--gray-400);
    margin-top: 4px;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-head {
    margin-bottom: 48px;
}

.section-head.centered {
    text-align: center;
}

.section-head.light .section-title,
.section-head.light .section-desc {
    color: var(--white);
}

.section-label {
    display: inline-block;
    padding: 8px 16px;
    background: var(--accent-light);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-label.light {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: var(--white);
}

.section-title {
    font-size: 40px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 17px;
    color: var(--gray-600);
    max-width: 600px;
}

.section-head.centered .section-desc {
    margin: 0 auto;
}

/* ============================================
   MEGA CAMPAIGNS - EYE-CATCHING DEALS
   ============================================ */
.mega-campaigns {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #fef3c7 0%, #fde68a 50%, #fbbf24 100%);
    position: relative;
    overflow: hidden;
}

.mega-campaigns::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Campaign Header */
.campaign-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--primary);
    padding: 24px 32px;
    border-radius: var(--radius-xl);
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    gap: 20px;
}

.campaign-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--white);
}

.campaign-fire {
    font-size: 48px;
    animation: fire-pulse 0.5s ease-in-out infinite alternate;
}

@keyframes fire-pulse {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.campaign-header-left h2 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 4px;
}

.campaign-header-left p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.campaign-countdown {
    display: flex;
    align-items: center;
    gap: 16px;
}

.countdown-label {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.countdown-boxes {
    display: flex;
    gap: 8px;
}

.countdown-box {
    background: rgba(255,255,255,0.1);
    padding: 12px 16px;
    border-radius: var(--radius);
    text-align: center;
    min-width: 60px;
}

.countdown-box span {
    display: block;
    font-size: 24px;
    font-weight: 900;
    color: var(--accent);
    font-family: monospace;
}

.countdown-box small {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
}

/* MEGA DEAL - PRIMARY (Big Featured Deal) */
.mega-deal-primary {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.15);
    border: 3px solid var(--accent);
}

.mega-deal-ribbon {
    position: absolute;
    top: 20px;
    left: -40px;
    background: linear-gradient(135deg, var(--danger), #b91c1c);
    color: var(--white);
    padding: 10px 50px;
    font-size: 13px;
    font-weight: 800;
    transform: rotate(-45deg);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    z-index: 10;
}

.mega-deal-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 500px;
}

.mega-deal-visual {
    background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mega-products-stack {
    position: relative;
    width: 300px;
    height: 280px;
    margin-bottom: 30px;
}

.mega-products-stack img {
    position: absolute;
    max-height: 200px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
    transition: transform 0.3s;
}

.mega-product-1 {
    left: 0;
    top: 0;
    z-index: 3;
    animation: float-1 3s ease-in-out infinite;
}

.mega-product-2 {
    right: 0;
    top: 20px;
    z-index: 2;
    animation: float-2 3s ease-in-out infinite 0.5s;
}

.mega-product-3 {
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    z-index: 1;
    max-height: 120px !important;
}

@keyframes float-1 {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-15px) rotate(-5deg); }
}

@keyframes float-2 {
    0%, 100% { transform: translateY(0) rotate(5deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.mega-deal-features {
    display: flex;
    gap: 24px;
}

.mega-deal-features .feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
}

.mega-deal-features .feature i {
    color: var(--success);
}

.mega-deal-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mega-deal-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--danger), #b91c1c);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 16px;
    width: fit-content;
    animation: tag-pulse 2s ease-in-out infinite;
}

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

.mega-deal-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 12px;
}

.mega-deal-desc {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 24px;
}

.mega-deal-includes {
    list-style: none;
    margin-bottom: 28px;
    background: var(--gray-50);
    padding: 20px;
    border-radius: var(--radius);
}

.mega-deal-includes li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed var(--gray-200);
    font-size: 15px;
    color: var(--gray-700);
}

.mega-deal-includes li:last-child {
    border-bottom: none;
}

.mega-deal-includes li strong {
    color: var(--primary);
    margin-right: 8px;
}

.mega-deal-includes .item-value {
    color: var(--gray-400);
    text-decoration: line-through;
    font-size: 13px;
}

/* Pricing Block */
.mega-deal-pricing {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 24px;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
}

.pricing-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.original-price span {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.original-price strong {
    display: block;
    font-size: 24px;
    color: rgba(255,255,255,0.5);
    text-decoration: line-through;
}

.discount-badge {
    background: var(--danger);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 900;
    animation: badge-shake 0.5s ease-in-out infinite;
}

@keyframes badge-shake {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(-3deg); }
    75% { transform: rotate(3deg); }
}

.final-price span {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.price-big {
    font-size: 48px;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-top: 4px;
}

.savings-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--success), #16a34a);
    color: var(--white);
    padding: 12px;
    border-radius: var(--radius);
    margin-top: 16px;
    font-size: 16px;
}

.savings-highlight i {
    font-size: 20px;
}

/* Mega CTA */
.mega-deal-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-mega {
    padding: 18px 32px;
    font-size: 18px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--primary);
    border-radius: var(--radius);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
    transition: all 0.3s;
}

.btn-mega:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
}

.stock-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: var(--danger);
    font-weight: 600;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--danger);
    border-radius: 50%;
    animation: pulse-dot 1s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

/* MEGA DEALS ROW */
.mega-deals-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.mega-deal-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.mega-deal-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.mega-deal-featured {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px var(--accent), var(--shadow-xl);
}

.mega-deal-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    z-index: 5;
}

.mega-deal-card-badge.hot {
    background: linear-gradient(135deg, var(--danger), #b91c1c);
    color: var(--white);
}

.mega-deal-card-badge.deal {
    background: linear-gradient(135deg, var(--success), #16a34a);
    color: var(--white);
}

.mega-deal-card-badge.premium {
    background: linear-gradient(135deg, var(--accent), #b8860b);
    color: var(--primary);
}

.mega-deal-card-img {
    height: 180px;
    background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.mega-deal-card-img img {
    max-height: 140px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
    transition: transform 0.3s;
}

.mega-deal-card:hover .mega-deal-card-img img {
    transform: scale(1.05);
}

.mega-deal-card-img .terea-overlay {
    position: absolute;
    right: 20px;
    bottom: 10px;
    max-height: 80px;
}

.mega-deal-card-img.terea-stack {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.mega-deal-card-img .stack-count {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 800;
}

.mega-deal-card-img.triple {
    gap: 0;
}

.mega-deal-card-img.triple img {
    max-height: 110px;
    margin: 0 -15px;
}

.mega-deal-card-img.triple img:nth-child(2) {
    z-index: 2;
    max-height: 130px;
}

.mega-deal-card-body {
    padding: 24px;
}

.mega-deal-card-body h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
}

.mega-deal-card-body > p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.mini-includes {
    list-style: none;
    margin-bottom: 16px;
    padding: 12px;
    background: var(--gray-50);
    border-radius: var(--radius);
}

.mini-includes li {
    font-size: 13px;
    color: var(--gray-600);
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.mini-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.card-pricing {
    text-align: center;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius);
    margin-bottom: 16px;
}

.card-pricing .old {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.card-pricing .new {
    font-size: 32px;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.card-pricing .save {
    font-size: 13px;
    color: var(--success);
    font-weight: 700;
    background: rgba(34, 197, 94, 0.2);
    padding: 4px 12px;
    border-radius: 50px;
    display: inline-block;
}

/* FLASH DEAL BANNER */
.flash-deal-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 24px 40px;
    border-radius: var(--radius-xl);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.flash-deal-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.03) 10px,
        rgba(255,255,255,0.03) 20px
    );
}

.flash-deal-left {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.flash-icon {
    font-size: 40px;
    animation: flash-icon 0.3s ease-in-out infinite alternate;
}

@keyframes flash-icon {
    from { transform: scale(1); }
    to { transform: scale(1.2); }
}

.flash-text {
    color: var(--white);
}

.flash-text strong {
    display: block;
    font-size: 20px;
    color: var(--accent);
}

.flash-text span {
    font-size: 14px;
    opacity: 0.8;
}

.flash-deal-center {
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 2;
}

.flash-deal-center img {
    height: 80px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

.flash-pricing {
    display: flex;
    flex-direction: column;
}

.flash-old {
    font-size: 18px;
    color: rgba(255,255,255,0.5);
    text-decoration: line-through;
}

.flash-new {
    font-size: 36px;
    font-weight: 900;
    color: var(--accent);
}

.flash-deal-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.flash-stock {
    font-size: 13px;
    color: var(--danger);
    font-weight: 600;
}

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

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Product Card */
.product-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.product-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
}

.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
}

.badge.hot {
    background: linear-gradient(135deg, var(--danger), #dc2626);
    color: var(--white);
}

.badge.new {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--primary);
}

.badge.limited {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: var(--white);
}

.badge.deal {
    background: linear-gradient(135deg, var(--success), #16a34a);
    color: var(--white);
}

.product-img {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--gray-50);
}

.product-img img {
    max-height: 100%;
    transition: transform 0.3s;
}

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

.product-body {
    padding: 20px;
}

.product-cat {
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.product-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.product-rating .stars {
    color: var(--accent);
    font-size: 14px;
}

.product-rating .count {
    font-size: 13px;
    color: var(--gray-500);
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 16px;
}

.product-price .current {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary);
}

.product-price .old {
    font-size: 16px;
    color: var(--gray-400);
    text-decoration: line-through;
}

/* ============================================
   TEREA SECTION
   ============================================ */
.terea {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.terea-deal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 20px 30px;
    border-radius: var(--radius-lg);
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.terea-deal-icon {
    font-size: 32px;
}

.terea-deal-text {
    text-align: center;
    color: var(--white);
}

.terea-deal-text strong {
    font-size: 18px;
}

.terea-deal-text p {
    font-size: 14px;
    opacity: 0.8;
}

.terea-deal-text span {
    color: var(--accent);
    font-weight: 700;
}

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

.terea-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.terea-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.1);
    border-color: var(--accent);
}

.terea-card.popular {
    border-color: var(--accent);
}

.terea-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    z-index: 5;
}

.terea-badge.deal {
    background: var(--success);
    color: var(--white);
}

.terea-img {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: linear-gradient(135deg, var(--accent), transparent);
    background-size: 200% 200%;
    background-position: 100% 100%;
}

.terea-img img {
    max-height: 100%;
    transition: transform 0.3s;
}

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

.terea-body {
    padding: 16px;
    text-align: center;
}

.terea-body h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
}

.terea-body p {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
}

.terea-price {
    display: block;
    font-size: 20px;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 12px;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews {
    padding: 100px 0;
    background: var(--gray-50);
}

.reviews-score {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.score-num {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
}

.score-stars {
    font-size: 24px;
    color: var(--accent);
}

.score-count {
    font-size: 14px;
    color: var(--gray-500);
}

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

.review-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all 0.3s;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.review-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
}

.review-info strong {
    display: block;
    font-size: 15px;
    color: var(--primary);
}

.review-info span {
    font-size: 13px;
    color: var(--gray-500);
}

.review-verified {
    margin-left: auto;
    font-size: 12px;
    color: var(--success);
}

.review-stars {
    color: var(--accent);
    font-size: 14px;
    margin-bottom: 12px;
}

.review-text {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
}

.review-product {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: var(--gray-50);
    border-radius: var(--radius);
}

.review-product img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.review-product span {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us {
    padding: 80px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.why-item {
    text-align: center;
}

.why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 24px;
    border-radius: 50%;
}

.why-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.why-item p {
    font-size: 13px;
    color: var(--gray-500);
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    text-align: center;
}

.final-cta-inner h2 {
    font-size: 40px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
}

.final-cta-inner h2 span {
    color: var(--accent);
}

.final-cta-inner p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
}

.final-cta-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 16px;
}

.footer-logo .logo-main {
    font-size: 28px;
    font-weight: 900;
    color: var(--white);
}

.footer-logo .logo-sub {
    font-size: 10px;
    color: var(--accent);
}

.footer-brand p {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.footer-badges {
    display: flex;
    gap: 16px;
}

.footer-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gray-400);
}

.footer-badges i {
    color: var(--accent);
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--gray-400);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-wa {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(37, 211, 102, 0.1);
    padding: 12px 16px;
    border-radius: var(--radius);
    transition: background 0.2s;
}

.footer-wa:hover {
    background: rgba(37, 211, 102, 0.2);
}

.footer-wa i {
    font-size: 28px;
    color: #25d366;
}

.footer-wa span {
    font-size: 12px;
    color: var(--gray-400);
}

.footer-wa strong {
    display: block;
    font-size: 16px;
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-500);
}

.footer-warn {
    margin-top: 8px;
    color: var(--gray-600);
}

.footer-mail {
    margin-top: 6px;
    font-size: 12px;
}

.footer-mail a {
    color: var(--gray-600);
    transition: color 0.2s;
}

.footer-mail a:hover {
    color: var(--accent);
}

/* ============================================
   CART DRAWER
   ============================================ */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

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

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 2001;
    transform: translateX(100%);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.cart-drawer.active {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.cart-header h3 {
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 50%;
    font-size: 16px;
    color: var(--gray-600);
    transition: all 0.2s;
}

.cart-close:hover {
    background: var(--gray-200);
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-400);
}

.cart-empty i {
    font-size: 48px;
    margin-bottom: 16px;
}

.cart-empty p {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-600);
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--gray-200);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 18px;
}

.cart-total strong {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #25d366;
    color: var(--white);
    padding: 12px 20px 12px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s;
}

.wa-float:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.wa-float-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.wa-float-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.wa-float-text span {
    font-size: 11px;
    opacity: 0.9;
}

.wa-float-text strong {
    font-size: 14px;
}

/* ============================================
   TOAST
   ============================================ */
.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 16px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideIn 0.3s ease;
    min-width: 300px;
}

.toast.success {
    border-left: 4px solid var(--success);
}

.toast.success i {
    color: var(--success);
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 2001;
    transform: translateX(100%);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    transform: translateX(0);
}

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

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

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-menu-title {
    font-size: 18px;
    font-weight: 700;
}

.mobile-menu-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 50%;
}

.mobile-nav {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-700);
    background: var(--gray-50);
    border-radius: var(--radius);
    transition: all 0.2s;
}

.mobile-nav-link:hover {
    background: var(--gray-100);
}

.mobile-nav-link.highlight {
    background: var(--accent-light);
    color: var(--primary);
}

.mobile-menu-cta {
    margin-top: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual {
        order: 1;
    }
    
    .hero-content {
        order: 2;
        text-align: center;
    }
    
    .hero-product {
        height: 400px;
    }
    
    .hero-product-img {
        max-height: 350px;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .floating-badge {
        display: none;
    }
    
    .price-card {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-benefits {
        align-items: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .trust-row {
        justify-content: center;
    }
    
    .campaigns-layout {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .terea-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Mega Campaigns Tablet */
    .mega-deal-inner {
        grid-template-columns: 1fr;
    }
    
    .mega-deal-visual {
        padding: 30px;
    }
    
    .mega-products-stack {
        width: 250px;
        height: 220px;
    }
    
    .mega-deal-content {
        padding: 30px;
    }
    
    .mega-deals-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .flash-deal-banner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav { display: none; }
    .header-phone { display: none; }
    .header-cta span { display: none; }
    .menu-toggle { display: flex; }
    
    .hero {
        padding: 30px 0 60px;
        min-height: auto;
    }
    
    .urgency-bar {
        flex-direction: column;
        text-align: center;
    }
    
    .urgency-left, .urgency-right {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-product {
        height: 300px;
    }
    
    .hero-product-img {
        max-height: 260px;
    }
    
    .price-value {
        font-size: 42px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .scroll-hint {
        display: none;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    /* Mega Campaigns Mobile */
    .campaign-header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .campaign-header-left {
        flex-direction: column;
    }
    
    .campaign-header-left h2 {
        font-size: 22px;
    }
    
    .campaign-fire {
        font-size: 36px;
    }
    
    .countdown-boxes {
        justify-content: center;
    }
    
    .mega-deal-ribbon {
        font-size: 10px;
        padding: 8px 40px;
        top: 15px;
        left: -35px;
    }
    
    .mega-deal-title {
        font-size: 26px;
    }
    
    .price-big {
        font-size: 36px;
    }
    
    .mega-deal-includes li {
        flex-direction: column;
        text-align: center;
        gap: 4px;
    }
    
    .mega-deal-card-img.triple img {
        max-height: 80px;
        margin: 0 -10px;
    }
    
    .flash-deal-left {
        flex-direction: column;
    }
    
    .flash-deal-center {
        flex-direction: column;
    }
    
    .flash-pricing {
        text-align: center;
    }
    
    .campaign-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .product-img {
        height: 160px;
    }
    
    .product-name {
        font-size: 15px;
    }
    
    .product-price .current {
        font-size: 20px;
    }
    
    .terea-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .final-cta-inner h2 {
        font-size: 28px;
    }
    
    .final-cta-btns {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .wa-float {
        right: 16px;
        bottom: 16px;
    }
    
    .wa-float-text {
        display: none;
    }
    
    .wa-float {
        padding: 0;
        width: 56px;
        height: 56px;
        justify-content: center;
    }
    
    .wa-float-icon {
        width: 100%;
        height: 100%;
        background: transparent;
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-product {
        height: 250px;
    }
    
    .hero-product-img {
        max-height: 220px;
    }
    
    .price-card {
        padding: 20px;
    }
    
    .price-value {
        font-size: 36px;
    }
    
    .hero-benefits li {
        font-size: 14px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .terea-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .proof-grid {
        flex-direction: column;
        gap: 20px;
    }
    
    .proof-num {
        font-size: 28px;
    }
}

/* ============================================
   CART ITEM STYLES
   ============================================ */
.cart-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-200);
}

.cart-item-img {
    width: 70px;
    height: 70px;
    background: var(--gray-50);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cart-item-img img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.cart-item-variant {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.cart-item-price {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-item-qty .qty-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border: none;
    border-radius: 6px;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.2s;
}

.cart-item-qty .qty-btn:hover {
    background: var(--gray-200);
}

.cart-item-qty .qty-value {
    font-size: 14px;
    font-weight: 700;
    min-width: 24px;
    text-align: center;
}

.cart-item-remove {
    color: var(--gray-400);
    font-size: 14px;
    transition: color 0.2s;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.cart-item-remove:hover {
    color: var(--danger);
}
