/* ============================================
   MOBILE-FIRST DESIGN - BAKERY COLOR SCHEME
   ============================================ */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Bakery Color Palette */
    --chocolate-brown: #8B4513;
    --warm-brown: #A0522D;
    --light-brown: #D2691E;
    --cream: #FFF8DC;
    --soft-cream: #F5E6D3;
    --warm-cream: #FFE4B5;
    --gold: #D4A574;
    --amber: #C9A961;
    --dark-brown: #3E2723;
    --medium-brown: #5D4037;
    --off-white: #FFFEF9;
    --warm-white: #FFFBF0;
    
    /* Functional Colors */
    --white: #FFFFFF;
    --text-dark: #3E2723;
    --text-medium: #5D4037;
    --text-light: #8B6F47;
    --shadow: rgba(62, 39, 35, 0.1);
    --shadow-md: rgba(62, 39, 35, 0.15);
    --shadow-lg: rgba(62, 39, 35, 0.25);
    --success: #8B9A46;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--off-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ============================================
   NAVIGATION - MODERN DESIGN
   ============================================ */
.navbar {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 248, 220, 0.95) 100%);
    box-shadow: 0 4px 30px rgba(62, 39, 35, 0.08), 0 1px 0 rgba(255, 255, 255, 0.5) inset;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.75rem 0;
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 2px solid rgba(212, 165, 116, 0.2);
    position: relative;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--chocolate-brown) 0%, 
        var(--gold) 50%, 
        var(--chocolate-brown) 100%);
    opacity: 0.6;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0.25rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.logo a:hover {
    background: rgba(212, 165, 116, 0.1);
    transform: translateY(-2px);
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(62, 39, 35, 0.1));
}

.logo-img:hover {
    transform: scale(1.08) rotate(-2deg);
    filter: drop-shadow(0 4px 8px rgba(62, 39, 35, 0.2));
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--soft-cream) 100%);
    border: 2px solid var(--gold);
    border-radius: 12px;
    cursor: pointer;
    padding: 0.6rem 0.75rem;
    gap: 0.4rem;
    z-index: 1001;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(62, 39, 35, 0.1);
}

.mobile-menu-toggle:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(62, 39, 35, 0.2);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: var(--chocolate-brown);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.mobile-menu-toggle:hover span {
    background: var(--white);
}

.nav-menu {
    position: fixed;
    left: -100%;
    top: 0;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(255, 251, 240, 0.98) 0%, rgba(255, 248, 220, 0.98) 100%);
    backdrop-filter: blur(20px);
    width: 100%;
    height: 100vh;
    text-align: center;
    transition: left 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 5px 0 40px rgba(62, 39, 35, 0.15);
    padding: 6rem 2rem 2rem;
    gap: 0;
    list-style: none;
    display: flex;
    z-index: 999;
    overflow-y: auto;
}

.nav-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--chocolate-brown), var(--gold), var(--chocolate-brown));
}

.nav-menu.active {
    left: 0;
}

.nav-menu li {
    margin: 1.25rem 0;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInNav 0.5s ease forwards;
}

.nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
.nav-menu.active li:nth-child(2) { animation-delay: 0.2s; }
.nav-menu.active li:nth-child(3) { animation-delay: 0.3s; }
.nav-menu.active li:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInNav {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 15px;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 165, 116, 0.05) 100%);
    border: 2px solid transparent;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--amber));
    border-radius: 3px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(135deg, var(--chocolate-brown), var(--gold));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--chocolate-brown);
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15) 0%, rgba(201, 169, 97, 0.1) 100%);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(62, 39, 35, 0.1);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 60%;
}

.nav-link:hover::after,
.nav-link.active::after {
    opacity: 1;
}

/* ============================================
   HERO SECTION - MOBILE FIRST
   ============================================ */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: 3rem 1.25rem;
    background: linear-gradient(135deg, var(--warm-white) 0%, var(--cream) 50%, var(--soft-cream) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, -30px) rotate(180deg); }
}

.hero-content {
    width: 100%;
    max-width: 600px;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 2rem 0;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--chocolate-brown);
    letter-spacing: -1px;
    line-height: 1.2;
    text-align: center;
}

.tagline {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--light-brown);
    font-style: italic;
    text-align: center;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    color: var(--text-medium);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Hero Slider Styles */
.hero-slider-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 2rem auto 0;
    position: relative;
    z-index: 1;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px var(--shadow-lg);
    border: 8px solid var(--white);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 10;
    pointer-events: none;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--gold);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 12px rgba(62, 39, 35, 0.15);
    color: var(--chocolate-brown);
}

.slider-btn:hover {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(62, 39, 35, 0.25);
}

