/* ===== CSS RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== CSS VARIABLES ===== */
:root {
    /* Colors - Updated color scheme with warm coral */
    --primary-color: #E87461;        /* Warm coral primary color */
    --secondary-color: #2C5530;      /* Dark green from logo text */
    --accent-color: #FFBD00;         /* Golden yellow accent for highlights */
    --text-dark: #2C5530;            /* Match logo green for headings */
    --text-light: #4a5568;
    --text-muted: #718096;
    --bg-white: #FAF8F5;             /* Warm cream/beige background */
    --bg-light: #FFF5F3;             /* Warm off-white to complement coral */
    --bg-gray: #FFF0ED;              /* Subtle warm peachy tone for cards/tags */
    --border-color: #FFC9BE;         /* Light coral border */
    --success-color: #48bb78;
    --warning-color: #ed8936;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --container-width: 1400px;
    --container-width-xl: 1600px;
    --section-padding: 80px 0;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* ===== BACKGROUND PATTERNS ===== */
/* Subtle food-related decorative patterns */

.pattern-spices {
    position: relative;
}

.pattern-spices::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.18;
    pointer-events: none;
    background-image:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23E87461' fill-opacity='1'%3E%3Ccircle cx='10' cy='10' r='1.5'/%3E%3Ccircle cx='45' cy='25' r='1'/%3E%3Ccircle cx='30' cy='45' r='1.5'/%3E%3Cpath d='M15 35 Q 17 33 19 35 T 23 35' stroke='%23E87461' fill='none' stroke-width='0.5'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 60px 60px;
    z-index: 0;
}

.pattern-leaves {
    position: relative;
}

.pattern-leaves::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.15;
    pointer-events: none;
    background-image:
        url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%232C5530' fill-opacity='1'%3E%3Cpath d='M20 25 Q 22 20 24 25 T 28 25' stroke='%232C5530' fill='none' stroke-width='0.8'/%3E%3Cpath d='M55 50 Q 57 45 59 50 T 63 50' stroke='%232C5530' fill='none' stroke-width='0.8'/%3E%3Cellipse cx='35' cy='65' rx='2' ry='3' fill='%232C5530'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 80px 80px;
    z-index: 0;
}

.pattern-mixed {
    position: relative;
}

.pattern-mixed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.12;
    pointer-events: none;
    background-image:
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Ccircle cx='15' cy='15' r='2' fill='%23E87461' opacity='0.6'/%3E%3Ccircle cx='75' cy='35' r='1.5' fill='%23E87461' opacity='0.6'/%3E%3Cpath d='M40 20 Q 42 18 44 20' stroke='%232C5530' fill='none' stroke-width='0.7' opacity='0.6'/%3E%3Cpath d='M60 70 Q 62 68 64 70' stroke='%232C5530' fill='none' stroke-width='0.7' opacity='0.6'/%3E%3Cellipse cx='25' cy='80' rx='1.5' ry='2' fill='%232C5530' opacity='0.6'/%3E%3Ccircle cx='85' cy='85' r='1' fill='%23E87461' opacity='0.6'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 100px 100px;
    z-index: 0;
}

/* Ensure content stays above pattern */
.pattern-spices > *,
.pattern-leaves > *,
.pattern-mixed > * {
    position: relative;
    z-index: 1;
}

/* ===== BASE STYLES ===== */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Container responsive adjustments */
@media (min-width: 1440px) {
    .container {
        max-width: var(--container-width-xl);
        padding: 0 40px;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 90%;
        padding: 0 60px;
    }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

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

/* ===== BUTTONS ===== */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary.large,
.btn-secondary.large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
    transition: all 0.3s ease-in-out;
}

/* Enhanced navbar styling when scrolled */
.navbar.scrolled {
    background-color: rgba(250, 248, 245, 0.98);
    box-shadow: 0 4px 12px rgba(232, 116, 97, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, #E87461, #FFC9BE) 1;
}

.navbar.scrolled .brand-logo {
    height: 60px;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Navigation responsive adjustments */
@media (min-width: 1440px) {
    .nav-container {
        max-width: var(--container-width-xl);
        padding: 0 40px;
    }
}

@media (min-width: 1920px) {
    .nav-container {
        max-width: 90%;
        padding: 0 60px;
    }
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-tagline {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Legacy support for old h1/span structure */
.nav-brand h1 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 0;
    font-family: var(--font-display);
}

.nav-brand span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

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

.order-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    transition: var(--transition);
}

.order-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* ===== SLIDESHOW SECTION ===== */
.slideshow {
    margin-top: 80px;
    position: relative;
    height: 500px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateX(50px);
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s ease-in-out;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
    max-width: var(--container-width);
    padding: 0 20px;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%);
}

.slide-content {
    padding: 3rem 2rem;
    text-align: center;
}

.slide-content h1 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.slide-content p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.slide-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 14px 28px;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
}

