/*
Theme Name: Mimmy Urban Wok
Theme URI: https://mimmyurbanwok.com
Author: Mimmy Urban Wok
Author URI: https://mimmyurbanwok.com
Description: High-converting 3D food delivery theme for Mimmy Urban Wok - Premium Chicken Khowsey delivery in Karachi. Built with WooCommerce integration, urgency timers, WhatsApp chat, Instagram reels, reviews, and gamified ordering experience.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mimmy-urban-wok
Tags: food, delivery, woocommerce, one-page, custom-logo, custom-menu

WooCommerce Compatible Theme for Mimmy Urban Wok
*/

/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
    --primary: #FF6B00;
    --primary-dark: #E05500;
    --primary-light: #FF8A33;
    --secondary: #1A1A2E;
    --secondary-light: #16213E;
    --accent: #FFD700;
    --accent-glow: #FFC107;
    --success: #00C853;
    --danger: #FF1744;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --light-gray: #E9ECEF;
    --medium-gray: #6C757D;
    --dark: #212529;
    --text: #333333;
    --text-light: #666666;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
    --shadow-3d: 0 10px 30px rgba(255,107,0,0.3);
    --shadow-card: 0 15px 35px rgba(0,0,0,0.1), 0 5px 15px rgba(0,0,0,0.07);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --gradient-primary: linear-gradient(135deg, #FF6B00 0%, #FF8A33 50%, #FFD700 100%);
    --gradient-dark: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    --gradient-hero: linear-gradient(135deg, rgba(26,26,46,0.95) 0%, rgba(22,33,62,0.85) 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

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

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

/* ============================================
   3D UTILITY CLASSES
   ============================================ */
.shadow-3d {
    box-shadow: var(--shadow-3d);
}

.card-3d {
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    border: 1px solid rgba(255,255,255,0.8);
}

.card-3d:hover {
    transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15), 0 10px 20px rgba(255,107,0,0.2);
}

.btn-3d {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    font-family: var(--font-primary);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(255,107,0,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255,107,0,0.5), inset 0 1px 0 rgba(255,255,255,0.3);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37,211,102,0.5);
}

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

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

.float-animation {
    animation: float 3s ease-in-out infinite;
}

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

.glow-text {
    text-shadow: 0 0 20px rgba(255,107,0,0.5), 0 0 40px rgba(255,107,0,0.3);
}

.shimmer {
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title .badge {
    display: inline-block;
    background: rgba(255,107,0,0.1);
    color: var(--primary);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
    background: var(--gradient-primary);
    padding: 10px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1000;
}

.announcement-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    animation: shimmer 3s infinite;
}

.announcement-bar p {
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.announcement-bar .countdown-inline {
    display: inline-flex;
    gap: 8px;
    margin-left: 12px;
}

.announcement-bar .countdown-inline span {
    background: rgba(0,0,0,0.2);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transition: var(--transition);
    padding: 0;
    background: rgba(13,13,31,0.95);
    backdrop-filter: blur(16px);
}

.site-header.has-announcement {
    top: 40px;
}

.site-header.scrolled {
    top: 0;
    background: rgba(13,13,31,0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.site-header.scrolled .nav-wrapper {
    padding: 10px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    transition: var(--transition);
}

.site-logo img {
    height: 55px;
    width: auto;
    transition: var(--transition);
}

.site-header.scrolled .site-logo img {
    height: 45px;
}

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

.nav-menu a {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    position: relative;
    padding: 8px 0;
}
.nav-menu a:hover,
.nav-menu a.active {
    color: #fff;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: var(--transition);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-cart {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    color: #fff;
}

.nav-cart:hover {
    background: var(--primary);
    color: var(--white);
}

.nav-cart .cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    background: var(--danger);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
}

.nav-order-btn {
    padding: 12px 28px !important;
    font-size: 14px !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--secondary);
    padding-top: 100px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255,107,0,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,215,0,0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(255,107,0,0.05) 0%, transparent 50%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-particles span {
    position: absolute;
    display: block;
    width: 8px;
    height: 8px;
    background: rgba(255,107,0,0.3);
    border-radius: 50%;
    animation: heroParticle 15s linear infinite;
}

@keyframes heroParticle {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) scale(1); opacity: 0; }
}

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

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,107,0,0.15);
    border: 1px solid rgba(255,107,0,0.3);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-badge .badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

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

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 58px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-text h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text .tagline {
    font-size: 20px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 16px;
    line-height: 1.6;
}

.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 32px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.trust-badge svg {
    width: 20px;
    height: 20px;
    fill: var(--accent);
}

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

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat {
    text-align: center;
}

.hero-stat .number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.hero-stat .label {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
}

