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

:root {
    --cream: #FAF7F0;
    --warm-brown: #6B5636;
    --deep-brown: #4A3422;
    --terracotta: #B0643F;
    --sage: #A4B494;
    --butter: #F4E4C1;
    --light-sage: #D4E2D4;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Questrial', sans-serif;
    background: var(--cream);
    color: var(--deep-brown);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Fix for section headers on light backgrounds */
section[style*="background: var(--butter)"] .section-header-center h2,
section[style*="background: white"] .section-header-center h2 {
    color: var(--deep-brown);
}

section[style*="background: var(--butter)"] .section-header-center p,
section[style*="background: white"] .section-header-center p {
    color: var(--warm-brown);
}

/* ============================================
   ABOUT BTS SECTION
   ============================================ */

.behind-scenes .section-header-center .section-label {
    color: var(--terracotta); /* or use a darker color like var(--deep-brown) */
}

.behind-scenes .section-header-center h2 {
    color: var(--deep-brown); /* Already should be dark, but ensures it */
}

.behind-scenes .section-header-center p {
    color: #555; /* Darker gray instead of the lighter brown */
}
/* ============================================
   PHILOSOPHY SECTION
   ============================================ */

.philosophy {
    padding: 8rem 0;
    background: var(--butter);
}

.philosophy-content {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 3rem;
    align-items: start;
}

.philosophy-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.philosophy-text .section-label {
    color: var(--terracotta);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.philosophy-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--deep-brown);
    margin-bottom: 2rem;
}

.philosophy-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.philosophy-image {
    width: 100%;
    padding-top: 2rem; /* Adjust this value as needed */
}

.philosophy-image img {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.philosophy-values {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.value-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--deep-brown);
    margin-bottom: 1rem;
}

.value-item p {
    color: #666;
    line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 968px) {
    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .philosophy-image img {
        min-height: 300px;
    }
}
/* ============================================
   TEAM SECTION
   ============================================ */

.team-section {
    padding: 8rem 0;
    background: var(--butter);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem 3rem;
    margin-top: 5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.team-member {
    text-align: center;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    overflow: hidden;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--deep-brown);
    margin-bottom: 0.5rem;
}

.team-title {
    font-size: 1.1rem;
    color: var(--warm-brown);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.team-bio {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.team-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.team-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--deep-brown);
    color: white;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.team-social a:hover {
    background: var(--terracotta);
    transform: translateY(-2px);
}
.team-section .section-header-center .section-label {
    color: #8b6f47; /* Light brown/tan for "MEET THE TEAM" */
}

.team-section .section-header-center h2 {
    color: #4a3422; /* Dark brown for "Our Team" */
}

.team-section .section-header-center p {
    color: #8b6f47; /* Light brown/tan for the description */
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}
/* ============================================
   INSTAGRAM SECTION
   ============================================ */

.instagram-section {
    padding: 6rem 0 7rem;
    background: var(--butter);
}

.instagram-section .section-header-center {
    margin-bottom: 3rem;
}

.instagram-section .section-header-center h2 {
    color: var(--deep-brown);
}

.instagram-section .section-header-center p {
    color: var(--warm-brown);
}

.instagram-feed-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
    background: var(--cream);
    border: 1px solid rgba(139, 111, 71, 0.15);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(74, 52, 34, 0.08);
}

.instagram-cta {
    text-align: center;
    margin-top: 3rem;
}

.instagram-section .section-header-center h2 {
    color: #333; /* Dark gray for heading */
}

.instagram-section .section-header-center p {
    color: #666; /* Medium gray for description */
}