.slider-btn svg {
    width: 24px;
    height: 24px;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    z-index: 10;
    position: relative;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--soft-cream);
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.slider-dot:hover {
    transform: scale(1.2);
    background: var(--gold);
}

.slider-dot.active {
    background: var(--gold);
    border-color: var(--chocolate-brown);
    width: 32px;
    border-radius: 6px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--chocolate-brown) 0%, var(--light-brown) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
}

/* ============================================
   INTRODUCTION SECTION
   ============================================ */
.introduction {
    padding: 3rem 1.25rem;
    background-color: var(--white);
    position: relative;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 1.75rem;
    color: var(--chocolate-brown);
    margin-bottom: 1.25rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 0.75rem;
}

.intro-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--amber));
    border-radius: 2px;
}

.intro-content p {
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.feature-item {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--warm-white) 0%, var(--cream) 100%);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 8px 20px var(--shadow-md);
}

.feature-icon {
    width: 48px;
    height: 48px;
    color: var(--chocolate-brown);
    margin: 0 auto 1rem;
    stroke-width: 2;
}

.feature-item h3 {
    font-size: 1.25rem;
    color: var(--chocolate-brown);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   MENU SECTION
   ============================================ */
.menu {
    padding: 3rem 1.25rem;
    background: linear-gradient(to bottom, var(--off-white) 0%, var(--warm-white) 100%);
}

.section-title {
    font-size: 1.75rem;
    color: var(--chocolate-brown);
    text-align: center;
    margin-bottom: 0.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.75rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--amber));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.menu-item {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
}

.menu-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px var(--shadow-lg);
    border-color: var(--gold);
}

.menu-item-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.menu-item-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(139, 69, 19, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-item:hover .menu-item-image::after {
    opacity: 1;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.15);
}

.menu-item-content {
    padding: 1.25rem;
}

.menu-item-content h3 {
    font-size: 1.35rem;
    color: var(--chocolate-brown);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.menu-description {
    color: var(--text-medium);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.menu-price {
    font-size: 1.5rem;
    color: var(--light-brown);
    font-weight: 700;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--soft-cream) 100%);
    border-radius: 10px;
}

/* ============================================
   ORDER FORM SECTION
   ============================================ */
.order-section {
    padding: 3rem 1.25rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--soft-cream) 100%);
}

.order-form-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.order-form-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    background-color: var(--white);
    padding: 1.75rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px var(--shadow);
    border: 2px solid var(--warm-cream);
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.35rem;
    color: var(--chocolate-brown);
    margin-bottom: 1.5rem;
    font-weight: 600;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--soft-cream);
}

.section-icon {
    width: 24px;
    height: 24px;
    color: var(--gold);
    stroke-width: 2;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--chocolate-brown);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--soft-cream);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: var(--off-white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Item Selection Grid */
.item-selection-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.order-item-card {
    border: 2px solid var(--soft-cream);
    border-radius: 15px;
    padding: 1.25rem;
    background: var(--off-white);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.order-item-card.selected {
    border-color: var(--gold);
    background: linear-gradient(135deg, var(--warm-white) 0%, var(--cream) 100%);
    box-shadow: 0 4px 15px var(--shadow-md);
}

.order-item-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.order-item-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item-info {
    flex: 1;
}

.order-item-info h4 {
    font-size: 1.1rem;
    color: var(--chocolate-brown);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.order-item-info p {
    font-size: 0.85rem;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.order-item-price {
    font-size: 1.1rem;
    color: var(--light-brown);
    font-weight: 700;
}

.order-item-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--soft-cream);
}

.size-selection {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.size-selection label {
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 500;
}

.size-options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.size-option {
    padding: 0.5rem 1rem;
    border: 2px solid var(--soft-cream);
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.size-option:hover {
    border-color: var(--gold);
    background: var(--warm-cream);
}

.size-option.selected {
    border-color: var(--chocolate-brown);
    background: var(--chocolate-brown);
    color: var(--white);
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-control label {
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 500;
}

.quantity-input-wrapper {
    display: flex;
    align-items: center;
    border: 2px solid var(--soft-cream);
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
}

.quantity-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--warm-cream);
    color: var(--chocolate-brown);
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: var(--gold);
    color: var(--white);
}

.quantity-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.quantity-input {
    width: 50px;
    height: 36px;
    border: none;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--white);
}

.quantity-input:focus {
    outline: none;
}

.item-total {
    font-size: 1rem;
    color: var(--chocolate-brown);
    font-weight: 600;
    text-align: right;
    margin-top: 0.5rem;
}

.remove-item {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 28px;
    height: 28px;
    border: none;
    background: rgba(139, 69, 19, 0.1);
    color: var(--chocolate-brown);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 1.2rem;
    font-weight: 600;
}

.remove-item:hover {
    background: var(--chocolate-brown);
    color: var(--white);
    transform: rotate(90deg);
}

/* Order Summary */
.order-summary {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 5px 20px var(--shadow);
    border: 2px solid var(--warm-cream);
    padding: 1.75rem;
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--soft-cream);
}

.summary-header h3 {
    font-size: 1.35rem;
    color: var(--chocolate-brown);
    font-weight: 600;
}

.item-count {
    font-size: 0.9rem;
    color: var(--text-light);
    background: var(--warm-cream);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-weight: 500;
}

.summary-items {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 1.5rem;
    min-height: 100px;
}

.empty-cart {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    padding: 2rem 0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--soft-cream);
    gap: 0.5rem;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item-info {
    flex: 1;
}

.summary-item-name {
    font-size: 0.9rem;
    color: var(--chocolate-brown);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.summary-item-details {
    font-size: 0.8rem;
    color: var(--text-light);
}

.summary-item-price {
    font-size: 0.95rem;
    color: var(--light-brown);
    font-weight: 600;
    white-space: nowrap;
}

.summary-footer {
    border-top: 2px solid var(--soft-cream);
    padding-top: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.summary-row.total {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--chocolate-brown);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--soft-cream);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--chocolate-brown) 0%, var(--light-brown) 100%);
    color: var(--white);
    padding: 1rem;
    font-size: 1rem;
    margin-top: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
}