.hero-visual {
    position: relative;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.hero-main-image {
    width: 100%;
    border-radius: var(--radius-xl);
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

.hero-floating-card {
    position: absolute;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.hero-floating-card.card-1 {
    top: 10%;
    right: -20px;
    animation-delay: -1s;
}

.hero-floating-card.card-2 {
    bottom: 15%;
    left: -20px;
    animation-delay: -2s;
}

.hero-floating-card .card-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.hero-floating-card .card-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
}

.hero-floating-card .card-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

/* ============================================
   COUNTDOWN / URGENCY SECTION
   ============================================ */
.urgency-bar {
    background: var(--gradient-dark);
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

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

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

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

.urgency-text h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
}

.urgency-text h3 span {
    color: var(--accent);
}

.urgency-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.countdown-timer {
    display: flex;
    gap: 12px;
}

.countdown-item {
    text-align: center;
    background: rgba(255,107,0,0.15);
    border: 1px solid rgba(255,107,0,0.3);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    min-width: 70px;
    backdrop-filter: blur(10px);
}

.countdown-item .count-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.countdown-item .count-label {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ============================================
   PRODUCTS / MENU SECTION
   ============================================ */
.products-section {
    padding: 100px 0;
    background: var(--off-white);
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, var(--white), var(--off-white));
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15), 0 10px 20px rgba(255,107,0,0.15);
}

.product-card .product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-card .badge-tag {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-hot {
    background: var(--danger);
    color: var(--white);
    animation: pulse 1.5s infinite;
}

.badge-sale {
    background: var(--accent);
    color: var(--dark);
}

.badge-free-delivery {
    background: var(--success);
    color: var(--white);
}

.product-image-wrap {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: linear-gradient(135deg, #FFF5EB 0%, #FFE8D6 100%);
}

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

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

.product-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(255,255,255,1), transparent);
}

.product-content {
    padding: 24px;
}

.product-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-content .product-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.5;
}

.product-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.product-includes span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--text-light);
    background: var(--off-white);
    padding: 4px 12px;
    border-radius: 50px;
}

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

.product-pricing .original-price {
    font-size: 18px;
    color: var(--medium-gray);
    text-decoration: line-through;
}

.product-pricing .sale-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

.product-pricing .save-badge {
    background: rgba(255,23,68,0.1);
    color: var(--danger);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.product-perks {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
    padding: 16px;
    background: rgba(0,200,83,0.05);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0,200,83,0.1);
}

.product-perks .perk {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text);
}

.product-perks .perk svg {
    width: 16px;
    height: 16px;
    fill: var(--success);
    flex-shrink: 0;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.product-actions .btn-order {
    flex: 1;
    padding: 14px 20px;
    font-size: 15px;
}

.product-actions .btn-whatsapp-sm {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.product-actions .btn-whatsapp-sm:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(37,211,102,0.4);
}

.product-qty-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px 16px;
    background: var(--off-white);
    border-radius: var(--radius-sm);
}

.product-qty-controls label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.qty-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.qty-wrapper button {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--off-white);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.qty-wrapper button:hover {
    background: var(--primary);
    color: var(--white);
}

.qty-wrapper input {
    width: 50px;
    height: 36px;
    text-align: center;
    border: none;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-primary);
}

.qty-bonus {
    font-size: 12px;
    color: var(--success);
    font-weight: 600;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    padding: 100px 0;
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 55px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    z-index: 0;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(255,107,0,0.3);
    position: relative;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--off-white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 36px;
}

.step-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.step-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

/* ============================================
   INSTAGRAM REELS SECTION
   ============================================ */
.reels-section {
    padding: 100px 0;
    background: var(--secondary);
    position: relative;
    overflow: hidden;
}

.reels-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 30% 50%, rgba(255,107,0,0.08), transparent 50%);
}

.reels-section .section-title h2 {
    color: var(--white);
}

.reels-section .section-title p {
    color: rgba(255,255,255,0.6);
}

.reels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.reel-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 9/16;
    cursor: pointer;
    transition: var(--transition);
}

.reel-card:hover {
    transform: translateY(-8px) scale(1.03);
}

.reel-card iframe,
.reel-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

.reel-card .reel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: var(--transition);
}

.reel-card:hover .reel-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2) 50%);
}

.reel-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.reel-play-btn svg {
    width: 24px;
    height: 24px;
    fill: var(--primary);
    margin-left: 4px;
}

.reel-card:hover .reel-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--white);
}

.reel-info {
    color: var(--white);
}

.reel-info .reel-views {
    font-size: 13px;
    opacity: 0.8;
}

