/* Google Fonts Imports */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700;800;900&family=Libre+Baskerville:wght@400;700&family=Poppins:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #111827;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --gold-color: #fbbf24;
    --light-color: #f8fafc;
    --dark-color: #0f172a;
    --success-color: #10b981;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --radius: 12px;
    --transition: all 0.3s ease;
    
    /* Font Families */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-accent: 'Libre Baskerville', serif;
    --font-secondary: 'Poppins', sans-serif;
    --font-ui: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--light-color);
    overflow-x: hidden;
    position: relative;
    font-size: 16px;
    font-weight: 400;
}

/* Enhanced Typography System */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

h1 .highlight-text {
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    font-weight: 900;
}

h1 .highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(59, 130, 246, 0.3) 30%, 
        rgba(59, 130, 246, 0.5) 50%, 
        rgba(59, 130, 246, 0.3) 70%, 
        transparent 100%);
    z-index: -1;
    border-radius: 4px;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Paragraphs and Body Text */
p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 400;
}

.lead-text {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.8;
    color: var(--text-dark);
}

.small-text {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.6;
}

/* Ambient Light Effects - Reduced opacity */
.light-effect {
    position: fixed;
    border-radius: 50%;
    z-index: -1;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 25s infinite ease-in-out;
}

.light-1 {
    width: 400px;
    height: 400px;
    background: var(--gradient-gold);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.light-2 {
    width: 500px;
    height: 500px;
    background: var(--gradient);
    bottom: 10%;
    right: 5%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
    }
    25% {
        transform: translateY(-30px) translateX(15px) scale(1.05);
    }
    50% {
        transform: translateY(30px) translateX(-15px) scale(0.95);
    }
    75% {
        transform: translateY(-15px) translateX(-25px) scale(1.02);
    }
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

header.scrolled {
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.99);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.logo-sub {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-color);
    background: rgba(59, 130, 246, 0.08);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 60%;
}

.nav-order-link {
    background: var(--gradient);
    color: white !important;
    padding: 0.8rem 1.5rem !important;
    font-weight: 600;
}

.nav-order-link:hover {
    background: var(--secondary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(30, 64, 175, 0.2);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-btn.active {
    transform: rotate(90deg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-ui);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
    background: var(--secondary-color);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
    background: #128C7E;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
}

/* Hero Section - Enhanced Background Visibility */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.6) 100%);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/background.png') center/cover no-repeat;
    z-index: -2;
    opacity: 0.5;
    filter: brightness(1.1) contrast(1.1) saturate(1.2);
    transform: scale(1.02);
}

.hero-bg-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.6) 0%, 
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0.6) 100%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text-block {
    max-width: 600px;
    padding: 2.5rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-subtitle {
    font-size: 1.125rem;
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-tag {
    background: rgba(255, 255, 255, 0.95);
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.15);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.hero-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    background: white;
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-buttons .btn {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

/* Enhanced Floating Plate - Yellow Cadre Fixed */
.floating-plate {
    position: relative;
    width: 350px;
    height: 350px;
    animation: float-plate 8s ease-in-out infinite;
}

@keyframes float-plate {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(3deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(15px) rotate(-3deg);
    }
}

.plate-main {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.4),
        0 0 80px rgba(251, 191, 36, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 12px solid white;
}

.plate-main::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 4px dashed var(--gold-color);
    border-radius: 50%;
    opacity: 0.4;
    animation: rotate 25s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.plate-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    text-align: center;
    padding: 2rem;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.plate-icon {
    font-size: 4rem;
    color: var(--gold-color);
    margin-bottom: 1rem;
    animation: pulse-icon 3s infinite;
    text-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.plate-text {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.3;
    background: linear-gradient(135deg, var(--primary-color) 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.plate-shadow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 50px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    filter: blur(15px);
    animation: shadow-pulse 8s ease-in-out infinite;
}

@keyframes shadow-pulse {
    0%, 100% {
        width: 75%;
        opacity: 0.6;
    }
    50% {
        width: 80%;
        opacity: 0.8;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.arrow i {
    animation: bounce 2s infinite;
    color: var(--primary-color);
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
    z-index: 0;
}

.products-section > .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header p {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    max-width: 600px;
    margin: 0.5rem auto 0;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

/* Enhanced Product Categories */
.product-category {
    background: white;
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.4);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

.product-category:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.6);
}

.product-category h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--secondary-color);
    margin-bottom: 1.8rem;
    padding-bottom: 1.2rem;
    border-bottom: 2px solid rgba(30, 64, 175, 0.1);
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
}

.product-category h3 i {
    color: var(--gold-color);
    font-size: 1.4rem;
}

/* Updated Product Items with Images */
.product-item {
    display: grid;
    grid-template-columns: 120px 1fr auto auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
}

.product-item:hover {
    border-color: rgba(59, 130, 246, 0.3);
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.image-container {
    width: 120px;
    height: 120px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transition: transform 0.5s ease;
    border-radius: 12px;
}

.product-item:hover .image-container {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.7) 100%);
    border-radius: 12px;
    display: flex;
    align-items: flex-end;
    padding: 10px;
}

.category-tag {
    background: var(--gold-color);
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 700;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.5;
    font-family: var(--font-body);
    font-weight: 400;
}

.nutrition-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 5px;
}

.nutrition-tag {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-color);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    border: 1px solid rgba(59, 130, 246, 0.2);
    font-family: var(--font-ui);
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-color);
    font-family: var(--font-heading);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    padding: 0 20px;
}