/* Constrain the width of the Load More banner */
.eapps-instagram-feed-posts-grid-load-more-container {
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
/* ============================================
   ELFSIGHT INSTAGRAM FEED STYLING
   ============================================ */

/* Override Elfsight widget styles */
.elfsight-app-65e9af00-bd31-465c-80c0-a03279f46e2c {
    font-family: 'Questrial', sans-serif !important;
}

/* Instagram feed header text */
.elfsight-app-65e9af00-bd31-465c-80c0-a03279f46e2c h2,
.elfsight-app-65e9af00-bd31-465c-80c0-a03279f46e2c h3,
.elfsight-app-65e9af00-bd31-465c-80c0-a03279f46e2c .eapps-instagram-feed-title {
    font-family: 'Cormorant Garamond', serif !important;
    color: var(--deep-brown) !important;
    font-weight: 600 !important;
}

/* Instagram feed body text */
.elfsight-app-65e9af00-bd31-465c-80c0-a03279f46e2c p,
.elfsight-app-65e9af00-bd31-465c-80c0-a03279f46e2c span,
.elfsight-app-65e9af00-bd31-465c-80c0-a03279f46e2c a {
    font-family: 'Questrial', sans-serif !important;
    color: var(--warm-brown) !important;
}

/* Instagram feed background */
.elfsight-app-65e9af00-bd31-465c-80c0-a03279f46e2c {
    background: transparent !important;
}

/* Hide widget header, follow prompts, and footer for cleaner layout */
.elfsight-app-65e9af00-bd31-465c-80c0-a03279f46e2c .eapps-instagram-feed-header,
.elfsight-app-65e9af00-bd31-465c-80c0-a03279f46e2c .eapps-instagram-feed-title,
.elfsight-app-65e9af00-bd31-465c-80c0-a03279f46e2c .eapps-instagram-feed-text,
.elfsight-app-65e9af00-bd31-465c-80c0-a03279f46e2c .eapps-instagram-feed-follow-button-container,
.elfsight-app-65e9af00-bd31-465c-80c0-a03279f46e2c .eapps-instagram-feed-footer,
.elfsight-app-65e9af00-bd31-465c-80c0-a03279f46e2c .eapps-instagram-feed-footer-container {
    display: none !important;
}

/* Instagram card hover effects */
.elfsight-app-65e9af00-bd31-465c-80c0-a03279f46e2c .eapps-instagram-feed-item {
    transition: transform 0.3s ease !important;
}

.elfsight-app-65e9af00-bd31-465c-80c0-a03279f46e2c .eapps-instagram-feed-item:hover {
    transform: translateY(-5px) !important;
}

/* ============================================
   LOAD MORE BUTTON STYLING - FIXED
   Replace lines 314-380 in styles.css with this
   ============================================ */

/* First, reset the wrapper/container to be invisible */
.elfsight-app-65e9af00-bd31-465c-80c0-a03279f46e2c [class*="load-more"],
.elfsight-app-65e9af00-bd31-465c-80c0-a03279f46e2c [class*="more-wrap"],
.elfsight-app-65e9af00-bd31-465c-80c0-a03279f46e2c .eapps-instagram-feed-posts-more,
.eapps-instagram-feed-posts-grid-load-more-container {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

/* Now style ONLY the actual button element */
.elfsight-app-65e9af00-bd31-465c-80c0-a03279f46e2c button {
    background: var(--terracotta) !important;
    color: white !important;
    font-family: 'Questrial', sans-serif !important;
    border: 2px solid var(--terracotta) !important;
    padding: 1rem 2.5rem !important;
    border-radius: 0 !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
    margin: 2rem auto 0 !important;
    min-width: 200px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    line-height: 1.2 !important;
    outline: none !important;
    box-shadow: none !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Button text styling */
.elfsight-app-65e9af00-bd31-465c-80c0-a03279f46e2c button span,
.elfsight-app-65e9af00-bd31-465c-80c0-a03279f46e2c button div {
    color: white !important;
    background: transparent !important;
    border: none !important;
}

/* Hover state */
.elfsight-app-65e9af00-bd31-465c-80c0-a03279f46e2c button:hover,
.elfsight-app-65e9af00-bd31-465c-80c0-a03279f46e2c button:focus,
.elfsight-app-65e9af00-bd31-465c-80c0-a03279f46e2c button:active {
    background: var(--deep-brown) !important;
    border-color: var(--deep-brown) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    outline: none !important;
    box-shadow: 0 4px 12px rgba(74, 52, 34, 0.2) !important;
}

/* Hide the Elfsight branding link */
.elfsight-app-65e9af00-bd31-465c-80c0-a03279f46e2c a[href*="elfsight"],
.eapps-link {
    display: none !important;
}

/* Grain texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(139, 111, 71, 0.03) 2px, rgba(139, 111, 71, 0.03) 4px);
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}

/* Container Utilities */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.container-wide {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 247, 240, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 5%;
    z-index: 1000;
    border-bottom: 1px solid rgba(139, 111, 71, 0.2);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 1rem 5%;
    box-shadow: 0 4px 20px rgba(74, 52, 34, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: block;
    line-height: 0;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.logo img {
    height: 120px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

/* Smaller logo on mobile */
@media (max-width: 768px) {
    .logo img {
        height: 50px;
    }
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--warm-brown);
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--terracotta);
}

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

.btn-nav {
    padding: 0.85rem 1.75rem; /* Increased from 0.75rem 1.5rem */
    background: var(--terracotta);
    color: white;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid var(--terracotta);
}

.btn-nav:hover {
    background: var(--deep-brown);
    border-color: var(--deep-brown);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 52, 34, 0.3);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--deep-brown);
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    border: none;
    cursor: pointer;
    font-family: 'Questrial', sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--terracotta);
    color: white;
    border: 2px solid var(--terracotta);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--deep-brown);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-primary:hover {
    border-color: var(--deep-brown);
}

.btn-primary:hover::before {
    left: 0;
}

.btn-secondary {
    background: transparent;
    color: var(--warm-brown);
    border: 2px solid var(--warm-brown);
}

.btn-secondary:hover {
    background: var(--warm-brown);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 111, 71, 0.3);
}