.reels-cta {
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

/* ============================================
   REVIEWS / TESTIMONIALS
   ============================================ */
.reviews-section {
    padding: 100px 0;
    background: var(--off-white);
}

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.review-card .quote-icon {
    font-size: 40px;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    right: 24px;
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.review-stars svg {
    width: 18px;
    height: 18px;
    fill: var(--accent);
}

.review-text {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
}

.review-author-info .name {
    font-weight: 700;
    font-size: 15px;
    color: var(--secondary);
}

.review-author-info .location {
    font-size: 13px;
    color: var(--text-light);
}

.review-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--success);
    font-weight: 600;
    margin-top: 4px;
}

/* ============================================
   DELIVERY AREAS
   ============================================ */
.delivery-section {
    padding: 100px 0;
    background: var(--white);
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.delivery-area-card {
    background: var(--off-white);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    transition: var(--transition);
    cursor: default;
}

.delivery-area-card:hover {
    border-color: var(--primary);
    background: rgba(255,107,0,0.05);
    transform: translateY(-3px);
}

.delivery-area-card .area-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.delivery-area-card .area-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--secondary);
}

.delivery-area-card .area-time {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 4px;
}

.delivery-note {
    text-align: center;
    padding: 24px;
    background: rgba(255,107,0,0.05);
    border: 2px dashed var(--primary);
    border-radius: var(--radius-md);
}

.delivery-note p {
    font-size: 16px;
    color: var(--text);
}

.delivery-note p strong {
    color: var(--primary);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 100px 0;
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.about-image .experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-3d);
}

.about-image .experience-badge .number {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.about-image .experience-badge .text {
    font-size: 13px;
    margin-top: 4px;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.about-feature .feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,107,0,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.about-feature .feature-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
}

/* ============================================
   POPUP / MODAL
   ============================================ */
.muw-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.muw-popup-overlay.active {
    display: flex;
}

.muw-popup {
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 520px;
    width: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    animation: popupSlide 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes popupSlide {
    from { transform: translateY(40px) scale(0.95); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.muw-popup .popup-header {
    background: var(--gradient-primary);
    padding: 30px;
    text-align: center;
    color: var(--white);
}

.muw-popup .popup-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.muw-popup .popup-header p {
    font-size: 14px;
    opacity: 0.9;
}

.muw-popup .popup-body {
    padding: 30px;
    text-align: center;
}

.muw-popup .popup-body .offer-text {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.muw-popup .popup-body .offer-desc {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.popup-close:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.whatsapp-float .wa-tooltip {
    background: var(--white);
    color: var(--text);
    padding: 10px 16px;
    border-radius: 12px 12px 0 12px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    display: none;
    animation: fadeUp 0.3s ease;
}

.whatsapp-float:hover .wa-tooltip {
    display: block;
}

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

.whatsapp-float .wa-btn {
    width: 64px;
    height: 64px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
    transition: var(--transition);
    cursor: pointer;
    animation: pulse 2s infinite;
}

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

.whatsapp-float .wa-btn svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--secondary);
    color: var(--white);
    padding: 80px 0 0;
}

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

.footer-brand .footer-logo img {
    height: 50px;
    margin-bottom: 16px;
}

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

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

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.footer-social a svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

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

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    fill: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-item span {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.footer-contact-item a {
    color: rgba(255,255,255,0.6);
}

.footer-contact-item a:hover {
    color: var(--primary);
}

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.footer-payment {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-payment img {
    height: 28px;
    opacity: 0.5;
    transition: var(--transition);
}

.footer-payment img:hover {
    opacity: 1;
}

/* ============================================
   WOO COMMERCE CHECKOUT PAGE
   ============================================ */
.muw-checkout {
    padding: 100px 0 60px;
    min-height: 100vh;
    background: var(--off-white);
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

.checkout-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-card);
    margin-bottom: 24px;
    border: 1px solid rgba(0,0,0,0.05);
}

.checkout-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--off-white);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group label .required {
    color: var(--danger);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: var(--font-primary);
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255,107,0,0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

/* Location Dropdown */
.location-select {
    position: relative;
}

.location-select select {
    appearance: none;
    padding-right: 40px;
}

.location-warning {
    display: none;
    padding: 16px;
    background: rgba(255,23,68,0.05);
    border: 1px solid rgba(255,23,68,0.2);
    border-radius: var(--radius-sm);
    margin-top: 12px;
    color: var(--danger);
    font-size: 14px;
    text-align: center;
}

.location-warning.show {
    display: block;
}

/* Payment Screenshot Upload */
.payment-upload-area {
    border: 2px dashed var(--primary);
    border-radius: var(--radius-md);
    padding: 40px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    background: rgba(255,107,0,0.02);
}

.payment-upload-area:hover {
    background: rgba(255,107,0,0.05);
    border-color: var(--primary-dark);
}

.payment-upload-area .upload-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.payment-upload-area .upload-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.payment-upload-area .upload-hint {
    font-size: 13px;
    color: var(--text-light);
}

.payment-preview {
    display: none;
    margin-top: 16px;
    position: relative;
}

.payment-preview img {
    max-width: 300px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.payment-preview .remove-preview {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    background: var(--danger);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
}

/* Delivery Date Picker */
.date-picker-wrapper {
    position: relative;
}

.date-picker-wrapper input[type="date"] {
    cursor: pointer;
}

.date-note {
    font-size: 13px;
    color: var(--primary);
    margin-top: 6px;
    font-weight: 500;
}

/* Order Summary Sidebar */
.order-summary-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-card);
    position: sticky;
    top: 100px;
    border: 2px solid var(--primary);
}

.order-summary-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 24px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
}

.order-item .item-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.order-item .item-price {
    font-weight: 700;
    color: var(--secondary);
}

.order-totals {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 2px solid var(--off-white);
}

.order-totals .total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.order-totals .total-row.grand-total {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    padding-top: 12px;
    border-top: 2px solid var(--primary);
    margin-top: 12px;
}

.discount-badge-checkout {
    background: rgba(0,200,83,0.1);
    color: var(--success);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    margin: 16px 0;
}

.sadapay-info {
    background: rgba(108,70,170,0.05);
    border: 1px solid rgba(108,70,170,0.2);
    border-radius: var(--radius-md);
    padding: 20px;
    margin: 16px 0;
    text-align: center;
}

.sadapay-info .sadapay-title {
    font-size: 16px;
    font-weight: 700;
    color: #6C46AA;
    margin-bottom: 8px;
}

.sadapay-info .sadapay-number {
    font-size: 22px;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: 1px;
}

.sadapay-info .sadapay-note {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 8px;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thank-you-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: var(--off-white);
}

.thank-you-card {
    max-width: 600px;
    width: 100%;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    background: rgba(0,200,83,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 40px;
}

.thank-you-card h1 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--secondary);
    margin-bottom: 12px;
}

.thank-you-card .order-message {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.thank-you-steps {
    text-align: left;
    background: var(--off-white);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 32px;
}

.thank-you-steps h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.thank-you-steps .step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text);
}

.thank-you-steps .step .step-num {
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
    padding: 100px 0;
}

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

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

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

.contact-card .card-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,107,0,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-card .card-label {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-card .card-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-card);
}

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-section {
    padding: 100px 0;
    background: var(--off-white);
}

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

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card .blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-card .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.blog-card .blog-content {
    padding: 24px;
}