.success-message {
    max-width: 600px;
    margin: 2rem auto 0;
    background: linear-gradient(135deg, var(--success) 0%, #7A8A3E 100%);
    color: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(139, 154, 70, 0.3);
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-message.hidden {
    display: none;
}

.success-message h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.success-message p {
    font-size: 1.05rem;
    opacity: 0.95;
    line-height: 1.7;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: 3rem 1.25rem;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-card {
    position: relative;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--soft-cream);
    box-shadow: 0 4px 15px var(--shadow);
    overflow: hidden;
    text-align: center;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--chocolate-brown), var(--light-brown), var(--gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px var(--shadow-lg);
    border-color: var(--gold);
    background: linear-gradient(135deg, var(--warm-white) 0%, var(--cream) 100%);
}

.contact-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--soft-cream) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.contact-card:hover .contact-icon-wrapper {
    transform: rotate(5deg) scale(1.1);
    background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
}

.contact-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, var(--chocolate-brown), var(--gold));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-card:hover .contact-icon-wrapper::after {
    opacity: 1;
}

.contact-icon {
    width: 32px;
    height: 32px;
    color: var(--chocolate-brown);
    stroke-width: 2;
    transition: all 0.4s ease;
}

.contact-card:hover .contact-icon {
    color: var(--white);
    transform: scale(1.1);
}

.contact-card h3 {
    font-size: 1.35rem;
    color: var(--chocolate-brown);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.contact-card p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.contact-link,
.contact-link-inline {
    color: var(--chocolate-brown);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 0.5rem;
    border-bottom: 2px solid transparent;
}

.contact-link:hover,
.contact-link-inline:hover {
    color: var(--light-brown);
    border-bottom-color: var(--gold);
    transform: translateX(3px);
}

.contact-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.hours {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--soft-cream) 100%);
    border-radius: 20px;
    box-shadow: 0 5px 20px var(--shadow);
    border: 2px solid var(--gold);
}

.hours h3 {
    font-size: 1.5rem;
    color: var(--chocolate-brown);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hours p {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.8;
}

/* ============================================
   FOOTER - MODERN NON-CODING VIBE DESIGN
   ============================================ */
.footer {
    background: linear-gradient(180deg, 
        #2C1810 0%, 
        var(--chocolate-brown) 30%,
        var(--warm-brown) 100%);
    color: var(--cream);
    padding: 4rem 1.25rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--gold) 20%,
        var(--amber) 50%,
        var(--gold) 80%,
        transparent 100%);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.footer-logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transition: all 0.4s ease;
    margin-bottom: 0.5rem;
    align-self: flex-start;
}

.footer-logo-img:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(212, 165, 116, 0.5));
}

