/* Footer styling */
footer {
    text-align: center;
    padding: 2rem 5%;
    background-color: var(--white);
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
}

footer p { margin-top: 0.75rem; }
:root {
    /* Canva template exact colors */
    --primary-pink: #ffd4d4;
    --soft-pink: #ffe4e9;
    --peach: #ffd8c4;
    --cream: #fff5e6;
    --warm-beige: #f7e3d2;
    --dark-brown: #8b4513;
    --soft-brown: #a6785d;
    --caramel: #d9a25f;
    --text-color: #4b3b36;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --border-color: #f7e3d2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--primary-pink);
    line-height: 1.6;
}

/* Canva-inspired soft gradient background - matching template */
body.site-bg {
    background: linear-gradient(180deg, #ffd4d4 0%, #ffd8c4 50%, #fff5e6 100%);
    background-attachment: fixed;
}

/* Main content wrapper - centered like Canva template */
.canva-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

nav {
    background-color: var(--white);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Glassy nav variant inspired by Canva aesthetic */
nav.nav--glass {
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--warm-beige);
    box-shadow: 0 6px 20px rgba(166, 120, 93, 0.10);
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.logo-box {
    /* Much larger for prominent branding */
    width: 568px;
    height: 568px;
    overflow: hidden;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.site-logo {
    /* show full logo inside the box instead of cropping */
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transform: none;
}

/* Top banner logo (large, centered above hero) */
.top-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.2rem 5%;
    background: var(--white);
}

.top-logo-img {
    max-width: 420px;
    width: 40%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Logo placed inside the hero (replaces the Shop Online heading) */
.hero-logo {
    /* Reduce overall size by ~20% from the previous larger setting */
    max-width: 460px;
    width: 43%;
    height: auto;            /* preserve intrinsic ratio */
    object-fit: contain;     /* no cropping */
    display: inline-block;   /* center via text-align on container */
    margin: 0.75rem 0;       /* breathing room above/below */
    /* Improve lettering visibility with subtle dual shadows: soft light glow + soft dark lift */
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.18)) drop-shadow(0 0 8px rgba(255,255,255,0.85));
}

/* Generic logo styling for any <img class="logo"> elements */
img.logo {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Tight crop for hero logo: trims top and bottom to remove extra margins */
.hero-logo.crop-tight {
    /* Adjustable crop amounts; tweak these to align right at the black line */
    --crop-top: 8%;
    --crop-bottom: 8%;
    -webkit-clip-path: inset(var(--crop-top) 0 var(--crop-bottom) 0);
            clip-path: inset(var(--crop-top) 0 var(--crop-bottom) 0);
    /* Use cover so the logo fills its box when cropped */
    object-fit: cover;
}

/* Tight crop for hero logo: trims top and bottom to remove extra margins */
.hero-logo.crop-tight {
    /* Adjustable crop amounts; tweak these to align right at the black line */
    --crop-top: 8%;
    --crop-bottom: 8%;
    -webkit-clip-path: inset(var(--crop-top) 0 var(--crop-bottom) 0);
            clip-path: inset(var(--crop-top) 0 var(--crop-bottom) 0);
    /* Use cover so the logo fills its box when cropped */
    object-fit: cover;
    /* Remove extra vertical spacing but keep horizontal centering */
    margin: 0 auto;
}

@media (max-width: 768px) {
    .top-logo-img { width: 60%; max-width: 260px; }
    /* Larger on mobile but capped so it fits nicely */
    .hero-logo { width: 58%; max-width: 260px; }
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    margin-left: 2rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.nav-links a:hover {
    background-color: var(--warm-beige);
    color: var(--soft-brown);
}

.nav-links a.active {
    background-color: var(--caramel);
    color: var(--white);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.hero {
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), var(--primary-pink);
    padding: 6rem 5%;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Canva hero variant: full-width showcase matching template exactly */
.canva-hero {
    margin: 0;
    padding: 4rem 5%;
    background: linear-gradient(180deg, rgba(255, 212, 212, 0.8) 0%, rgba(255, 216, 196, 0.8) 100%);
    text-align: center;
}

.canva-hero h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 5rem;
    color: #8b4513;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.canva-hero .tagline {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Product showcase grid - EXACTLY like Canva with images */
.product-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 0 auto 3rem auto;
    max-width: 1100px;
}

.showcase-item {
    background: var(--white);
    padding: 0;
    border-radius: 20px;
    border: 3px solid #8b4513;
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.2);
    overflow: hidden;
    text-align: center;
}

.showcase-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 3px solid #8b4513;
}

/* Optionally zoom out an image inside the showcase by 25% (show more of the photo) */
.showcase-item img.zoom-75 {
    transform: scale(0.75);
    transform-origin: center center;
    display: block; /* ensure centering works consistently */
    margin: 0 auto;
}

.showcase-item-content {
    padding: 1.5rem;
}

.showcase-item h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #8b4513;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.showcase-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-color);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Service info cards (Local, Delivery, Custom orders) - matching Canva */
.service-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem auto 3rem auto;
    max-width: 1100px;
}