.blog-card .blog-meta {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.blog-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card .blog-excerpt {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card .blog-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-card .blog-link:hover {
    gap: 10px;
}

/* ============================================
   PRIVACY POLICY
   ============================================ */
.privacy-section {
    padding: 100px 0;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
    margin: 32px 0 16px;
}

.privacy-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* ============================================
   GAMIFICATION / SPIN WHEEL
   ============================================ */
.spin-wheel-section {
    padding: 80px 0;
    background: var(--gradient-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.spin-wheel-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,107,0,0.1), transparent 70%);
}

.spin-wheel-content {
    position: relative;
    z-index: 2;
}

.spin-wheel-content h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--white);
    margin-bottom: 12px;
}

.spin-wheel-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 32px;
}

.wheel-container {
    width: 320px;
    height: 320px;
    margin: 0 auto 24px;
    position: relative;
}

.wheel-container canvas {
    width: 100%;
    height: 100%;
}

.wheel-pointer {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 30px solid var(--primary);
    z-index: 3;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* ============================================
   LOADING SCREEN
   ============================================ */
.site-preloader {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    transition: opacity 0.5s ease;
}

.site-preloader.loaded {
    opacity: 0;
    pointer-events: none;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--light-gray);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-trust-badges {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

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

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid::before {
        display: none;
    }

    .reels-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-slider {
        grid-template-columns: repeat(2, 1fr);
    }

    .delivery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .checkout-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        font-size: 20px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-text h1 {
        font-size: 34px;
    }

    .hero-text .tagline {
        font-size: 16px;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stat .number {
        font-size: 24px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

    .reels-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-slider {
        grid-template-columns: 1fr;
    }

    .delivery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .countdown-timer {
        flex-wrap: wrap;
        justify-content: center;
    }

    .urgency-content {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .btn-3d {
        padding: 14px 28px;
        font-size: 15px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn-3d {
        width: 100%;
    }

    .delivery-grid {
        grid-template-columns: 1fr;
    }
}