.order-btn {
    padding: 0.9rem 1.8rem;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.2);
    font-family: var(--font-ui);
}

.order-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 64, 175, 0.3);
}

/* Special Offers */
.special-offers {
    margin-top: 60px;
}

.offer-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e293b 100%);
    color: white;
    border-radius: var(--radius);
    padding: 2.5rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    box-shadow: var(--shadow-lg);
}

.offer-icon {
    font-size: 2.5rem;
    color: var(--gold-color);
}

.offer-content h4 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.offer-content p {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-body);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-family: var(--font-heading);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
    font-family: var(--font-body);
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature i {
    color: var(--gold-color);
    font-size: 1.2rem;
}

.feature h4 {
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.about-image {
    position: relative;
}

.image-frame {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--gold-color) 0%, #f59e0b 100%);
    z-index: -1;
    border-radius: calc(var(--radius) + 10px);
    opacity: 0.3;
}

.image-content {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

/* How It Works Section */
.how-it-works-section {
    padding: 100px 0;
    background: white;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    position: relative;
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-10px);
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: var(--radius);
    z-index: -1;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    font-family: var(--font-ui);
}

.step-number::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

.step-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.step h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-family: var(--font-heading);
}

.step p {
    color: var(--text-light);
    font-size: 0.95rem;
    font-family: var(--font-body);
}

/* Delivery Options Styles */
.delivery-options-toggle {
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.delivery-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.delivery-tab {
    flex: 1;
    padding: 1.2rem 2rem;
    border: none;
    background: transparent;
    border-radius: 45px;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.5px;
}

.delivery-tab i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.delivery-tab.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e293b 100%);
    color: white;
    box-shadow: 0 5px 20px rgba(30, 64, 175, 0.3);
}

.delivery-tab.active i {
    color: var(--gold-color);
}

.delivery-tab:not(.active):hover {
    color: var(--accent-color);
    background: rgba(59, 130, 246, 0.05);
}

.delivery-flow {
    display: none;
    animation: fadeIn 0.5s ease;
}

.delivery-flow.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gym Notice */
.gym-notice {
    margin-top: 40px;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);
    border-radius: var(--radius);
    border-left: 4px solid var(--gold-color);
}

.notice-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.notice-content i {
    color: var(--gold-color);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.notice-content p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    font-family: var(--font-body);
}

/* Delivery Details */
.delivery-details {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.delivery-card {
    background: white;
    border-radius: var(--radius);
    padding: 1.8rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.delivery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: rgba(59, 130, 246, 0.2);
}

.delivery-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.delivery-info h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.delivery-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.5;
    font-family: var(--font-body);
}

.delivery-info strong {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-family: var(--font-ui);
    font-weight: 600;
}

.small-text {
    font-size: 0.85rem !important;
    color: var(--text-light) !important;
    opacity: 0.8;
    font-family: var(--font-body);
}

.zone-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.zone-tag {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
    font-family: var(--font-ui);
}