.hero-home {
    padding-top: 180px;
    padding-bottom: 10rem; /* Increased from 4rem */
    min-height: 100vh; /* Changed from 90vh if you haven't already */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--butter) 0%, var(--cream) 50%, #F0E7D8 100%);
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(201, 124, 93, 0.12) 0%, transparent 70%);
    animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: rotate(-15deg) translateY(0) scale(1); }
    50% { transform: rotate(-15deg) translateY(-30px) scale(1.05); }
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.hero-label {
    display: inline-block;
    color: var(--warm-brown);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.hero-home h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 300;
    color: var(--deep-brown);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: 1px;
}

.hero-home h1 .line {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-home h1 .line:nth-child(1) {
    animation-delay: 0.5s;
}

.hero-home h1 .line:nth-child(2) {
    animation-delay: 0.7s;
}

.hero-home h1 .line.highlight {
    font-weight: 700;
    color: var(--warm-brown);
    animation-delay: 0.9s;
}

.hero-home p {
    font-size: 1.2rem;
    color: var(--warm-brown);
    margin-bottom: 3rem;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.1s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.3s forwards;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s ease-out 2s forwards;
}

.scroll-indicator span {
    display: block;
    font-size: 0.85rem;
    color: var(--warm-brown);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--terracotta);
    margin: 0 auto;
    position: relative;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid var(--terracotta);
    border-right: 2px solid var(--terracotta);
    transform: rotate(45deg);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Features Section */
.features {
    padding: 8rem 0;
    background: white;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--sage), transparent);
}

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

.feature-card {
    background: var(--cream);
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 124, 93, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--terracotta);
    box-shadow: 0 20px 40px rgba(74, 52, 34, 0.15);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--deep-brown);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--warm-brown);
    line-height: 1.8;
}

/* Story Preview Section */
.story-preview {
    padding: 8rem 0;
    background: var(--butter);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.story-images {
    position: relative;
    height: 600px;
}

.story-image {
    position: absolute;
    overflow: hidden;
    box-shadow: 20px 20px 0 rgba(164, 180, 148, 0.3);
}

.story-image.main-image {
    width: 70%;
    height: 80%;
    top: 0;
    left: 0;
    z-index: 2;
}

.story-image.overlay-image {
    width: 50%;
    height: 60%;
    bottom: 0;
    right: 0;
    z-index: 3;
    box-shadow: -15px -15px 0 rgba(201, 124, 93, 0.3);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.story-image:hover img {
    transform: scale(1.1);
}

.section-label {
    display: inline-block;
    color: var(--terracotta);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 600;
}

.story-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--deep-brown);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.story-content p {
    font-size: 1.1rem;
    color: var(--warm-brown);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-content .btn {
    margin-top: 2rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(139, 111, 71, 0.2);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--terracotta);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--warm-brown);
    letter-spacing: 1px;
}

/* Today's Specials */
.todays-specials {
    padding: 8rem 0;
    background: var(--deep-brown);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.todays-specials::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 124, 93, 0.15) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
    position: relative;
    z-index: 2;
}