.service-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    border: 3px solid #8b4513;
    text-align: center;
    box-shadow: 0 6px 15px rgba(139, 69, 19, 0.15);
}

.service-card h4 {
    color: #8b4513;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.service-card p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 500;
}

/* Large CTA section for "Order Online" - matching Canva template */
.order-cta-section {
    background: linear-gradient(135deg, #ffd4d4 0%, #ffd8c4 100%);
    padding: 4rem 5%;
    text-align: center;
    margin: 3rem 0;
    border-top: 4px solid #8b4513;
    border-bottom: 4px solid #8b4513;
}

.order-cta-section h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 4.5rem;
    color: #8b4513;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.order-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.order-cta-section .cta-button {
    font-size: 1.4rem;
    padding: 1.3rem 3.5rem;
    background: #8b4513;
    border: 3px solid #6d3510;
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
}

.hero h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--soft-brown);
    font-weight: 700;
}

.hero h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

/* Typographic brand block in hero */
.brand { margin-bottom: 1.25rem; }
.brand-title {
    font-family: 'White Star', 'Dancing Script', cursive;
    font-size: 4.2rem; /* +40% from 3rem */
    line-height: 1.1;
    color: var(--soft-brown);
}
.brand-subtitle {
    font-family: 'Moon Jelly', 'Poppins', sans-serif;
    font-size: 2.2rem;
    line-height: 1.1;
    color: var(--soft-brown);
    margin-top: 0.25rem;
}
.brand-tagline {
    margin-top: 0.5rem;
    font-family: 'White Star', 'Poppins', sans-serif;
    font-size: 1.05rem;
    color: var(--text-color);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto 2rem auto;
    line-height: 1.8;
}

.cta-button {
    background-color: var(--caramel);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(217, 162, 95, 0.3);
}

.cta-button:hover {
    background-color: var(--soft-brown);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(166, 120, 93, 0.4);
}

.menu-section {
    padding: 4rem 5%;
    text-align: center;
}

.menu-section h2 {
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

/* Canva-styled content cards and grids */
.canva-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5%;
}

.section.card {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--warm-beige);
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(166, 120, 93, 0.12);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
    border: 1.5px solid #e0c9a6;
}

.btn-brown {
    background: #8b4513;
    color: #fff;
    padding: 0.65rem 0.9rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    transition: background 0.2s ease, transform 0.1s ease;
}

.btn-brown:hover { background: #6d3510; transform: translateY(-1px); }

.btn-green {
    background: #155724;
    color: #fff;
    padding: 0.9rem 1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.05rem;
    width: 100%;
}

.card-soft {
    background: #fff8f0;
    border: 1.5px solid #e0c9a6;
    border-radius: 12px;
    padding: 1.25rem;
}

.cart {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #fff;
    border: 2px solid #8b4513;
    border-radius: 10px;
}

.policy-card {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f9f3e8;
    border-left: 4px solid #8b4513;
    border-radius: 8px;
}

.section {
    padding: 4rem 5%;
    text-align: center;
}

.section h2 {
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-family: 'Dancing Script', cursive;
    color: var(--soft-brown);
    font-weight: 700;
}

/* Full-width menu image */
.menu-image {
    display: block;
    width: 50%; /* roughly half the container width on larger screens */
    max-width: 600px; /* cap the size so it stays modest */
    height: auto;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Order Form Styles */
.order-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--warm-beige);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--caramel);
    box-shadow: 0 0 0 3px rgba(217, 162, 95, 0.2);
}

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

.submit-btn {
    background-color: var(--caramel);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(217, 162, 95, 0.3);
}

.submit-btn:hover {
    background-color: var(--soft-brown);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(166, 120, 93, 0.4);
}

/* Order status message */
#order-status {
    font-size: 0.95rem;
}

/* Order free shipping note */
.order-free-shipping {
    text-align: center;
    margin-top: 0.75rem;
    color: var(--soft-brown);
    font-weight: 600;
}

/* Contact Styles */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Recipe Styles */
.recipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.recipe-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.recipe-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.recipe-btn {
    background-color: var(--warm-beige);
    color: var(--soft-brown);
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 20px;
    margin-top: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.recipe-btn:hover {
    background-color: var(--caramel);
    color: var(--white);
    transform: scale(1.05);
}

/* Design Styles */
.design-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.design-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.design-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* About Section Styles */
.about-section {
    background-color: var(--white);
    padding: 5rem 5%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin: 2rem 0;
}

.about-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    align-items: center;
}

.about-image {
    flex: 1;
    min-width: 300px;
    max-width: 420px;
}

.image-placeholder {
    background-color: var(--primary-pink);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
}

.about-image img,
.about-photo {
    width: 100%;
    height: auto;
    object-fit: contain; /* show the full image without cropping */
    border-radius: 12px;
    display: block;
}

.about-content {
    flex: 2;
}

.about-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn {
    background-color: var(--caramel);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(217, 162, 95, 0.3);
}

.btn:hover {
    background-color: var(--soft-brown);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(166, 120, 93, 0.4);
}

/* Contact action buttons under Get in Touch */
.contact-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

/* Social icons in hero */
.social-icons {
    margin-top: 1rem;
    display: inline-flex;
    gap: 0.75rem;
}

.social-icons a {
    color: var(--soft-brown);
    background: var(--white);
    border-radius: 999px;
    padding: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.social-icons a:hover {
    transform: translateY(-2px);
    color: var(--caramel);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

/* Align social icons nicely when used inside nav */
nav .social-icons { margin-top: 0; }

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero h1 {
        font-size: 2rem;
    }

    .brand-title { font-size: 3.1rem; } /* +40% from 2.2rem */
    .brand-subtitle { font-size: 1.6rem; }
    .brand-tagline { font-size: 0.95rem; }

    .hero-canva {
        max-height: 45vh; /* keep image readable on smaller screens */
        border-radius: 10px;
    }
    
    .section h2 {
        font-size: 2rem;
    }

    .about-container {
        flex-direction: column;
        gap: 2rem;
    }

    .about-image {
        min-width: 100%;
    }

    .about-cta {
        justify-content: center;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on mobile */
    }
    /* Keep the nav logo at reasonable size on small screens */
    .logo-box {
        width: 284px;
        height: 284px;
    }
    
    /* On mobile, use most of the width for readability */
    .menu-image {
        width: 95%;
        max-width: none;
    }
}

/* ===========================
   LOCAL ORDERING STYLES
   =========================== */

/* Local Ordering CTA on Homepage */
.local-ordering-cta {
    text-align: center;
    margin: 2rem auto;
    padding: 2rem;
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border-radius: 15px;
    max-width: 800px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.local-order-button {
    display: inline-block;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
}

.local-order-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    background: linear-gradient(135deg, #20c997, #28a745);
}

.local-order-subtitle {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: #155724;
    font-weight: 600;
}

/* Local Ordering Page Styles */
.local-order-hero {
    background: linear-gradient(135deg, var(--soft-pink), var(--peach));
    padding: 3rem 5%;
    text-align: center;
    border-bottom: 4px solid var(--dark-brown);
}

.local-order-hero h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--dark-brown);
    margin-bottom: 1rem;
    font-weight: 600;
}

.local-delivery-info {
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem 2rem;
    border-radius: 10px;
    display: inline-block;
    margin-top: 1rem;
    border: 2px solid var(--dark-brown);
}

.menu-container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.holiday-menu-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    border: 3px solid var(--dark-brown);
}

.local-order-form-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.local-order-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border: 2px solid var(--dark-brown);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--peach);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--dark-brown);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.policy-card {
    background: var(--cream);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid var(--peach);
    margin: 2rem 0;
    text-align: center;
}

.policy-card h3 {
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.submit-btn {
    background: linear-gradient(135deg, var(--dark-brown), #654321);
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

.contact-item {
    margin: 2rem 0;
}

.contact-item h3 {
    color: var(--dark-brown);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--dark-brown);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Mobile Responsiveness for Local Ordering */
@media (max-width: 768px) {
    .local-order-hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .local-order-button {
        font-size: 1.1rem;
        padding: 0.9rem 2rem;
    }
    
    .local-order-form {
        padding: 1.5rem;
    }
    
    .submit-btn {
        font-size: 1.1rem;
        padding: 0.9rem 2rem;
    }
}

/* ===========================
   HOLIDAY GIFT BASKET STYLES
   =========================== */

#holiday-gift-basket {
    background: linear-gradient(135deg, var(--cream), var(--soft-pink));
    padding: 3rem 5%;
    margin-bottom: 2rem;
}

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

.basket-header {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.basket-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    border: 3px solid var(--dark-brown);
    object-fit: cover;
}

.basket-intro {
    flex: 1;
    min-width: 300px;
}

.basket-intro h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.8rem;
    color: var(--dark-brown);
    margin-bottom: 1rem;
}

.basket-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
}

.basket-details {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border: 2px solid var(--dark-brown);
}

.basket-details h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    color: var(--dark-brown);
    margin-bottom: 1rem;
    text-align: center;
}

.basket-details h3 {
    font-size: 1.5rem;
    color: var(--dark-brown);
    margin: 2rem 0 1rem 0;
    text-align: center;
}

.basket-category {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--cream);
    border-radius: 10px;
    border: 2px solid var(--peach);
}

.basket-category h4 {
    font-size: 1.3rem;
    color: var(--dark-brown);
    margin-bottom: 1rem;
}

.basket-category ul {
    list-style: none;
    padding-left: 0;
}

.basket-category ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

.basket-category ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.basket-packaging {
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border-radius: 10px;
    text-align: center;
}

.basket-packaging h3 {
    margin-top: 0;
}

.basket-packaging p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.basket-order-cta {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--soft-pink), var(--peach));
    border-radius: 15px;
}

/* Mobile Responsiveness for Gift Basket */
@media (max-width: 768px) {
    .basket-header {
        flex-direction: column;
        align-items: center;
    }
    
    .basket-image {
        max-width: 100%;
    }
    
    .basket-intro h1 {
        font-size: 2rem;
        text-align: center;
    }
    
    .basket-details {
        padding: 1.5rem;
    }
    
    .basket-details h2 {
        font-size: 1.8rem;
    }
    
    .basket-category {
        padding: 1rem;
    }
}