.footer-tagline {
    font-size: 1rem;
    color: rgba(255, 248, 220, 0.85);
    font-style: italic;
    line-height: 1.6;
    max-width: 300px;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.social-label {
    font-size: 0.85rem;
    color: rgba(255, 248, 220, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 248, 220, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 50%;
    color: var(--gold);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.social-link:hover {
    background: var(--gold);
    color: var(--chocolate-brown);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.4);
}

.footer-links-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-column h5 {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.footer-column a {
    color: rgba(255, 248, 220, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    width: fit-content;
    position: relative;
    padding-left: 0;
}

.footer-column a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.footer-column a:hover {
    color: var(--gold);
    padding-left: 15px;
}

.footer-column a:hover::before {
    width: 10px;
}

.footer-contact {
    color: rgba(255, 248, 220, 0.85);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
}

.footer-contact a {
    color: rgba(255, 248, 220, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(212, 165, 116, 0.2) 20%,
        rgba(212, 165, 116, 0.4) 50%,
        rgba(212, 165, 116, 0.2) 80%,
        transparent 100%);
    margin: 2rem 0;
    position: relative;
    z-index: 1;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 248, 220, 0.8);
    letter-spacing: 0.3px;
}

.footer-made {
    font-size: 0.85rem;
    color: rgba(255, 248, 220, 0.7);
    font-style: italic;
}

.heart {
    color: #ff6b6b;
    animation: heartbeat 1.5s ease-in-out infinite;
    display: inline-block;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ============================================
   RESPONSIVE DESIGN - TABLET & DESKTOP
   ============================================ */

/* Tablet Styles */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }

    .logo-img {
        height: 45px;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        flex-direction: row;
        background: none;
        box-shadow: none;
        width: auto;
        height: auto;
        padding: 0;
        gap: 2rem;
        left: 0;
    }

    .nav-menu li {
        margin: 0;
        opacity: 1;
        transform: none;
        animation: none;
    }

    .nav-link {
        font-size: 1rem;
        padding: 0.6rem 1.25rem;
        margin: 0 0.25rem;
    }

    .nav-link::after {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .hero {
        flex-direction: row;
        align-items: center;
        padding: 3rem 2rem;
        text-align: left;
    }

    .hero-content {
        text-align: left;
        padding-right: 2rem;
    }

    .hero-title {
        font-size: 3.5rem;
        text-align: left;
    }

    .tagline {
        font-size: 1.5rem;
        text-align: left;
    }

    .hero-description {
        font-size: 1.15rem;
        margin-left: 0;
    }

    .hero-slider-wrapper {
        margin: 0;
        max-width: 500px;
    }
    
    .hero-slider {
        height: 450px;
    }
    
    .slider-controls {
        padding: 0 1.5rem;
    }
    
    .slider-btn {
        width: 52px;
        height: 52px;
    }

    .introduction {
        padding: 3.5rem 2rem;
    }

    .intro-content h2 {
        font-size: 2rem;
    }

    .intro-content p {
        font-size: 1.05rem;
    }

    .menu {
        padding: 3.5rem 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }

    .order-section {
        padding: 3.5rem 2rem;
    }

    .order-form-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .item-selection-grid {
        grid-template-columns: 1fr;
    }

    .order-summary {
        position: static;
        max-height: none;
    }

    .contact {
        padding: 3.5rem 2rem;
    }

    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.75rem;
    }

    .footer-main {
        grid-template-columns: 1.2fr 2fr;
        gap: 4rem;
    }

    .footer-links-section {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }

    .footer {
        padding: 4.5rem 2rem 2.5rem;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .container {
        padding: 0 3rem;
    }

    .hero {
        padding: 5rem 3rem;
        min-height: 90vh;
    }

    .hero-title {
        font-size: 4rem;
    }

    .tagline {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 1.2rem;
    }
    
    .hero-slider-wrapper {
        max-width: 600px;
    }
    
    .hero-slider {
        height: 500px;
    }
    
    .slider-btn {
        width: 56px;
        height: 56px;
    }
    
    .slider-btn svg {
        width: 28px;
        height: 28px;
    }
    
    .slider-dot {
        width: 14px;
        height: 14px;
    }
    
    .slider-dot.active {
        width: 36px;
    }

    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }

    .menu-item-image {
        height: 280px;
    }

    .introduction,
    .menu,
    .order-section,
    .contact {
        padding: 4rem 3rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .intro-content h2 {
        font-size: 2.25rem;
    }

    .order-form-wrapper {
        grid-template-columns: 2fr 1fr;
    }

    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .item-selection-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .order-summary {
        position: sticky;
        top: 100px;
        max-height: calc(100vh - 120px);
    }

    .footer-main {
        grid-template-columns: 1.2fr 2fr;
        gap: 4rem;
    }

    .footer-links-section {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }

    .footer {
        padding: 4.5rem 2rem 2.5rem;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* Large Desktop */
@media (min-width: 1440px) {
    .menu-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================
   ANIMATIONS & EFFECTS
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-item,
.contact-card {
    animation: fadeIn 0.6s ease-out;
}

/* Loading Optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
    loading: lazy;
}

/* Smooth Scrolling Enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus States for Accessibility */
*:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .mobile-menu-toggle,
    .btn,
    .order-form {
        display: none;
    }
}