.section-header-center h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--butter);
    margin-bottom: 1rem;
}

.section-header-center p {
    font-size: 1.1rem;
    color: rgba(250, 247, 240, 0.8);
}

.todays-specials .section-label {
    color: var(--terracotta);
}

.specials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.special-card {
    background: rgba(250, 247, 240, 0.05);
    padding: 3rem 2rem;
    border: 1px solid rgba(250, 247, 240, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.special-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--terracotta);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.special-card:hover {
    background: rgba(250, 247, 240, 0.1);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.special-card:hover::before {
    transform: scaleX(1);
}

.special-badge {
    display: inline-block;
    background: var(--terracotta);
    color: white;
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.special-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--cream);
    margin-bottom: 1rem;
    font-weight: 600;
}

.special-card p {
    color: rgba(250, 247, 240, 0.8);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.special-price {
    display: inline-block;
    color: var(--butter);
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Menu Preview */
.menu-preview {
    padding: 8rem 0;
    background: white;
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.menu-category {
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
    height: 350px;
    transition: transform 0.4s ease;
}

.menu-category:hover {
    transform: translateY(-5px);
}

/* Add this - you were missing it */
.menu-category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.menu-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.menu-category:hover .menu-category-image img {
    transform: scale(1.1);
}

/* Add this - you were missing it */
.menu-category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(74, 52, 34, 0.3), rgba(74, 52, 34, 0.8));
    transition: background 0.4s ease;
    z-index: 1;
}

.menu-category:hover .menu-category-overlay {
    background: linear-gradient(to bottom, rgba(74, 52, 34, 0.5), rgba(74, 52, 34, 0.9));
}

/* Add this - you were missing it */
.menu-category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2rem;
    color: white;
    z-index: 2;
    width: 100%;
}

.menu-category-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: transform 0.4s ease;
    color: white;
}

.menu-category:hover .menu-category-content h3 {
    transform: translateX(5px);
}

.menu-category-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    color: white;
}

.menu-arrow {
    font-size: 1.5rem;
    transition: transform 0.4s ease;
    display: inline-block;
    color: white;
}

.menu-category:hover .menu-arrow {
    transform: translateX(10px);
}

/* Responsive - 2 columns on tablets */
@media (max-width: 1024px) {
    .menu-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .menu-category {
        height: 400px;
    }
}

/* Responsive - 1 column on mobile */
@media (max-width: 768px) {
    .menu-categories {
        grid-template-columns: 1fr;
    }
}

/* Cakes Showcase */
.cakes-showcase {
    padding: 8rem 0;
    background: var(--light-sage);
}

.cakes-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.cakes-images {
    position: relative;
    height: 600px;
}

.cake-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    box-shadow: 20px 20px 0 rgba(201, 124, 93, 0.3);
}

.cake-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.cakes-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--deep-brown);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.cakes-text p {
    font-size: 1.1rem;
    color: var(--warm-brown);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cakes-features {
    list-style: none;
    margin: 2rem 0 3rem;
}

.cakes-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    color: var(--warm-brown);
    position: relative;
    font-size: 1.05rem;
}

.cakes-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--terracotta);
    font-weight: bold;
    font-size: 1.2rem;
}

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

.instagram-card {
    position: relative;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
    transition: transform 0.4s ease;
}

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

.instagram-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.instagram-card:hover img {
    transform: scale(1.1);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 52, 34, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.instagram-card:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay span {
    color: white;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Visit CTA */
.visit-cta {
    padding: 8rem 0;
    background: var(--deep-brown);
    color: var(--cream);
    text-align: center;
}

.visit-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--butter);
    margin-bottom: 1rem;
}

.visit-content > p {
    font-size: 1.2rem;
    color: rgba(250, 247, 240, 0.8);
    margin-bottom: 3rem;
}

.visit-hours {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.hours-item {
    text-align: center;
}

.hours-item strong {
    display: block;
    font-size: 1.2rem;
    color: var(--terracotta);
    margin-bottom: 0.5rem;
}

.hours-item span {
    font-size: 1.1rem;
    color: rgba(250, 247, 240, 0.9);
}

.visit-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
footer {
    background: var(--deep-brown);
    color: var(--cream);
    padding: 4rem 5% 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(250, 247, 240, 0.2);
    margin-bottom: 2rem;
}

.footer-about h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--butter);
    margin-bottom: 1rem;
}

