@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;600;700&display=swap');

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

:root {
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --gold-dark: #a07830;
    --brown: #7a5c3a;
    --brown-dark: #4a3520;
    --brown-light: #a0825a;
    --cream: #faf6f0;
    --cream-dark: #f0e8dc;
    --white: #ffffff;
    --text: #2a2018;
    --text-muted: #7a6a5a;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.16);
    --radius: 16px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 80px;
}

body {
    font-family: 'Lato', 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.25;
}

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

/* Animations */
.fade-in,
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible,
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }

/* Navigation */
.navbar {
    background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, transparent 100%);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    box-shadow: none;
    transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 1px 0 rgba(201, 168, 76, 0.2), var(--shadow-sm);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    gap: 1rem;
}

.nav-brand h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.7rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: 0.5px;
    transition: all var(--transition);
}

.navbar.scrolled .nav-brand h1 {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.nav-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-top: 2px;
    transition: color var(--transition);
}

.navbar.scrolled .nav-subtitle {
    color: var(--text-muted);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.2rem;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 7px 12px;
    border-radius: 8px;
    transition: all var(--transition);
    letter-spacing: 0.3px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-light);
    background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .nav-link {
    color: var(--brown);
    text-shadow: none;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--gold-dark);
    background: rgba(201, 168, 76, 0.1);
}

.nav-admin-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0 !important;
    border-radius: 50% !important;
    border: 1.5px solid rgba(255,255,255,0.3);
    opacity: 0.75;
    margin-left: 4px;
}

.nav-admin-link:hover {
    opacity: 1;
    border-color: var(--gold-light) !important;
    background: rgba(201,168,76,0.15) !important;
}

.navbar.scrolled .nav-admin-link {
    border-color: rgba(122, 92, 58, 0.4);
}

.nav-admin-link .admin-label {
    display: none;
}

.nav-mobile-header {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
    z-index: 1001;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: rgba(255,255,255,0.9);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .hamburger span {
    background: var(--brown);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: url('images/storefront.jpg') center center / cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(42, 28, 16, 0.55) 0%,
        rgba(28, 20, 12, 0.50) 50%,
        rgba(42, 28, 16, 0.40) 100%
    );
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.40) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 780px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 168, 76, 0.2);
    border: 1px solid rgba(201, 168, 76, 0.5);
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 8px 22px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 0.4rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6), 0 8px 24px rgba(0,0,0,0.4);
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.92);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.8rem;
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.hero-tagline {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

.hero-rating {
    margin-bottom: 2rem;
}

.stars-wrapper {
    position: relative;
    display: inline-block;
    font-size: 1.9rem;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.stars-track {
    display: block;
    white-space: nowrap;
}

.stars-bg {
    color: rgba(255,255,255,0.25);
    text-shadow: none;
}

.stars-fg {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--gold);
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    overflow: hidden;
    width: 92%;
}

.rating-text {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}

.rating-text strong {
    font-size: 1.1rem;
    color: var(--gold-light);
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 3px 10px 3px 6px;
    font-size: 0.82rem;
    vertical-align: middle;
    margin-left: 6px;
    backdrop-filter: blur(4px);
}

.google-badge svg {
    flex-shrink: 0;
}

.hours-table tr.today td {
    color: var(--gold-dark);
    font-weight: 700;
}

.hours-table tr.today td:first-child::before {
    content: '▶ ';
    font-size: 0.65rem;
    opacity: 0.7;
}

.footer-section p.today {
    color: var(--gold-light) !important;
    font-weight: 700;
}

/* Hero Social Icons */
.hero-social {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    margin-top: 1.75rem;
}

.hero-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.35);
    color: var(--white);
    backdrop-filter: blur(4px);
    background: rgba(255,255,255,0.08);
    transition: all var(--transition);
    text-decoration: none;
}

.hero-social-link:hover {
    border-color: var(--gold-light);
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    color: var(--white);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border: none;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--brown-dark);
    box-shadow: 0 6px 24px rgba(201, 168, 76, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(201, 168, 76, 0.5);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--brown) 0%, var(--brown-dark) 100%);
    color: var(--white);
    box-shadow: 0 6px 24px rgba(122, 92, 58, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(122, 92, 58, 0.4);
}

.btn-hero {
    padding: 16px 44px;
    font-size: 1rem;
}

.btn-large {
    padding: 16px 44px;
    font-size: 1rem;
    width: 100%;
    margin-top: 1rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title-elegant {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--brown-dark);
    margin-bottom: 0.8rem;
    position: relative;
}

.section-title-elegant::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin: 12px auto 0;
}

.section-intro {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-top: 1rem;
    font-weight: 300;
    font-style: italic;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--brown-dark);
    margin-bottom: 0.5rem;
}

.section-title.left-align {
    text-align: left;
}

.section-eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 0.8rem;
}

.title-underline {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    border-radius: 3px;
    margin: 14px 0 1.8rem;
}

/* Featured Products */
.featured-products {
    padding: 6rem 0;
    background: var(--white);
}

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

.product-card-luxury {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
    border: 1px solid rgba(201, 168, 76, 0.12);
}

.product-card-luxury:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(74, 53, 32, 0.18);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.product-image-real {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.product-card-luxury:hover .product-image-real {
    transform: scale(1.08);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(42, 32, 24, 0.55) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.product-tag {
    background: var(--gold);
    color: var(--brown-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.product-card-content {
    padding: 1.8rem;
}

.product-card-luxury h3 {
    font-size: 1.35rem;
    color: var(--brown-dark);
    margin-bottom: 0.7rem;
}

.product-card-luxury p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.product-link {
    color: var(--gold-dark);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.product-link:hover {
    color: var(--brown-dark);
    gap: 8px;
}

/* About */
.about {
    padding: 6rem 0;
    background: var(--cream);
    overflow: hidden;
}

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

.about-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.about-image:hover img {
    transform: scale(1.04);
}

.about-image-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--gold);
    color: var(--brown-dark);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    font-family: 'Playfair Display', serif;
}

.badge-number {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
}

.badge-label {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 1.2rem;
}

.about-text strong {
    color: var(--text);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 1.4rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid rgba(201, 168, 76, 0.15);
    transition: all var(--transition);
}

.feature-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item h4 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--brown-dark);
    margin-bottom: 3px;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Gallery */
.gallery {
    padding: 6rem 0;
    background: var(--brown-dark);
}

.gallery .section-title-elegant {
    color: var(--gold-light);
}

.gallery .section-title-elegant::after {
    background: linear-gradient(90deg, var(--gold-light), var(--gold));
}

.gallery .section-intro {
    color: rgba(255,255,255,0.6);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 12px;
    border-radius: var(--radius);
    overflow: hidden;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-tall {
    grid-row: 1 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.07);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(42, 32, 24, 0.75) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.2rem 1.4rem;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Menu */
.menu {
    padding: 6rem 0;
    background: var(--white);
}

.menu-category {
    margin-bottom: 3rem;
}

.category-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    color: var(--brown-dark);
    margin-bottom: 1.4rem;
    padding-bottom: 0.7rem;
    border-bottom: 2px solid var(--cream-dark);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.cat-icon {
    font-size: 1.3rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0.6rem;
}

.menu-item {
    background: var(--cream);
    padding: 1rem 1.2rem;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: all var(--transition);
}

.menu-item:hover {
    background: rgba(201, 168, 76, 0.08);
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateX(4px);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.menu-item h4 {
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--brown-dark);
}

.price {
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
}

/* Menu Tabs */
.menu-tabs {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 2.8rem;
    justify-content: center;
}

.menu-tab {
    padding: 10px 22px;
    border: 2px solid var(--cream-dark);
    background: transparent;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: 0.3px;
}

.menu-tab:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
    background: rgba(201, 168, 76, 0.06);
}

.menu-tab.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--brown-dark);
    box-shadow: 0 4px 14px rgba(201, 168, 76, 0.4);
}

.menu-category.hidden {
    display: none;
}

/* Order */
.order {
    padding: 6rem 0;
    background: var(--cream);
}

.order-info-box {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--brown-dark);
    padding: 1.4rem 2rem;
    border-radius: var(--radius);
    text-align: center;
    margin: 0 auto 2.5rem;
    max-width: 800px;
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.3);
}

.order-info-box p {
    margin: 4px 0;
    font-size: 0.95rem;
}

.order-step {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--cream-dark);
}

.order-step:last-of-type {
    border-bottom: none;
}

.order-step-label {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 1.2rem;
    text-align: center;
}

.order-summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cart-count {
    font-size: 0.82rem;
    font-weight: 700;
    background: var(--gold);
    color: var(--brown-dark);
    padding: 3px 12px;
    border-radius: 50px;
}

.btn-order-submit {
    background: var(--brown-dark);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 24px rgba(74, 53, 32, 0.25);
    width: 100%;
}

.btn-order-submit:hover {
    background: var(--brown);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(74, 53, 32, 0.35);
    color: var(--white);
}

.btn-order-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.order-form-container {
    max-width: 820px;
    margin: 0 auto;
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(201, 168, 76, 0.12);
    overflow-x: hidden;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: var(--brown);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--cream-dark);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: 'Lato', sans-serif;
    transition: border-color var(--transition);
    background: var(--cream);
    color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.product-selection {
    display: grid;
    gap: 0.35rem;
    border: 2px solid var(--cream-dark);
    border-radius: 10px;
    padding: 0.6rem;
    background: var(--cream);
    overflow: hidden;
}

.product-select-item {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    background: var(--white);
    padding: 8px 12px;
    border-radius: 8px;
    gap: 0.8rem;
    border: 1.5px solid transparent;
    transition: all var(--transition);
    min-width: 0;
}

.product-select-item.in-cart {
    border-color: var(--gold);
    background: rgba(201,168,76,0.06);
}

.product-select-item.soldout {
    opacity: 0.55;
    background: var(--cream);
    pointer-events: none;
}

.soldout-tag {
    font-size: 0.72rem;
    font-weight: 700;
    color: #c0392b;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.product-select-name {
    color: var(--brown-dark);
    font-size: 0.85rem;
    font-weight: 600;
    display: block;
    line-height: 1.2;
    word-break: break-word;
}

.product-select-price {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.78rem;
    display: block;
    margin-top: 2px;
}

.product-select-quantity {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.quantity-btn {
    width: 28px;
    height: 28px;
    border: none;
    background: var(--cream-dark);
    color: var(--brown-dark);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
    line-height: 1;
    flex-shrink: 0;
}

.quantity-btn:hover {
    background: var(--gold);
    color: var(--brown-dark);
}

.quantity-input {
    width: 42px;
    text-align: center;
    padding: 4px;
    border: 2px solid var(--cream-dark);
    border-radius: 6px;
    font-size: 0.9rem;
    background: var(--white);
}

.quantity-display {
    min-width: 22px;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--brown-dark);
}

.quantity-btn-add {
    background: var(--gold);
    color: var(--brown-dark);
}

.quantity-btn-add:hover {
    background: var(--gold-dark);
    color: var(--white);
}

.order-summary {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--cream);
    border-radius: 12px;
    border: 1px solid var(--cream-dark);
}

.order-summary h3 {
    font-size: 0.85rem;
    color: var(--brown-dark);
    margin-bottom: 1rem;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.total-price {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--gold);
    font-size: 1.15rem;
    color: var(--brown-dark);
    font-weight: 700;
}

/* Contact */
.contact {
    padding: 6rem 0;
    background: var(--cream-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    margin-top: 0;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--white);
    padding: 1.4rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(201, 168, 76, 0.1);
    transition: all var(--transition);
}

.contact-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item h3 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 6px;
}

.contact-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.contact-item a:hover {
    color: var(--gold-dark);
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.hours-table tr:last-child {
    border-bottom: none;
}

.hours-table td {
    padding: 7px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.hours-table td:first-child {
    min-width: 115px;
    padding-right: 1rem;
}

.hours-table td:last-child {
    font-weight: 700;
    color: var(--brown);
}

.contact-call-item {
    flex-direction: column;
    align-items: flex-start;
}

.contact-phone-num {
    font-size: 1.3rem !important;
    font-weight: 700;
    color: var(--brown-dark) !important;
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brown-dark);
    color: var(--white);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all var(--transition);
    box-shadow: 0 4px 14px rgba(74,53,32,0.25);
}

.btn-call:hover {
    background: var(--brown);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(74,53,32,0.35);
}

.social-review-row {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.btn-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.55rem 1.1rem;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220,39,67,0.35);
    color: var(--white);
}

.btn-google-review {
    background: var(--white);
    color: var(--text);
    border: 1.5px solid var(--cream-dark);
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.btn-google-review:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    color: var(--text);
}

.map-link {
    display: block;
    text-align: right;
    margin-top: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
}

.map-link:hover {
    color: var(--gold-dark);
}

.contact-map {
    border-radius: var(--radius);
    overflow: visible;
    box-shadow: var(--shadow-md);
    height: 450px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
.footer {
    background: linear-gradient(160deg, var(--brown-dark) 0%, #2a1810 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 2rem;
}

.footer-brand h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.footer-tagline {
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-brand p:not(.footer-tagline) {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-section h4 {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
    transition: color var(--transition);
    line-height: 1.6;
}

.footer-section a:hover {
    color: var(--gold-light);
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.55) !important;
    text-decoration: none;
    font-size: 0.88rem;
    margin-bottom: 0.5rem;
    transition: color var(--transition);
}

.footer-social-link:hover {
    color: var(--gold-light) !important;
}

.footer-bottom {
    text-align: center;
    color: rgba(255,255,255,0.35);
    font-size: 0.85rem;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    background: rgba(42, 32, 24, 0.7);
    backdrop-filter: blur(4px);
    overflow-y: auto;
}

.modal-content {
    background: var(--white);
    margin: 5% auto;
    padding: 2.5rem;
    border-radius: var(--radius);
    max-width: 500px;
    box-shadow: var(--shadow-lg);
    position: relative;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95) translateY(-10px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-large {
    max-width: 900px;
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    font-size: 1.8rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition);
}

.close:hover {
    color: var(--brown-dark);
}

.confirmation-content {
    text-align: center;
    padding: 1rem 0;
}

.success-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
}

.confirmation-content h2 {
    color: var(--brown-dark);
    margin-bottom: 1rem;
}

.confirmation-content p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.orders-container {
    margin-top: 1.5rem;
}

.order-card {
    background: var(--cream);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--gold);
}

.order-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    align-items: center;
}

.order-id {
    font-weight: 700;
    color: var(--brown);
    font-size: 0.9rem;
}

.order-status {
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    background: var(--gold);
    color: var(--brown-dark);
}

.order-details p {
    margin: 4px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.order-items {
    background: var(--white);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 0.8rem;
    font-size: 0.9rem;
}

.order-actions {
    margin-top: 1rem;
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.order-actions .btn {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.admin-controls {
    margin-bottom: 1rem;
    display: flex;
    justify-content: flex-end;
}

/* Stats Strip */
.stats-strip {
    background: var(--brown-dark);
    padding: 2.2rem 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.6rem 2.8rem;
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    color: var(--gold-light);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1.8px;
    text-transform: uppercase;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 44px;
    background: rgba(201, 168, 76, 0.25);
    flex-shrink: 0;
}

/* Öffnungszeiten-Banner */
.hours-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--brown-dark);
    color: var(--white);
    text-align: center;
    padding: 0.8rem 3rem;
    font-size: 0.9rem;
    font-family: 'Lato', sans-serif;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}

.hours-banner strong { color: var(--gold-light); }

.hours-banner-close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255,255,255,0.55);
    font-size: 1.3rem;
    cursor: pointer;
    line-height: 1;
    padding: 0.2rem 0.5rem;
}

.hours-banner-close:hover { color: var(--white); }

/* Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        background: rgba(28, 20, 12, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 0 2rem 2rem;
        gap: 0.3rem;
        z-index: 998;
        overflow-y: auto;
        animation: none;
    }

    .nav-menu.active {
        display: flex;
        animation: menuFadeIn 0.25s ease forwards;
    }

    @keyframes menuFadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .nav-mobile-header {
        display: block;
        width: 100%;
        text-align: center;
        padding: 5rem 0 1.5rem;
        margin-bottom: 0.5rem;
        border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    }

    .mobile-menu-logo {
        font-family: 'Playfair Display', serif;
        font-size: 2.2rem;
        font-weight: 700;
        background: linear-gradient(135deg, var(--gold-light), var(--gold));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1.1;
        margin-bottom: 4px;
    }

    .mobile-menu-sub {
        color: rgba(255,255,255,0.4);
        font-size: 0.68rem;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        font-weight: 600;
        margin-bottom: 1.2rem;
    }

    .mobile-menu-img {
        border-radius: 14px;
        overflow: hidden;
        height: 130px;
        max-width: 300px;
        margin: 0 auto;
        box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    }

    .mobile-menu-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .nav-link {
        padding: 12px 36px;
        border-radius: 50px;
        width: auto;
        font-size: 1.1rem;
        color: rgba(255,255,255,0.8) !important;
        text-shadow: none !important;
        background: transparent !important;
        letter-spacing: 0.5px;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--gold-light) !important;
        background: rgba(201, 168, 76, 0.12) !important;
    }

    .nav-admin-item {
        margin-top: 0.5rem;
        padding-top: 0.8rem;
        border-top: 1px solid rgba(255,255,255,0.08);
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .nav-admin-link {
        width: auto !important;
        height: auto !important;
        padding: 10px 24px !important;
        border-radius: 50px !important;
        border: 1.5px solid rgba(201,168,76,0.3) !important;
        gap: 8px;
        opacity: 0.6;
    }

    .nav-admin-link .admin-label {
        display: inline !important;
        font-size: 0.9rem;
        font-weight: 600;
        color: rgba(255,255,255,0.7);
        letter-spacing: 0.5px;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .hamburger.open span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    .hamburger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    .hamburger.open span {
        background: rgba(255,255,255,0.9) !important;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-image img {
        height: 320px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 220px 220px;
    }

    .gallery-tall {
        grid-column: 1 / -1;
        grid-row: 1;
    }

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

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

    .contact-map {
        height: 320px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .section-title-elegant {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-tall {
        grid-column: 1;
        grid-row: 1;
    }

    .gallery-item {
        height: 240px;
    }

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

    .order-form-container {
        padding: 1.25rem 1rem;
        overflow-x: hidden;
    }

    .product-selection {
        overflow-x: hidden;
    }

    .product-select-item {
        padding: 6px 8px;
        min-width: 0;
    }

    .product-select-name {
        font-size: 0.82rem;
    }

    .quantity-btn {
        width: 26px;
        height: 26px;
        font-size: 1rem;
    }

    .quantity-display {
        min-width: 18px;
        font-size: 0.85rem;
    }

    .nav-brand h1 {
        font-size: 1.4rem;
    }
}

/* ── WhatsApp order box ─────────────────────────────────── */
.whatsapp-order-box {
    background: linear-gradient(135deg, #e8f8ef 0%, #d4f4e0 100%);
    border: 2px solid #25D366;
    border-radius: 16px;
    padding: 2rem 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    position: relative;
    overflow: hidden;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.whatsapp-order-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(37,211,102,0.12) 0%, transparent 60%);
    pointer-events: none;
}
.whatsapp-order-label {
    display: inline-block;
    background: #25D366;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.3em 0.9em;
    border-radius: 99px;
    margin-bottom: 0.75rem;
}
.whatsapp-order-desc {
    color: #1a5c37;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}
.btn-whatsapp-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 1rem 2.8rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    box-shadow: 0 4px 18px rgba(37,211,102,0.45);
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    white-space: nowrap;
}
/* On mobile, button fills width for easy tapping */
@media (max-width: 480px) {
    .btn-whatsapp-order {
        width: 100%;
        padding: 1rem 1.5rem;
    }
}
.btn-whatsapp-order:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37,211,102,0.55);
}
.btn-whatsapp-order:active {
    transform: translateY(0);
}
.whatsapp-hint {
    color: #3a8c58;
    font-size: 0.8rem;
    margin-top: 0.85rem;
    font-style: italic;
}

/* ── Order divider ──────────────────────────────────────── */
.order-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    color: var(--text-muted, #888);
    font-size: 0.85rem;
}
.order-divider::before,
.order-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #ddd;
}

/* ── Floating WhatsApp button ───────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.65);
}

/* ── Pickup time input ──────────────────────────────────── */
.pickup-time-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.pickup-time-group label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--brown);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.pickup-time-input {
    width: auto !important;
    min-width: 160px;
    padding: 10px 18px !important;
    border: 2px solid var(--gold) !important;
    border-radius: 50px !important;
    background: #fffaf2 !important;
    color: var(--brown-dark) !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    font-family: 'Lato', sans-serif;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(201,168,76,0.15);
    letter-spacing: 0.05em;
}
.pickup-time-input:focus {
    outline: none;
    border-color: var(--brown) !important;
    box-shadow: 0 2px 12px rgba(107,68,35,0.2);
    background: #fff !important;
}
