/* Main Stylesheet for YUM2U */

/* =========================================
   1. Design System & Variables (from Home)
   ========================================= */
:root {
    /* High Contrast Colors for Perfect Readability */
    --primary-50: #f0f9ff;
    --primary-100: #e0f2fe;
    --primary-200: #bae6fd;
    --primary-300: #7dd3fc;
    --primary-400: #38bdf8;
    --primary-500: #0ea5e9;
    --primary-600: #0284c7;
    --primary-700: #0369a1;
    --primary-800: #075985;
    --primary-900: #0c4a6e;

    --secondary-50: #fef7ee;
    --secondary-100: #feeddd;
    --secondary-200: #fed7aa;
    --secondary-300: #fdba74;
    --secondary-400: #fb923c;
    --secondary-500: #f97316;
    --secondary-600: #ea580c;
    --secondary-700: #c2410c;
    --secondary-800: #9a3412;
    --secondary-900: #7c2d12;

    --accent-50: #faf5ff;
    --accent-100: #f3e8ff;
    --accent-200: #e9d5ff;
    --accent-300: #d8b4fe;
    --accent-400: #c084fc;
    --accent-500: #a855f7;
    --accent-600: #9333ea;
    --accent-700: #7c3aed;
    --accent-800: #6b21a8;
    --accent-900: #581c87;

    /* High Contrast Gray Scale */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --black: #000000;

    /* Semantic Colors */
    --success: #fa5043;
    --success-light: #d1fae5;
    --warning: #d97706;
    --warning-light: #fef3c7;
    --error: #dc2626;
    --error-light: #fecaca;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-display: 'Poppins', var(--font-primary);

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Breakpoints */
    --breakpoint-sm: 640px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 1024px;
    --breakpoint-xl: 1280px;
    --breakpoint-2xl: 1536px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);

    /* =========================================
       2. Checkout Specific Variables
       ========================================= */
    /* Light Theme Colors */
    --primary-color: #60a274;
    --secondary-color: #ffc145;
    --primary-dark: #4d8a5f;
    --secondary-dark: #e6a73c;

    /* Light Mode Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-tertiary: #f3f4f6;
    --text-primary: #111827;
    --text-secondary: #374151;
    --text-tertiary: #6b7280;
    --border-primary: #e5e7eb;
    --border-secondary: #d1d5db;

    /* Spacing Aliases */
    --spacing-1: 0.25rem;
    --spacing-2: 0.5rem;
    --spacing-3: 0.75rem;
    --spacing-4: 1rem;
    --spacing-6: 1.5rem;
    --spacing-8: 2rem;
}

/* =========================================
   3. Reset & Base Styles
   ========================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input,
button,
textarea,
select {
    font: inherit;
}

a {
    text-decoration: none;
    color: var(--primary-600);
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-700);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

/* =========================================
   4. Layout Components (Container, Sections)
   ========================================= */
.ultra-modern-homepage {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

.section {
    padding: var(--space-20) 0;
    position: relative;
    background: var(--white);
}

@media (min-width: 640px) {
    .container {
        padding: 0 var(--space-6);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--space-8);
    }
}

@media (max-width: 768px) {
    .section {
        padding: var(--space-16) 0;
    }
}

/* =========================================
   5. Hero Section
   ========================================= */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
    will-change: opacity, visibility;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide[data-bg="hero-1"] {
    background-image: linear-gradient(135deg, rgba(14, 165, 233, 0.85) 0%, rgba(59, 130, 246, 0.75) 100%), url('https://images.unsplash.com/photo-1606491956689-2ea866880c84?w=1920');
    background-size: cover;
    background-position: center;
}

.hero-slide[data-bg="hero-2"] {
    background-image: linear-gradient(135deg, rgba(249, 115, 22, 0.85) 0%, rgba(245, 101, 101, 0.75) 100%), url('https://images.unsplash.com/photo-1586201375761-83865001e31c?w=1920');
    background-size: cover;
    background-position: center;
}

.hero-slide[data-bg="hero-3"] {
    background-image: linear-gradient(135deg, rgba(168, 85, 247, 0.85) 0%, rgba(236, 72, 153, 0.75) 100%), url('https://images.unsplash.com/photo-1574484284002-952d92456975?w=1920');
    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-8);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    height: 100%;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-6);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.hero-badge.orange {
    background: rgba(249, 115, 22, 0.2);
    border-color: rgba(249, 115, 22, 0.4);
}