.zone-tag:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.zone-tag:last-child {
    background: rgba(251, 191, 36, 0.1);
    color: var(--gold-color);
    border-color: rgba(251, 191, 36, 0.2);
}

.zone-tag:last-child:hover {
    background: var(--gold-color);
    color: var(--primary-color);
}

.delivery-cta {
    margin-top: 40px;
    text-align: center;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: start;
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    font-size: 2rem;
    color: var(--gold-color);
}

.contact-details h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-family: var(--font-heading);
}

.contact-details p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    font-family: var(--font-body);
}

.contact-cta {
    background: white;
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.contact-cta p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-family: var(--font-body);
}

/* Footer */
footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo .logo-text {
    color: white;
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
}

.footer-logo .logo-sub {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-ui);
}

.footer-tagline {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    font-family: var(--font-accent);
}

.footer-links h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-family: var(--font-ui);
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    font-family: var(--font-body);
}

.footer-links a:hover {
    color: var(--gold-color);
    transform: translateX(5px);
}

.footer-social h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-family: var(--font-ui);
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--gold-color);
    transform: translateY(-3px);
}

.footer-social p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-family: var(--font-body);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-family: var(--font-ui);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    font-family: var(--font-ui);
}

/* Sticky WhatsApp Button */
.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-sticky:hover {
    transform: scale(1.1);
    background: #128C7E;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    }
}

/* Cart Styles */
.cart-floating-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition);
}

.cart-floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
    background: var(--secondary-color);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    animation: pulse-cart 2s infinite;
}

@keyframes pulse-cart {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-modal.active {
    display: flex;
    opacity: 1;
}

.cart-modal-content {
    background: white;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: slideInUp 0.3s ease;
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--primary-color);
    color: white;
}

.cart-header h3 {
    margin: 0;
    color: white;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
}

.close-cart {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.close-cart:hover {
    transform: rotate(90deg);
    color: var(--gold-color);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    max-height: 50vh;
}

.cart-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: rgba(248, 250, 252, 0.5);
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.cart-item:hover {
    background: rgba(248, 250, 252, 0.8);
    border-color: rgba(59, 130, 246, 0.2);
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cart-item-name {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
    font-family: var(--font-heading);
}

.cart-item-price {
    color: var(--gold-color);
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

.cart-item-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border-radius: 20px;
    padding: 5px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.quantity-btn {
    background: var(--gradient);
    color: white;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
    transition: var(--transition);
    font-family: var(--font-ui);
}

.quantity-btn:hover {
    transform: scale(1.1);
    background: var(--secondary-color);
}

.quantity-value {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: var(--font-ui);
}

.remove-item-btn {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 15px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-ui);
}

.remove-item-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    transform: translateY(-2px);
}

.empty-cart-message {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-light);
    font-family: var(--font-body);
}

.empty-cart-message i {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-cart-message p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.empty-cart-message .small-text {
    font-size: 0.9rem;
    opacity: 0.7;
}

.cart-summary {
    padding: 1.5rem;
    background: var(--light-color);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.cart-totals {
    margin-bottom: 1.5rem;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.total-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.total-row span:first-child {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-family: var(--font-body);
}

.total-row span:last-child {
    font-weight: 600;
    color: var(--text-dark);
    font-family: var(--font-ui);
}

.delivery-fee span:last-child {
    color: var(--accent-color);
}

.grand-total {
    font-size: 1.2rem;
    padding-top: 0.8rem;
    border-top: 2px solid var(--primary-color);
}

.grand-total span:last-child {
    color: var(--gold-color);
    font-size: 1.4rem;
    font-family: var(--font-heading);
}

.delivery-mode-notice {
    background: rgba(59, 130, 246, 0.1);
    padding: 0.8rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--accent-color);
    text-align: center;
    border-left: 3px solid var(--accent-color);
    font-family: var(--font-body);
}

.cart-actions {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-family: var(--font-ui);
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Add to Cart Button Styles */
.add-to-cart-btn {
    padding: 0.7rem 1.5rem;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.2);
    font-family: var(--font-ui);
}

.add-to-cart-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}

.add-to-cart-btn.added {
    background: var(--success-color);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.2);
}

.add-to-cart-btn.added:hover {
    background: #0da271;
}