.footer-about p {
    color: rgba(250, 247, 240, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.social-links a {
    color: var(--butter);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--terracotta);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--butter);
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: rgba(250, 247, 240, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--terracotta);
}

.footer-contact p {
    color: rgba(250, 247, 240, 0.7);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.footer-contact a {
    color: var(--terracotta);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
}

.footer-bottom p {
    color: rgba(250, 247, 240, 0.5);
    font-size: 0.9rem;
}

/* Scroll Reveal Animations */
[data-scroll-reveal] {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

[data-scroll-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

[data-scroll-reveal][data-delay="100"].revealed {
    transition-delay: 0.1s;
}

[data-scroll-reveal][data-delay="200"].revealed {
    transition-delay: 0.2s;
}

[data-scroll-reveal][data-delay="300"].revealed {
    transition-delay: 0.3s;
}

[data-scroll-reveal][data-delay="400"].revealed {
    transition-delay: 0.4s;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .story-grid,
    .cakes-content,
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-images,
    .cakes-images {
        height: 500px;
    }

    .visit-hours {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Page Hero - Generic */
/*.page-hero {
    margin-top: 80px;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--butter) 0%, var(--cream) 50%, #F0E7D8 100%);
    position: relative;
    overflow: hidden;
}*/
/* Page Hero - Generic */
.page-hero {
    padding-top: 180px; /* Increased from 150px */
    padding-bottom: 4rem;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--butter) 0%, var(--cream) 50%, #F0E7D8 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(201, 124, 93, 0.08) 0%, transparent 70%);
}

.page-hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.page-hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 600;
    color: var(--deep-brown);
    margin-bottom: 1rem;
    line-height: 1.1;
}

/* About Page Styles */
.about-story {
    padding: 8rem 0;
    background: white;
}

.story-intro {
    max-width: 800px;
    margin: 0 auto 5rem;
    text-align: center;
}

.story-intro h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--deep-brown);
    margin-bottom: 2rem;
}

.lead {
    font-size: 1.3rem;
    color: var(--warm-brown);
    line-height: 1.8;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--terracotta), var(--sage));
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 20px;
    width: 20px;
    height: 20px;
    background: var(--terracotta);
    border: 4px solid white;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-year {
    text-align: right;
    padding-right: 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--terracotta);
    opacity: 0.3;
}

.timeline-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--deep-brown);
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--warm-brown);
    line-height: 1.8;
    font-size: 1.05rem;
}

.philosophy {
    padding: 8rem 0;
    background: var(--butter);
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.philosophy-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    color: var(--deep-brown);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.philosophy-text p {
    font-size: 1.1rem;
    color: var(--warm-brown);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.philosophy-values {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    background: white;
    padding: 2rem;
    border-left: 4px solid var(--terracotta);
}

.value-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--deep-brown);
    margin-bottom: 0.75rem;
}

.value-item p {
    color: var(--warm-brown);
    line-height: 1.7;
}

.behind-scenes {
    padding: 8rem 0;
    background: white;
}

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

.scene-card {
    background: var(--cream);
    overflow: hidden;
    transition: transform 0.4s ease;
}

.scene-card:hover {
    transform: translateY(-10px);
}

.scene-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.scene-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.scene-card:hover .scene-image img {
    transform: scale(1.1);
}

.scene-content {
    padding: 2rem;
}

.scene-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--deep-brown);
    margin-bottom: 1rem;
}

.scene-content p {
    color: var(--warm-brown);
    line-height: 1.7;
}

.team-section {
    padding: 8rem 0;
    background: var(--light-sage);
}

.team-message {
    max-width: 900px;
    margin: 3rem auto 0;
    text-align: center;
}

.team-message p {
    font-size: 1.15rem;
    color: var(--warm-brown);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.why-choose {
    padding: 8rem 0;
    background: var(--deep-brown);
    color: var(--cream);
}

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

.why-item {
    text-align: center;
    padding: 2rem;
}

.why-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--terracotta);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.why-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--butter);
    margin-bottom: 1rem;
}

.why-item p {
    color: rgba(250, 247, 240, 0.8);
    line-height: 1.7;
}

.about-cta {
    padding: 8rem 0;
    background: var(--butter);
    text-align: center;
}

.about-cta-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--deep-brown);
    margin-bottom: 1rem;
}

.about-cta-content p {
    font-size: 1.2rem;
    color: var(--warm-brown);
    margin-bottom: 3rem;
}

.about-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding-left: 80px;
    }

    .timeline-item::before {
        left: 30px;
    }

    .timeline-year {
        text-align: left;
        padding-right: 0;
        font-size: 2rem;
    }

    .philosophy-content {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    header {
        padding: 1rem 5%;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 70px);
        background: rgba(250, 247, 240, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 3rem 2rem;
        gap: 2rem;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(139, 111, 71, 0.2);
    }

    .nav-links.active {
        right: 0;
    }

    .btn-nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-home {
        min-height: 80vh;
        margin-top: 70px;
    }

    .hero-buttons,
    .visit-buttons,
    .about-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .features-grid,
    .menu-categories,
    .instagram-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .story-image.main-image {
        width: 80%;
        height: 70%;
    }

    .story-image.overlay-image {
        width: 60%;
        height: 50%;
    }

    .timeline {
        padding-left: 0;
    }

    .timeline-item {
        padding-left: 60px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }
}
/* ============================================
   ORDERING SYSTEM STYLES
   Park Avenue Bakery - Menu, Cart, Checkout
   ============================================ */

/* ============================================
   MENU ORDERING SECTION
   ============================================ */

.menu-ordering {
    padding: 6rem 0;
    background: white;
}

.menu-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
}

/* Category Filters */
.category-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--cream);
    border: 2px solid var(--warm-brown);
    color: var(--warm-brown);
    font-family: 'Questrial', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--terracotta);
    border-color: var(--terracotta);
    color: white;
}

/* Menu Items Grid */
.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-item {
    background: var(--cream);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.menu-item-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.1);
}

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

.menu-item-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--deep-brown);
    margin-bottom: 0.5rem;
}

.menu-item-content p {
    color: var(--warm-brown);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.menu-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--terracotta);
}

.add-to-cart-btn {
    padding: 0.6rem 1.2rem;
    background: var(--terracotta);
    color: white;
    border: 2px solid var(--terracotta);
    font-family: 'Questrial', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.add-to-cart-btn:hover {
    background: var(--deep-brown);
    border-color: var(--deep-brown);
    transform: translateY(-2px);
}

/* Cart Sidebar */
.cart-sidebar {
    position: sticky;
    top: 120px;
    background: var(--cream);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--warm-brown);
}

.cart-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--deep-brown);
}

.cart-count {
    background: var(--terracotta);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.cart-items {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 1.5rem;
}

.empty-cart {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--warm-brown);
}

.empty-cart i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.empty-cart p {
    font-size: 1.1rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.cart-item:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--deep-brown);
    margin-bottom: 0.3rem;
}

.cart-item-price {
    color: var(--terracotta);
    font-weight: 600;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.quantity-btn {
    width: 25px;
    height: 25px;
    border: 1px solid var(--warm-brown);
    background: white;
    color: var(--warm-brown);
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: var(--terracotta);
    border-color: var(--terracotta);
    color: white;
}

.quantity {
    padding: 0 0.5rem;
    font-weight: 600;
    color: var(--deep-brown);
}

.remove-item {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--warm-brown);
    cursor: pointer;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.remove-item:hover {
    color: var(--terracotta);
}

.cart-footer {
    padding-top: 1.5rem;
    border-top: 2px solid var(--warm-brown);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.cart-total span:first-child {
    font-weight: 600;
    color: var(--deep-brown);
}

.total-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--terracotta);
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background: var(--terracotta);
    color: white;
    border: 2px solid var(--terracotta);
    font-family: 'Questrial', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.checkout-btn:not(:disabled):hover {
    background: var(--deep-brown);
    border-color: var(--deep-brown);
    transform: translateY(-2px);
}

.checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.clear-cart-btn {
    width: 100%;
    padding: 0.75rem;
    background: transparent;
    color: var(--warm-brown);
    border: 2px solid var(--warm-brown);
    font-family: 'Questrial', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-cart-btn:hover {
    background: var(--warm-brown);
    color: white;
}

/* ============================================
   CHECKOUT PAGE
   ============================================ */

.checkout-section {
    padding: 6rem 0;
    background: white;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.checkout-form h2,
.order-summary h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--deep-brown);
    margin-bottom: 2rem;
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(139, 111, 71, 0.2);
}

.form-section:last-child {
    border-bottom: none;
}

.form-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--deep-brown);
    margin-bottom: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--warm-brown);
    background: white;
    font-family: 'Questrial', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid var(--terracotta);
    outline-offset: 2px;
    border-color: var(--terracotta);
}

.form-group textarea {
    resize: vertical;
}

/* Order Summary Sidebar */
.order-summary {
    position: sticky;
    top: 120px;
    background: var(--cream);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.summary-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--warm-brown);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(139, 111, 71, 0.2);
}

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

.summary-item-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.item-name {
    font-weight: 600;
    color: var(--deep-brown);
}

.item-quantity {
    font-size: 0.9rem;
    color: var(--warm-brown);
}

.item-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--terracotta);
}

.summary-totals {
    margin-bottom: 2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    color: var(--deep-brown);
}

.summary-row.total-row {
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 2px solid var(--warm-brown);
    font-size: 1.3rem;
    font-weight: 700;
}

.summary-row.total-row span:last-child {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--terracotta);
}

.pay-now-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--terracotta);
    color: white;
    border: 2px solid var(--terracotta);
    font-family: 'Questrial', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.pay-now-btn:hover:not(:disabled) {
    background: var(--deep-brown);
    border-color: var(--deep-brown);
    transform: translateY(-2px);
}

.pay-now-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.secure-payment {
    text-align: center;
    color: var(--warm-brown);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.back-to-menu {
    display: block;
    text-align: center;
    color: var(--warm-brown);
    text-decoration: none;
    transition: color 0.3s ease;
}

.back-to-menu:hover {
    color: var(--terracotta);
}

/* ============================================
   ORDER CONFIRMATION PAGE
   ============================================ */

.confirmation-section {
    padding: 6rem 0;
    background: white;
    min-height: 70vh;
}

.confirmation-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    font-size: 5rem;
    color: #4CAF50;
    margin-bottom: 2rem;
}

.confirmation-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--deep-brown);
    margin-bottom: 1rem;
}

.confirmation-message {
    font-size: 1.2rem;
    color: var(--warm-brown);
    margin-bottom: 3rem;
}

.order-details,
.order-items,
.pickup-info {
    background: var(--cream);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
}

.order-details h2,
.order-items h3,
.pickup-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--deep-brown);
    margin-bottom: 1.5rem;
    text-align: center;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(139, 111, 71, 0.2);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: var(--deep-brown);
}

.detail-value {
    color: var(--warm-brown);
}

.confirmation-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(139, 111, 71, 0.2);
}

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

.item-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.item-qty {
    font-size: 0.9rem;
    color: var(--warm-brown);
}

.confirmation-totals {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--warm-brown);
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.total-row.total-amount {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--warm-brown);
}

.total-row.total-amount span:last-child {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--terracotta);
}

.pickup-info p {
    margin-bottom: 0.75rem;
    color: var(--warm-brown);
    line-height: 1.8;
}

.pickup-info .note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(201, 124, 93, 0.1);
    border-left: 4px solid var(--terracotta);
    font-style: italic;
}

.confirmation-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

/* ============================================
   ORDER GUARDRAILS - TASK 5
   ============================================ */

/* Checkout button states */
.checkout-btn.checkout-ready {
    background: var(--terracotta);
    cursor: pointer;
}

.checkout-btn.checkout-ready:hover {
    background: #b86e50;
    transform: translateY(-2px);
}

.checkout-btn.checkout-blocked {
    background: #999;
    cursor: not-allowed;
    opacity: 0.8;
}

.checkout-btn.checkout-blocked:hover {
    transform: none;
}