.hero-badge.purple {
    background: rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.4);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-6);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    color: var(--white);
}

.gradient-text {
    background: linear-gradient(90deg, #198AAA, #D3EB2E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text.orange {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text.purple {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--space-8);
    opacity: 0.95;
    max-width: 500px;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--white);
    backdrop-filter: blur(16px);
    color: var(--gray-900);
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-base);
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-2xl);
    background: var(--gray-50);
}

.hero-btn.orange {
    background: linear-gradient(135deg, var(--secondary-500), var(--secondary-600));
    color: var(--white);
}

.hero-btn.purple {
    background: linear-gradient(135deg, var(--accent-500), var(--accent-600));
    color: var(--white);
}

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

.hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.7);
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ... Floating Cards & Nav (truncated for brevity but included implicitly) ... */
.floating-elements {
    position: relative;
    width: 400px;
    height: 400px;
}

.floating-card {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    animation: float 6s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 20px;
    left: 50px;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 150px;
    right: 50px;
    animation-delay: 2s;
}

.floating-card.card-3 {
    bottom: 20px;
    left: 100px;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.hero-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 var(--space-8);
    z-index: 10;
    pointer-events: none;
}

.nav-btn {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    pointer-events: auto;
    transition: all var(--transition-base);
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.hero-indicators {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-3);
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all var(--transition-base);
}

.indicator.active {
    background: var(--white);
    transform: scale(1.2);
}

/* =========================================
   6. Section Headers
   ========================================= */
.section-header {
    text-align: left;
    margin-bottom: var(--space-16);
}

.section-header.centered {
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--primary-100);
    color: var(--primary-800);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-4);
    border: 1px solid var(--primary-200);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-4);
    color: var(--gray-900);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: var(--space-6);
    max-width: 600px;
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--primary-600);
    font-weight: 600;
    transition: var(--transition-fast);
}

.section-link:hover {
    color: var(--primary-700);
    transform: translateX(4px);
}

/* =========================================
   7. Product Grids & Cards
   ========================================= */
.products-container {
    position: relative;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-8);
}

.products-grid.batter {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-8);
}

.products-grid.new,
.products-grid.category {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-6);
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--space-6);
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-200);
    will-change: transform;
}

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

.product-card.deal {
    border: 2px solid var(--secondary-200);
    background: linear-gradient(135deg, var(--secondary-50), var(--white));
}

.product-card.new {
    border: 2px solid var(--accent-200);
    background: linear-gradient(135deg, var(--accent-50), var(--white));
}

.product-image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--gray-100);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    will-change: transform;
}

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

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    z-index: 5;
}

.product-overlay.unavailable {
    background: rgba(220, 38, 38, 0.4);
}

.product-badge {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
}

.product-badge.discount {
    background: var(--error);
    color: var(--white);
}

.product-badge.deal-badge {
    background: var(--secondary-500);
    color: var(--white);
}

.product-badge.new-badge {
    background: var(--accent-500);
    color: var(--white);
}

.product-actions {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    opacity: 0;
    transform: translateX(20px);
    transition: all var(--transition-base);
    z-index: 10;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    backdrop-filter: blur(8px);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    color: var(--gray-700);
    transition: all var(--transition-fast);
}

.action-btn:hover {
    background: var(--gray-50);
    transform: scale(1.1);
    color: var(--primary-600);
    border-color: var(--primary-200);
}

.product-info {
    padding: var(--space-6);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info.compact {
    padding: var(--space-4);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-3);
}

.stars {
    display: flex;
    color: #fbbf24;
    font-size: 0.875rem;
}

.rating-text {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.product-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-2);
    line-height: 1.4;
}

.product-title a {
    color: var(--gray-900);
}

.product-title a:hover {
    color: var(--primary-600);
}