/* Cart item entry animation */
@keyframes cartItemAdded {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    70% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.cart-item.new-item {
    animation: cartItemAdded 0.3s ease;
}

/* Typography Utility Classes */
.font-light { font-weight: 300; }
.font-regular { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }

.letter-spacing-tight { letter-spacing: -0.5px; }
.letter-spacing-normal { letter-spacing: normal; }
.letter-spacing-wide { letter-spacing: 1px; }
.letter-spacing-wider { letter-spacing: 2px; }
.letter-spacing-widest { letter-spacing: 3px; }

.font-heading { font-family: var(--font-heading); }
.font-body { font-family: var(--font-body); }
.font-accent { font-family: var(--font-accent); }
.font-secondary { font-family: var(--font-secondary); }
.font-ui { font-family: var(--font-ui); }

.text-uppercase { text-transform: uppercase; }
.text-capitalize { text-transform: capitalize; }
.text-lowercase { text-transform: lowercase; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        gap: 3rem;
    }
    
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-text-block {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .floating-plate {
        margin: 0 auto;
    }
    
    /* Responsive Product Items */
    .product-item {
        grid-template-columns: 100px 1fr;
        grid-template-rows: auto auto;
        gap: 1rem;
    }
    
    .product-price {
        grid-column: 1;
        grid-row: 2;
        justify-self: start;
        padding: 0;
        padding-left: 10px;
        font-size: 1.5rem;
    }
    
    .order-btn {
        grid-column: 2;
        grid-row: 2;
        justify-self: end;
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .image-container {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-bg-overlay {
        opacity: 0.4;
    }
    
    .hero-text-block {
        padding: 2rem;
    }
    
    .floating-plate {
        width: 280px;
        height: 280px;
    }
    
    .plate-icon {
        font-size: 3rem;
    }
    
    .plate-text {
        font-size: 1.8rem;
    }
    
    .product-category {
        padding: 1.5rem;
    }
    
    .product-info h4 {
        font-size: 1.1rem;
    }
    
    .offer-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Delivery tabs responsive */
    .delivery-tabs {
        flex-direction: column;
        border-radius: var(--radius);
        padding: 8px;
    }
    
    .delivery-tab {
        width: 100%;
        border-radius: 40px;
        padding: 1rem 1.5rem;
    }
    
    .delivery-details {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .delivery-card {
        padding: 1.5rem;
    }
    
    .zone-tags {
        justify-content: center;
    }
    
    /* Cart responsive */
    .cart-modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .cart-floating-btn {
        bottom: 90px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .cart-count {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
    
    .cart-actions {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .cart-item-image {
        width: 100%;
        height: 120px;
    }
    
    .cart-item-controls {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .hero {
        padding-top: 60px;
        min-height: 90vh;
    }
    
    .hero-text-block {
        padding: 1.5rem;
    }
    
    .hero-tags {
        justify-content: center;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        min-width: 100%;
    }
    
    .floating-plate {
        width: 250px;
        height: 250px;
    }
    
    .plate-icon {
        font-size: 2.5rem;
    }
    
    .plate-text {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    /* Mobile Product Items */
    .product-item {
        grid-template-columns: 80px 1fr;
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .image-container {
        width: 80px;
        height: 80px;
    }
    
    .product-price {
        font-size: 1.4rem;
        padding-left: 5px;
    }
    
    .order-btn {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
    }
    
    .product-info h4 {
        font-size: 1rem;
    }
    
    .product-desc {
        font-size: 0.8rem;
    }
    
    .nutrition-tag {
        font-size: 0.65rem;
        padding: 3px 8px;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-cta {
        padding: 2rem;
    }
    
    .whatsapp-sticky {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
    
    /* Delivery tabs mobile */
    .delivery-tab {
        font-size: 0.9rem;
        padding: 0.9rem 1.2rem;
    }
    
    .delivery-tab i {
        font-size: 1rem;
    }
    
    .notice-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .delivery-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* Cart mobile */
    .cart-header {
        padding: 1rem;
    }
    
    .cart-header h3 {
        font-size: 1.2rem;
    }
    
    .cart-items, .cart-summary {
        padding: 1rem;
    }
    
    .cart-item {
        padding: 0.8rem;
    }
}