/* Large order message */
.large-order-message {
    background: rgba(201, 124, 93, 0.1);
    border: 2px solid var(--terracotta);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.large-order-message p {
    margin: 0 0 0.75rem 0;
    color: var(--deep-brown);
    font-size: 0.9rem;
}

.large-order-message i {
    color: var(--terracotta);
    margin-right: 0.5rem;
}

.large-order-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-call,
.btn-custom {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-call {
    background: var(--terracotta);
    color: white;
}

.btn-call:hover {
    background: #b86e50;
    transform: translateY(-2px);
}

.btn-custom {
    background: var(--deep-brown);
    color: white;
}

.btn-custom:hover {
    background: #3a2a1a;
    transform: translateY(-2px);
}

/* Category cap reached state for add-to-cart buttons */
.add-to-cart-btn.cap-reached {
    background: #ccc;
    color: #666;
    cursor: not-allowed;
    opacity: 0.7;
}

.add-to-cart-btn.cap-reached:hover {
    transform: none;
    background: #ccc;
}

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

@media (max-width: 1024px) {
    .menu-layout,
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .cart-sidebar,
    .order-summary {
        position: relative;
        top: 0;
        order: -1;
    }

    .menu-items-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .category-filters {
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .menu-items-grid {
        grid-template-columns: 1fr;
    }

    .confirmation-actions {
        flex-direction: column;
    }

    .confirmation-actions .btn {
        width: 100%;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

/* Focus indicators for keyboard navigation */
a:focus-visible,
button:focus-visible,
.filter-btn:focus-visible,
.add-to-cart-btn:focus-visible,
.checkout-btn:focus-visible,
.pay-now-btn:focus-visible,
.btn:focus-visible,
.btn-nav:focus-visible,
.mobile-toggle:focus-visible {
    outline: 3px solid var(--terracotta);
    outline-offset: 3px;
}

/* Skip navigation link */
.skip-nav {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--deep-brown);
    color: white;
    padding: 0.75rem 1.5rem;
    z-index: 10001;
    border-radius: 0 0 8px 8px;
    font-family: 'Questrial', sans-serif;
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-nav:focus {
    top: 0;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================
   ORDER GUARDRAILS - PICKUP DATE SELECTION
   ============================================ */

.pickup-date-section {
    background: var(--butter);
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pickup-date-section.date-selected {
    background: var(--light-sage);
    border-color: var(--sage);
}

.pickup-date-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    color: var(--deep-brown);
    margin-bottom: 0.5rem;
}

.pickup-date-header p {
    color: var(--warm-brown);
    margin-bottom: 1.5rem;
}

.pickup-date-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.pickup-date-form label {
    font-weight: 600;
    color: var(--deep-brown);
}

.pickup-date-form input[type="date"] {
    padding: 0.75rem 1rem;
    border: 2px solid var(--sage);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Questrial', sans-serif;
    background: white;
    min-width: 180px;
}

.pickup-date-form input[type="date"]:focus {
    outline: none;
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(201, 124, 93, 0.2);
}

.pickup-date-form .btn-primary {
    background: var(--terracotta);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Questrial', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pickup-date-form .btn-primary:hover {
    background: var(--deep-brown);
    transform: translateY(-2px);
}

.pickup-date-form .btn-primary:disabled {
    background: var(--warm-brown);
    cursor: not-allowed;
    transform: none;
}

.pickup-date-info {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
}

.pickup-date-info.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.pickup-date-info.info {
    background: #e0f2fe;
    color: #0369a1;
    border: 1px solid #bae6fd;
}

/* Specialty Bread Schedule Notice */
.specialty-schedule-notice {
    background: linear-gradient(135deg, var(--butter) 0%, var(--light-sage) 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--terracotta);
}

.specialty-schedule-notice h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--deep-brown);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.specialty-schedule-notice h3 i {
    color: var(--terracotta);
}

.specialty-schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.schedule-item {
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--deep-brown);
}

.schedule-item strong {
    color: var(--terracotta);
}

.cutoff-notice {
    font-size: 0.85rem;
    color: var(--warm-brown);
    font-style: italic;
    margin: 0;
}

/* Menu item unavailable state */
.menu-item.unavailable {
    opacity: 0.5;
    pointer-events: none;
}

.menu-item.unavailable .add-to-cart-btn {
    background: #ccc;
    cursor: not-allowed;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pickup-date-section {
        padding: 1.5rem;
    }

    .pickup-date-form {
        flex-direction: column;
    }

    .pickup-date-form input[type="date"],
    .pickup-date-form .btn-primary {
        width: 100%;
    }

    .specialty-schedule-grid {
        grid-template-columns: 1fr;
    }
}