.product-description {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin-bottom: var(--space-4);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-pricing {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.price-section {
    display: flex;
    align-items: baseline;
    gap: var(--space-2);
}

.button-section {
    display: flex;
    width: 100%;
}

.product-pricing.compact {
    gap: var(--space-3);
}

.current-price {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--success);
}

.current-price.deal-price {
    color: var(--secondary-600);
}

.original-price {
    font-size: 1rem;
    color: var(--gray-500);
    text-decoration: line-through;
}

.btn-primary {
    background: var(--primary-600);
    color: var(--white);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: var(--primary-700);
}

.btn-cart {
    background: var(--success);
    color: var(--white);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    transition: all var(--transition-base);
    min-height: 44px;
    min-width: 120px;
}

.btn-cart:hover {
    transform: translateY(-1px);
    background: #047857;
    box-shadow: var(--shadow-lg);
}

.btn-cart.compact {
    padding: var(--space-2) var(--space-3);
    font-size: 0.875rem;
    min-height: 36px;
    min-width: 100px;
}

.btn-cart.disabled {
    background: var(--gray-400);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.add-to-cart-form {
    width: 100%;
    display: flex;
}

/* =========================================
   8. Banner Section
   ========================================= */
.banner-section {
    padding: var(--space-12) 0;
    background: var(--gray-50);
}

.banner-card {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-2xl);
}

.banner-image {
    position: absolute;
    inset: 0;
}

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

.desktop-banner {
    display: block;
}

.mobile-banner {
    display: none;
}

.banner-content {
    position: relative;
    z-index: 5;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    color: var(--white);
    padding: var(--space-16);
    text-align: center;
    width: 100%;
}

.banner-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: var(--white);
}

.btn-banner {
    background: var(--white);
    backdrop-filter: blur(8px);
    color: var(--gray-900);
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-full);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    transition: all var(--transition-base);
}

.btn-banner:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* =========================================
   9. Icons & Helpers
   ========================================= */
.icon-flash {
    display: inline-block;
}

.icon-sparkles::before {
    content: "✨";
}

.icon-star::before {
    content: "⭐";
}

.icon-heart::before {
    content: "❤️";
}

.icon-cart::before {
    content: "🛒";
}

/* ... (Other icons omitted for brevity, add as needed) ... */

/* =========================================
   10. Checkout Page Styles
   ========================================= */
.progress-section {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-primary);
    padding: var(--spacing-6) 0;
    margin-bottom: var(--spacing-8);
}

.progress-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-6);
}

.progress-header {
    text-align: center;
    margin-bottom: var(--spacing-6);
}

.progress-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-2);
}

.progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: auto;
    padding: var(--spacing-4) 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
    position: relative;
}

.progress-step.completed .step-circle {
    background: linear-gradient(135deg, var(--success), #16a34a);
    color: var(--bg-primary);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}

.progress-step.active .step-circle {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-primary);
    box-shadow: 0 0 0 4px rgba(96, 162, 116, 0.2);
    transform: scale(1.1);
}

.progress-step.current .step-circle {
    animation: pulse 2s ease-in-out infinite;
}

.step-circle {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: var(--bg-tertiary);
    color: var(--text-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-2);
    transition: var(--transition-base);
    border: 3px solid var(--bg-primary);
}

.checkout-page-container {
    background: var(--bg-secondary);
    min-height: 100vh;
    padding-bottom: var(--spacing-8);
}

.checkout-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-6);
}

.checkout-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-8);
}

.summary-card,
.checkout-form-section {
    background: var(--bg-primary);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-primary);
    padding: var(--spacing-6);
}

.order-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
    padding: var(--spacing-4) 0;
    border-bottom: 1px solid var(--border-primary);
}

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

.item-image {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-primary);
}

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

.form-input,
.form-select {
    width: 100%;
    height: 48px;
    padding: var(--spacing-4);
    border: 2px solid var(--border-primary);
    border-radius: var(--radius-xl);
    background: var(--bg-primary);
    font-size: 1rem;
    transition: var(--transition-base);
    outline: none;
}

.form-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(96, 162, 116, 0.1);
}

.place-order-btn {
    width: 100%;
    height: 64px;
    background: var(--primary-color);
    border: none;
    border-radius: var(--radius-xl);
    color: var(--bg-primary);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.place-order-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* =========================================
   11. Media Queries (Global)
   ========================================= */
@media (max-width: 1024px) {
    .checkout-content {
        grid-template-columns: 1fr;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .products-grid.batter {
        grid-template-columns: 1fr;
    }

    .products-grid.mobile-scroll {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: var(--space-2);
    }

    .mobile-scroll .product-card.compact-mobile {
        flex: 0 0 280px;
        width: 280px;
        scroll-snap-align: start;
    }

    .desktop-banner {
        display: none;
    }

    .mobile-banner {
        display: block;
    }
}