.slide-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.slide-media {
    padding: 2rem;
    text-align: center;
    position: relative;
}

.slide-media img,
.slide-media video {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.slide-media video {
    object-fit: cover;
    max-height: 350px;
}

.slide:hover .slide-media img,
.slide:hover .slide-media video {
    transform: scale(1.02);
}

/* Slide Navigation Dots */
.slide-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 100;
}

.slide-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: none;
    background-color: rgba(250, 248, 245, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slide-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(254, 209, 49, 0.5);
}

.slide-dot:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

/* Slide Arrows */
.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(250, 248, 245, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-arrow:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-md);
}

.slide-arrow.prev {
    left: 20px;
}

.slide-arrow.next {
    right: 20px;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.hero-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-content .highlight {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: var(--section-padding);
    background-color: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius);
    background-color: var(--bg-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.12;
    pointer-events: none;
    background-image:
        url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%232C5530' fill-opacity='1'%3E%3Cpath d='M20 25 Q 22 20 24 25 T 28 25' stroke='%232C5530' fill='none' stroke-width='0.8'/%3E%3Cpath d='M55 50 Q 57 45 59 50 T 63 50' stroke='%232C5530' fill='none' stroke-width='0.8'/%3E%3Cellipse cx='35' cy='65' rx='2' ry='3' fill='%232C5530'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 80px 80px;
    z-index: 0;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.feature p {
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

/* ===== PRODUCTS SECTION ===== */
.products {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

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

.section-header h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Products Scroll Container */
.products-scroll-container {
    position: relative;
    margin: 0 -20px;
}

.products-grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 1rem 20px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.products-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.product-card {
    flex: 0 0 320px; /* Fixed width for horizontal scroll */
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.08;
    pointer-events: none;
    background-image:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23E87461' fill-opacity='1'%3E%3Ccircle cx='10' cy='10' r='1.5'/%3E%3Ccircle cx='45' cy='25' r='1'/%3E%3Ccircle cx='30' cy='45' r='1.5'/%3E%3Cpath d='M15 35 Q 17 33 19 35 T 23 35' stroke='%23E87461' fill='none' stroke-width='0.5'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 60px 60px;
    z-index: 0;
}

/* Products Scroll Buttons */
.products-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(250, 248, 245, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 2;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.products-scroll-btn:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.products-scroll-btn.prev {
    left: 10px;
}

.products-scroll-btn.next {
    right: 10px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

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

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

.product-info {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.product-info p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.product-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.tag {
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.serving {
    color: var(--primary-color);
    font-weight: 500;
    font-style: italic;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: var(--section-padding);
    background-color: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: var(--border-radius-sm);
}

.stat h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0;
}

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

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    pointer-events: none;
    background-image:
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Ccircle cx='15' cy='15' r='2' fill='%23E87461' opacity='0.6'/%3E%3Ccircle cx='75' cy='35' r='1.5' fill='%23E87461' opacity='0.6'/%3E%3Cpath d='M40 20 Q 42 18 44 20' stroke='%232C5530' fill='none' stroke-width='0.7' opacity='0.6'/%3E%3Cpath d='M60 70 Q 62 68 64 70' stroke='%232C5530' fill='none' stroke-width='0.7' opacity='0.6'/%3E%3Cellipse cx='25' cy='80' rx='1.5' ry='2' fill='%232C5530' opacity='0.6'/%3E%3Ccircle cx='85' cy='85' r='1' fill='%23E87461' opacity='0.6'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 100px 100px;
    z-index: 0;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.step p {
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

/* ===== CTA SECTION ===== */
.cta {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.15;
    pointer-events: none;
    background-image:
        url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Ccircle cx='20' cy='20' r='3' fill='%23ffffff' opacity='0.8'/%3E%3Ccircle cx='90' cy='40' r='2' fill='%23ffffff' opacity='0.8'/%3E%3Cpath d='M50 30 Q 53 27 56 30' stroke='%23ffffff' fill='none' stroke-width='1' opacity='0.8'/%3E%3Cpath d='M70 90 Q 73 87 76 90' stroke='%23ffffff' fill='none' stroke-width='1' opacity='0.8'/%3E%3Cellipse cx='30' cy='100' rx='2' ry='3' fill='%23ffffff' opacity='0.8'/%3E%3Ccircle cx='100' cy='100' r='1.5' fill='%23ffffff' opacity='0.8'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 120px 120px;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta .btn-primary {
    background-color: var(--bg-white);
    color: var(--secondary-color);
    border-color: var(--bg-white);
    position: relative;
    z-index: 1;
}

.cta .btn-primary:hover {
    background-color: transparent;
    color: white;
    border-color: white;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Desktop Screens */
@media (min-width: 1200px) {
    /* Navigation */
    .nav-brand h1 {
        font-size: 2rem;
    }
    
    .nav-brand span {
        font-size: 0.9rem;
    }
    
    .nav-menu {
        gap: 2.5rem;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
    }
    
    .order-btn {
        font-size: 1rem;
        padding: 12px 24px;
    }
    
    /* Content */
    .slideshow {
        height: 600px;
    }
    
    .slide-content h1 {
        font-size: 3.5rem;
    }
    
    .slide-content p {
        font-size: 1.4rem;
    }
    
    .product-card {
        flex: 0 0 380px;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
    }
}

/* Extra Large Desktop Screens */
@media (min-width: 1440px) {
    /* Navigation */
    .nav-brand h1 {
        font-size: 2.2rem;
    }
    
    .nav-brand span {
        font-size: 1rem;
    }
    
    .nav-menu {
        gap: 3rem;
    }
    
    .nav-menu a {
        font-size: 1.15rem;
    }
    
    .order-btn {
        font-size: 1.1rem;
        padding: 14px 28px;
    }
    
    /* Content */
    .slideshow {
        height: 650px;
    }
    
    .slide-content {
        padding: 4rem 3rem;
    }
    
    .product-card {
        flex: 0 0 420px;
    }
    
    .products-grid {
        gap: 2.5rem;
    }
}

/* Ultra Wide Screens */
@media (min-width: 1920px) {
    /* Navigation */
    .nav-brand h1 {
        font-size: 2.5rem;
    }
    
    .nav-brand span {
        font-size: 1.1rem;
    }
    
    .nav-menu {
        gap: 3.5rem;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
    }
    
    .order-btn {
        font-size: 1.15rem;
        padding: 16px 32px;
    }
    
    /* Content */
    .slideshow {
        height: 700px;
    }
    
    .product-card {
        flex: 0 0 450px;
    }
    
    .products-grid {
        gap: 3rem;
    }
    
    .section-padding {
        padding: 100px 0;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .hamburger {
        display: flex;
    }

    .brand-logo {
        height: 60px;
    }

    .brand-tagline {
        font-size: 0.7rem;
    }

    .navbar.scrolled .brand-logo {
        height: 50px;
    }

    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu a::after {
        display: none;
    }
    
    /* Typography */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    /* Slideshow */
    .slideshow {
        height: 400px;
    }
    
.slide {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
        left: 50%;
        transform: translateX(-50%) translateX(50px);
    }
    
    .slide.active {
        transform: translateX(-50%);
    }
    
    .slide-content {
        padding: 2rem 1rem;
    }
    
    .slide-content h1 {
        font-size: 2.2rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .slide-media {
        padding: 1rem;
    }
    
    .slide-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .slide-arrow.prev {
        left: 10px;
    }
    
    .slide-arrow.next {
        right: 10px;
    }
    
    /* Products Horizontal Scroll - Mobile */
    .products-scroll-container {
        margin: 0 -10px;
    }
    
    .products-grid {
        padding: 1rem 10px;
        gap: 1.5rem;
    }
    
    .product-card {
        flex: 0 0 280px; /* Smaller width for mobile */
    }
    
    .products-scroll-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .products-scroll-btn.prev {
        left: 5px;
    }
    
    .products-scroll-btn.next {
        right: 5px;
    }

    /* Hero */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    /* Sections */
    :root {
        --section-padding: 60px 0;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }