/* ===========================================
   DÖNER ECKE - CSS STYLES
   Modern, Mobile-First Restaurant Website
   =========================================== */

/* CSS Variables */
:root {
    --color-bg: #1a1a1a;
    --color-bg-alt: #222222;
    --color-surface: #2a2a2a;
    --color-surface-hover: #333333;
    --color-text: #ffffff;
    --color-text-muted: #888888;
    --color-accent: #ff6b35;
    --color-accent-hover: #ff8555;
    --color-accent-glow: rgba(255, 107, 53, 0.3);
    --color-gradient-start: #ff6b35;
    --color-gradient-end: #ff8f35;
    --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px var(--color-accent-glow);
    --transition-base: 250ms ease;
    --container-max: 1400px;
    --nav-height: 80px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
    height: 100%;
}

body {
    font-family: var(--font-family);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    min-height: -webkit-fill-available;
    padding-bottom: env(safe-area-inset-bottom);
}



body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./images/yangin.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: -1;
    pointer-events: none;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* NAVIGATION */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    transition: all var(--transition-base);
    overflow: visible;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: var(--container-max);
    height: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: visible;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    z-index: 1001;
}

.logo-icon {
    font-size: 1.5em;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.about-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 3rem;
    max-width: 280px;
    margin: 0 auto;
}

.logo-text {
    background: linear-gradient(135deg, var(--color-accent), var(--color-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all var(--transition-base);
    border-radius: var(--radius-full);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    height: calc(100vh - var(--nav-height));
    min-height: 400px;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    padding: 2.5rem 2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    overflow-y: auto;
    z-index: 1001;
}

.nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-link {
    font-size: 1.5rem;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--color-accent), var(--color-gradient-end));
    color: var(--color-text) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: var(--radius-full);
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
    overflow: visible;
}

.nav-cta::after {
    display: none;
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        flex-direction: row;
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        gap: 2rem;
        padding: 0;
        justify-content: flex-end;
        align-items: center;
        z-index: auto;
        height: auto;
        min-height: 0;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        overflow: visible;
    }

    .nav-link {
        font-size: 0.875rem;
    }

    .nav-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent), var(--color-gradient-end));
    color: var(--color-text);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px var(--color-accent-glow);
}

.btn-secondary {
    background: var(--color-surface);
    color: var(--color-text);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: var(--color-surface-hover);
    border-color: var(--color-accent);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.125rem;
}

.btn-icon {
    font-size: 1.2em;
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 4rem 1.5rem;
    padding-top: calc(var(--nav-height) + 4rem);
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--color-text) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.hero-tagline {
    font-size: 1.125rem;
    color: var(--color-accent);
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.hero-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeInUp 0.6s ease-out 0.5s backwards;
}

.hero-info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.hero-info-link {
    text-decoration: none;
    transition: color var(--transition-base);
}

.hero-info-link:hover {
    color: var(--color-accent);
}

.info-icon {
    font-size: 1.2em;
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    animation: bounce 2s infinite, fadeOutScroll 1s ease-out 3s forwards;
}

@keyframes fadeOutScroll {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        visibility: hidden;
    }
}

.scroll-indicator {
    width: 20px;
    height: 30px;
    border: 2px solid var(--color-text-muted);
    border-radius: var(--radius-full);
    position: relative;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-accent);
    border-radius: var(--radius-full);
    animation: scrollDown 1.5s infinite;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .hero-info {
        flex-direction: row;
        justify-content: center;
        gap: 3rem;
    }
}

/* SECTIONS */
.section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

/* MENU SECTION */
.menu-section {
    background: transparent;
}

.image-disclaimer {
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 2rem;
    font-style: italic;
    opacity: 0.7;
}

.menu-categories-wrapper {
    position: relative;
    margin-bottom: 2rem;
    padding: 0 1rem;
    display: flex;
    justify-content: center;
    z-index: 10;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.menu-categories-wrapper::-webkit-scrollbar {
    display: none;
}

.menu-categories-swiper {
    display: flex;
    gap: 0.75rem;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

@media (min-width: 768px) {
    .menu-categories-wrapper {
        overflow: visible;
    }

    .menu-categories-swiper {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.menu-categories-swiper .swiper-slide {
    width: auto;
}

.category-tab {
    display: block;
    padding: 0.6rem 1rem;
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .category-tab {
        padding: 1rem 2rem;
        font-size: 0.875rem;
    }
}

.category-tab:hover {
    border-color: var(--color-accent);
    color: var(--color-text);
}

.category-tab.active {
    background: linear-gradient(135deg, var(--color-accent), var(--color-gradient-end));
    border-color: transparent;
    color: var(--color-text);
}

.swiper-nav {
    display: none;
}

.swiper-btn {
    width: 36px;
    height: 36px;
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-text);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: all var(--transition-base);
}

.swiper-btn:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.swiper-btn:disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* Menu items wrapper - flex column for stacking */
.menu-items {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

/* Menu items grid - actual grid layout */
.menu-items-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .menu-items-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 1.5rem;
    }
}

.menu-item {
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

@media (min-width: 768px) {
    .menu-item {
        flex-direction: column;
        align-items: stretch;
    }
}

.menu-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
    .menu-item:hover {
        transform: translateY(-4px);
    }
}

.menu-item-image {
    position: relative;
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: var(--color-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .menu-item-image {
        width: 100%;
        height: auto;
        min-width: unset;
        aspect-ratio: 1;
        font-size: 3rem;
    }
}

.menu-item-image img,
.menu-item-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.menu-item-placeholder {
    opacity: 0.3;
}

.menu-item-content {
    padding: 0.75rem 1rem;
    flex: 1;
    min-width: 0;
}

@media (min-width: 768px) {
    .menu-item-content {
        padding: 1.5rem;
    }
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .menu-item-header {
        gap: 1rem;
        margin-bottom: 0.5rem;
    }
}

.menu-item-name {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .menu-item-name {
        font-size: 1.125rem;
    }
}

.menu-item-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-accent);
    white-space: nowrap;
}

@media (min-width: 768px) {
    .menu-item-price {
        font-size: 1.125rem;
    }
}

.menu-item-description {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

@media (min-width: 768px) {
    .menu-item-description {
        font-size: 0.875rem;
        line-height: 1.5;
    }
}

.category-description-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.category-description {
    text-align: center;
    color: var(--color-text);
    font-size: 1.125rem;
    font-style: italic;
    padding: 1.5rem 2rem;
    background: var(--color-surface);
    border-left: 4px solid var(--color-accent);
    border-radius: var(--radius-md);
    max-width: 800px;
    margin: 0;
}

.menu-fallback {
    text-align: center;
    padding: 6rem 2rem;
    color: var(--color-text-muted);
}

.fallback-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.fallback-sub {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* ABOUT SECTION */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-content .section-badge,
.about-content .section-title {
    text-align: left;
}

.about-text {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text strong {
    color: var(--color-accent);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.feature p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.about-visual {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.about-image-frame {
    aspect-ratio: 1;
    width: 280px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-surface-hover) 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-features-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0.3;
}

.image-placeholder span {
    font-size: 5rem;
}

.image-placeholder p {
    font-size: 1.25rem;
    font-weight: 600;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-gradient-end));
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.badge-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
}

.badge-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* LOCATION SECTION */
.location-section {
    background: transparent;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .location-grid {
        grid-template-columns: 1fr 1.5fr;
    }
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: #2a2a2a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition-base);
}

.info-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
}

.info-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.info-card-link:hover {
    border-color: rgba(255, 107, 53, 0.5);
    transform: translateY(-2px);
}

.info-card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.info-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--color-accent);
    font-size: 0.875rem;
    font-weight: 500;
}

.info-link:hover {
    text-decoration: underline;
}

.hours-list {
    margin: 0.5rem 0;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.hours-time {
    font-weight: 600;
    color: var(--color-accent);
}

.hours-note {
    margin-top: 0.5rem;
    color: var(--color-accent) !important;
    font-style: italic;
}

.phone-number {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-accent);
    margin: 0.5rem 0;
}

.phone-note {
    font-style: italic;
}

.location-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.map-container {
    width: 100%;
    height: 400px;
    background: var(--color-surface);
}

@media (min-width: 768px) {
    .map-container {
        height: 100%;
        min-height: 450px;
    }
}

/* CONTACT SECTION */
.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.contact-card {
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-base);
}

.contact-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
}

.contact-card-main {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 143, 53, 0.05));
    border-color: rgba(255, 107, 53, 0.2);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

/* ORDER SECTION */
.order-section {
    background: transparent;
}

.order-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.order-text {
    color: var(--color-text-muted);
    margin-bottom: 3rem;
}

.order-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .order-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.order-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    min-width: 220px;
}

.order-btn:not(:disabled):hover {
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

.order-btn-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.order-btn-takeaway {
    text-decoration: none;
    color: inherit;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 143, 53, 0.05));
    border-color: rgba(255, 107, 53, 0.4);
    cursor: pointer;
}

.order-btn-takeaway:hover {
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.25);
}

.order-btn-takeaway .order-btn-status {
    color: #4caf50;
    font-weight: 600;
}

.order-btn-logo {
    font-size: 2rem;
}

.order-btn-text {
    text-align: left;
}

.order-btn-name {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
}

.order-btn-status {
    display: block;
    font-size: 0.75rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.order-alternative {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.order-alternative p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

/* ORDER PAGE (order.html) */
.order-hero-section {
    padding-top: calc(var(--nav-height) + 4rem);
    padding-bottom: 2rem;
}

.order-menu-section {
    padding-top: 0;
    padding-bottom: 2rem;
}

.order-form-section {
    padding-top: 0;
}

/* Category Tabs (order page - simple scroll instead of Swiper) */
.order-category-tabs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.75rem;
    margin-bottom: 2rem;
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent) transparent;
    -webkit-overflow-scrolling: touch;
}

.order-category-tabs::-webkit-scrollbar {
    height: 4px;
}

.order-category-tabs::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 2px;
}

.order-cat-tab {
    display: block;
    padding: 0.6rem 1rem;
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    color: var(--color-text-muted);
    font-family: var(--font-family);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.order-cat-tab:hover {
    color: var(--color-text);
    border-color: rgba(255, 255, 255, 0.15);
}

.order-cat-tab.active {
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
    color: var(--color-text);
    border-color: transparent;
    font-weight: 600;
}

/* Add to Cart Button (order page only) */
.btn-add-cart {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
    border: none;
    border-radius: var(--radius-full);
    color: var(--color-text);
    font-family: var(--font-family);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
    margin-top: 0.75rem;
    align-self: flex-start;
}

.btn-add-cart:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-add-cart.added {
    background: #4caf50;
}


/* Checkout Grid */
.order-checkout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .order-checkout-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

/* Cart Panel */
.cart-panel {
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.cart-panel .form-group-header {
    margin-top: 0;
}

.cart-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    background: var(--color-accent);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    margin-left: auto;
}

.cart-empty {
    padding: 2rem 0;
    text-align: center;
}

.cart-empty p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.cart-empty-hint {
    font-size: 0.8rem !important;
    margin-top: 0.5rem;
}

/* Cart Items Container - Scrollable */
.cart-items {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 0.5rem;
    /* Space for scrollbar */
    margin-bottom: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent) #f0f0f0;
}

.cart-items::-webkit-scrollbar {
    width: 6px;
}

.cart-items::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.cart-items::-webkit-scrollbar-thumb {
    background-color: var(--color-accent);
    border-radius: 4px;
}

/* Cart Item */
.cart-item {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 0.75rem;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Mobile adjustments for cart items */
@media (max-width: 480px) {
    .cart-item {
        grid-template-columns: 1fr auto;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .cart-item-info {
        grid-column: 1 / -1;
        /* Take full width */
    }

    .cart-item-controls {
        grid-column: 1;
        justify-content: flex-start;
    }

    .cart-item-line-total {
        grid-column: 2;
        text-align: right;
        align-self: center;
    }

    .cart-actions {
        grid-column: 1 / -1;
        justify-content: flex-end;
        padding-top: 0.25rem;
    }
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.cart-item-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
    /* Allow wrapping but keep a limit if needed - the user wanted to see everything so we remove nowrap */
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
}

.cart-item-unit-price {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.cart-qty-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-alt);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-text);
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-base);
    font-family: var(--font-family);
}

.cart-qty-btn:hover {
    border-color: var(--color-accent);
    background: rgba(255, 107, 53, 0.15);
}

.cart-qty {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
    min-width: 20px;
    text-align: center;
}

.cart-item-line-total {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent);
    white-space: nowrap;
}

.cart-actions {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

.cart-edit-btn {
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    padding: 4px;
    transition: color var(--transition-base);
}

.cart-edit-btn:hover {
    color: var(--color-accent);
}

.cart-remove-btn {
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    padding: 4px;
    transition: color var(--transition-base);
}

.cart-remove-btn:hover {
    color: #ff4444;
}

/* Cart Total */
.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 2px solid rgba(255, 107, 53, 0.3);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text);
}

.cart-total-price {
    color: var(--color-accent);
    font-size: 1.25rem;
}

/* Checkout Form Panel */
.checkout-panel {
    position: sticky;
    top: 6rem;
    /* Fallback */
    top: calc(var(--nav-height) + 1rem);
    /* Dynamic */
    z-index: 10;
    align-self: start;
    /* Ensure it doesn't stretch */
}

/* Form Styles */
.order-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.form-group-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
}

.form-group-icon {
    font-size: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
}

.privacy-group {
    margin: 0.2rem 0;
    padding: 0;
}

.privacy-text {
    font-size: 0.8rem;
    color: #86827c;
    line-height: 1.3;
    margin: 0;
}

.privacy-text a {
    color: var(--color-primary);
    text-decoration: underline;
    font-weight: 500;
}

.privacy-text a:hover {
    color: var(--color-accent);
}

.required {
    color: var(--color-accent);
}

.optional {
    color: var(--color-text-muted);
    font-weight: 400;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: all var(--transition-base);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
    opacity: 0.6;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-submit {
    align-self: flex-start;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Success Message */
.order-success {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    animation: fadeInUp 0.5s ease-out;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.order-success h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.order-success p {
    color: var(--color-text-muted);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}


/* ===========================================
   ORDER PAGE - WHITE THEME OVERRIDE
   =========================================== */
body.order-page {
    --color-bg: #f3efe9;
    --color-bg-alt: #ffffff;
    --color-surface: #ffffff;
    --color-surface-hover: #fffaf5;
    --color-text: #2d2a26;
    --color-text-muted: #86827c;
    --shadow-warm-sm: 0 2px 8px rgba(45, 42, 38, 0.08);
    --shadow-warm-md: 0 12px 24px rgba(45, 42, 38, 0.12);

    background: linear-gradient(135deg, #f3efe9 0%, #e8e2da 100%);
    min-height: 100vh;
}

body.order-page::before {
    display: none;
}

body.order-page .navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e8e2da;
}

body.order-page .navbar.scrolled {
    box-shadow: var(--shadow-warm-sm);
}

body.order-page .nav-link {
    color: #444444;
}

/* Ensure mobile menu links stay visible on dark background */
@media (max-width: 768px) {
    body.order-page .nav-menu .nav-link {
        color: #ffffff !important;
    }
}

body.order-page .nav-link:hover {
    color: var(--color-accent);
}

body.order-page .nav-toggle span {
    background: #444444;
}

body.order-page .logo-text {
    color: #1a1a1a;
}

body.order-page .section-badge {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    color: var(--color-accent);
}

body.order-page .section-title {
    color: #1a1a1a;
    background: none;
    -webkit-text-fill-color: initial;
}

body.order-page .section-subtitle {
    color: #666666;
}

body.order-page .form-group-header {
    border-bottom: none;
    justify-content: center;
    /* Also center the title "Speisekarte" if desired, though user only asked for categories */
}

body.order-page .form-group-header h2 {
    color: #1a1a1a;
}

body.order-page .form-group label {
    color: #444444;
}

body.order-page .form-group input,
body.order-page .form-group textarea {
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    color: #1a1a1a;
}

body.order-page .form-group input:focus,
body.order-page .form-group textarea:focus {
    border-color: var(--color-accent);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

body.order-page .form-group input::placeholder,
body.order-page .form-group textarea::placeholder {
    color: #999999;
}

body.order-page .order-category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding-bottom: 1rem;
}

body.order-page .order-cat-tab {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    color: #666666;
}

body.order-page .order-cat-tab:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
    background: #fff5f0;
}

body.order-page .order-cat-tab.active {
    background: var(--color-accent);
    color: #ffffff !important;
    border-color: var(--color-accent);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
}

body.order-page .menu-item {
    background: #ffffff;
    border: 1px solid #e8e2da;
    box-shadow: var(--shadow-warm-sm);
}

body.order-page .menu-item:hover {
    background-color: var(--color-surface-hover);
    box-shadow: var(--shadow-warm-md);
    border-color: var(--color-accent);
    transform: translateY(-4px);
}

body.order-page .menu-item-name {
    color: #1a1a1a;
}

body.order-page .menu-item-description {
    color: #666666;
}

body.order-page .menu-item-image {
    background: #f5f5f5;
}

body.order-page .category-description {
    background: #f8f8f8;
    border-left: 3px solid var(--color-accent);
    color: #555555;
}

body.order-page .cart-panel {
    background: #ffffff;
    border: 1px solid #e8e2da;
    box-shadow: var(--shadow-warm-md);
}

body.order-page .cart-item {
    border-bottom: 1px solid #f0f0f0;
}

body.order-page .cart-item-name {
    color: #1a1a1a;
}

body.order-page .cart-item-unit-price {
    color: #888888;
}

body.order-page .cart-qty-btn {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    color: #444444;
}

body.order-page .cart-qty-btn:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #ffffff;
}

body.order-page .cart-qty {
    color: #1a1a1a;
}

body.order-page .cart-remove-btn {
    color: #999999;
}

body.order-page .cart-remove-btn:hover {
    color: #ff4444;
}

body.order-page .cart-total {
    border-top: 2px solid #f0f0f0;
    color: #1a1a1a;
}

body.order-page .cart-empty p {
    color: #888888;
}

body.order-page .order-success {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

body.order-page .order-success h2 {
    color: #1a1a1a;
}

body.order-page .order-success p {
    color: #666666;
}

body.order-page .footer {
    background: #0d0d0d;
    border-top: 1px solid #222;
}

body.order-page .footer,
body.order-page .footer a,
body.order-page .footer p,
body.order-page .footer h4 {
    color: #888888;
}

body.order-page .footer a:hover {
    color: var(--color-accent);
}

body.order-page .footer-bottom {
    border-top: 1px solid #222;
}


/* ===========================================
   CUSTOMIZATION MODAL
   =========================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    animation: modalFadeIn 0.2s ease;
}

@media (min-width: 768px) {
    .modal-overlay {
        align-items: center;
        padding: 1rem;
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-container {
    background: #fff;
    border-radius: 12px 12px 0 0;
    width: 100%;
    max-width: 520px;
    height: calc(100% - 12px);
    display: flex;
    flex-direction: column;
    position: relative;
    animation: modalSlideUp 0.25s ease;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

@media (min-width: 768px) {
    .modal-container {
        border-radius: 16px;
        height: auto;
        max-height: 90vh;
        max-height: 90dvh;
    }
}

.modal-scroll-content {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 1rem;
}

/* Move padding from options/notes to wrapper or keep? 
   Let's keep original padding but ensure scrollbar is nice */

.modal-scroll-content::-webkit-scrollbar {
    width: 6px;
}

.modal-scroll-content::-webkit-scrollbar-track {
    background: transparent;
}

.modal-scroll-content::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.06);
    color: #333;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.12);
}

/* Modal Header */
.modal-header {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid #eee;
}

.modal-item-img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
    background: #f5f5f5;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .modal-item-img {
        width: 100px;
        height: 100px;
        border-radius: 12px;
    }
}

.modal-item-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.modal-item-name {
    font-family: var(--font-family);
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

.modal-item-desc {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.4;
}

.modal-item-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-top: auto;
}

/* Modal Options */
.modal-options {
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .modal-options {
        padding: 0 1.5rem;
    }
}

.modal-option-group {
    padding: 0.6rem 0;
    border-bottom: 1px solid #f0f0f0;
}

@media (min-width: 768px) {
    .modal-option-group {
        padding: 1rem 0;
    }
}

.modal-option-group:last-child {
    border-bottom: none;
}

.modal-option-title {
    font-family: var(--font-family);
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .modal-option-title {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
}

.modal-option-title .opt-hint {
    font-weight: 400;
    font-size: 0.7rem;
    color: #999;
}

@media (min-width: 768px) {
    .modal-option-title .opt-hint {
        font-size: 0.8rem;
    }
}

.modal-option-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.4rem;
    cursor: pointer;
    transition: background 0.15s;
    border-radius: 6px;
}

@media (min-width: 768px) {
    .modal-option-item {
        gap: 0.75rem;
        padding: 0.5rem;
        border-radius: 8px;
    }
}

.modal-option-item:hover {
    background: #f8f8f8;
}

.modal-option-item input[type="checkbox"],
.modal-option-item input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-accent);
    cursor: pointer;
    flex-shrink: 0;
}

@media (min-width: 768px) {

    .modal-option-item input[type="checkbox"],
    .modal-option-item input[type="radio"] {
        width: 20px;
        height: 20px;
    }
}

.modal-option-item label {
    font-family: var(--font-family);
    font-size: 0.8rem;
    color: #333;
    cursor: pointer;
    flex: 1;
}

@media (min-width: 768px) {
    .modal-option-item label {
        font-size: 0.9rem;
    }
}

.modal-option-item .opt-price {
    font-size: 0.75rem;
    color: var(--color-accent);
    font-weight: 600;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .modal-option-item .opt-price {
        font-size: 0.8rem;
    }
}

/* Quantity controls for extras */
.modal-option-qty {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: auto;
}

@media (min-width: 768px) {
    .modal-option-qty {
        gap: 0.35rem;
    }
}

.modal-option-qty-btn {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.15s;
    font-family: var(--font-family);
}

@media (min-width: 768px) {
    .modal-option-qty-btn {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
}

.modal-option-qty-btn:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
}

.modal-option-qty-val {
    min-width: 18px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #1a1a1a;
}

/* Modal Notes */
.modal-notes {
    padding: 1rem 1.5rem;
    border-top: 1px solid #f0f0f0;
}

.modal-notes label {
    display: block;
    font-family: var(--font-family);
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.modal-notes textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 0.875rem;
    color: #333;
    resize: vertical;
    outline: none;
    transition: border-color 0.2s;
}

.modal-notes textarea:focus {
    border-color: var(--color-accent);
}

/* Modal Footer */
.modal-footer {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1rem;
    padding-bottom: calc(0.8rem + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid #eee;
    background: #fff;
    flex-shrink: 0;
    z-index: 2;
    margin-top: auto;
}

@media (min-width: 768px) {
    .modal-footer {
        gap: 1rem;
        padding: 1rem 1.5rem 1.5rem;
    }
}

.modal-qty {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 3px;
}

@media (min-width: 768px) {
    .modal-qty {
        gap: 0.5rem;
        border-radius: 10px;
        padding: 4px;
    }
}

.modal-qty-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: #fff;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.15s;
    font-family: var(--font-family);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
    .modal-qty-btn {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        font-size: 1.1rem;
    }
}

.modal-qty-btn:hover {
    background: var(--color-accent);
    color: #fff;
}

.modal-qty-val {
    min-width: 22px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a1a;
}

@media (min-width: 768px) {
    .modal-qty-val {
        min-width: 28px;
        font-size: 1.05rem;
    }
}

.modal-add-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
    border: none;
    border-radius: 10px;
    color: #fff;
    font-family: var(--font-family);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

@media (min-width: 768px) {
    .modal-add-btn {
        gap: 0.75rem;
        padding: 0.875rem 1.5rem;
        border-radius: 12px;
        font-size: 1rem;
    }
}

.modal-add-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.modal-add-price {
    font-weight: 700;
}

/* Cart customization summary */
.cart-item-customs {
    font-size: 0.7rem;
    color: #999;
    line-height: 1.3;
    margin-top: 2px;
}

/* Phone Input with Country Code */
.phone-input-wrapper {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
}

.phone-country-select {
    width: 110px;
    flex-shrink: 0;
    padding: 0.75rem 0.5rem;
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-family: var(--font-family);
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
    transition: border-color var(--transition-base);
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 24px;
}

.phone-country-select:focus {
    border-color: var(--color-accent);
}

.phone-country-select option {
    background: #2a2a2a;
    color: var(--color-text);
    padding: 0.5rem;
}

.phone-input-wrapper input[type="tel"] {
    flex: 1;
    min-width: 0;
}

/* FOOTER */
.footer {
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 0 2rem;
    /* Reduced from 4rem */
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2 columns for mobile by default */
    gap: 1.5rem;
    /* Reduced from 3rem */
    margin-bottom: 2rem;
}

/* Make logo section full width on mobile */
.footer-logo-section {
    grid-column: 1 / -1;
    margin-bottom: 0.5rem;
    text-align: center;
}

.footer-logo {
    justify-content: center;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.75rem;
    /* Reduced from 0.875rem */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    /* Reduced from 1.5rem */
    color: var(--color-accent);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    transition: color var(--transition-base);
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-contact p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: var(--color-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 0.75rem;
    /* Reduced from 0.875rem */
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        top: 6px;
    }

    100% {
        opacity: 0;
        top: 14px;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.menu-loading {
    background: linear-gradient(90deg, var(--color-surface) 25%, var(--color-surface-hover) 50%, var(--color-surface) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* LEAFLET MAP */
.leaflet-container {
    background: var(--color-surface) !important;
}

.leaflet-popup-content-wrapper {
    background: var(--color-surface);
    color: var(--color-text);
    border-radius: var(--radius-md);
}

.leaflet-popup-tip {
    background: var(--color-surface);
}

.leaflet-popup-content {
    margin: 12px 16px;
}

.leaflet-popup-content h3 {
    color: var(--color-accent);
    margin-bottom: 4px;
}

.leaflet-popup-content p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin: 0;
}

.leaflet-control-attribution {
    background: rgba(26, 26, 26, 0.8) !important;
    color: var(--color-text-muted) !important;
}

.leaflet-control-attribution a {
    color: var(--color-accent) !important;
}

/* ===========================================
   OPENING OFFER POPUP
   =========================================== */
.offer-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.offer-popup-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.offer-popup {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    animation: popupFadeIn 0.4s ease-out;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.offer-popup-image {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.offer-popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-gradient-end));
    border: none;
    border-radius: 50%;
    color: var(--color-text);
    font-size: 1.75rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 10000;
}

.offer-popup-close:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

@media (min-width: 768px) {
    .offer-popup {
        max-width: 700px;
    }

    .offer-popup-close {
        top: -20px;
        right: -20px;
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
}

/* ===========================================
   BACKGROUND MUSIC PLAYER
   =========================================== */
.music-player {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.volume-slider-wrapper {
    background: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 28px;
    padding: 14px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.music-player:hover .volume-slider-wrapper,
.music-player.slider-active .volume-slider-wrapper {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.volume-slider {
    -webkit-appearance: none;
    appearance: none;
    writing-mode: vertical-lr;
    direction: rtl;
    width: 6px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-accent);
    cursor: pointer;
    box-shadow: 0 0 8px rgba(255, 107, 53, 0.5);
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.volume-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-accent);
    cursor: pointer;
    border: none;
    box-shadow: 0 0 8px rgba(255, 107, 53, 0.5);
}

.volume-slider::-moz-range-track {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
}

.music-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(255, 107, 53, 0.3);
    background: rgba(30, 30, 30, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    position: relative;
}

.music-toggle:hover {
    transform: scale(1.1);
    border-color: var(--color-accent);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.3);
}

.music-toggle.playing {
    border-color: var(--color-accent);
    background: rgba(255, 107, 53, 0.15);
}

.music-icon {
    line-height: 1;
    pointer-events: none;
}

.music-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--color-accent);
    opacity: 0;
    pointer-events: none;
    animation: none;
}

.music-toggle.playing .music-pulse {
    animation: musicPulse 2s ease-out infinite;
}

@keyframes musicPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

@media (max-width: 480px) {
    .music-player {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .music-toggle {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .volume-slider {
        height: 80px;
    }
}

.modal-add-price {
    font-weight: 700;
    margin-left: 0.5rem;
    color: #fff;
    display: inline-block !important;
}

/* Custom Scrollbar for Modal (UI Polish) */
.modal-container::-webkit-scrollbar {
    width: 6px;
}

.modal-container::-webkit-scrollbar-track {
    background: transparent;
    margin: 4px;
}

.modal-container::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: content-box;
    /* Makes it look floating/detached */
}

.modal-container::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.4);
}