body {
    font-family: 'Epilogue', sans-serif;
}

.logo-mark {
    --logo-bg: #fffcfb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--logo-bg);
    border: 1px solid rgba(188, 123, 157, 0.22);
    box-shadow: 0 1px 3px rgba(188, 123, 157, 0.1);
    line-height: 0;
}

.logo-mark img {
    display: block;
}

.dark .logo-mark {
    border-color: rgba(188, 123, 157, 0.35);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}

.logo-mark--sm {
    border-radius: 0.5rem;
}

.logo-mark--md {
    border-radius: 0.75rem;
}
.mauve-gradient {
    background: linear-gradient(135deg, rgba(188, 123, 157, 0.1) 0%, rgba(188, 123, 157, 0.05) 100%);
}

/* Menu & pricing */
.menu-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.menu-item {
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(188, 123, 157, 0.08);
}

.menu-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.menu-item:first-child {
    padding-top: 0;
}

.menu-item-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.menu-item-name {
    font-weight: 500;
    color: #0f172a;
    flex-shrink: 0;
}

.dark .menu-item-name {
    color: #f1f5f9;
}

.menu-item-dots {
    flex: 1;
    min-width: 1.5rem;
    border-bottom: 1px dotted rgba(148, 163, 184, 0.6);
    margin-bottom: 0.2rem;
}

.menu-item-price {
    font-weight: 600;
    color: #bc7b9d;
    white-space: nowrap;
    flex-shrink: 0;
}

.menu-item-detail {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.75rem;
    color: #94a3b8;
}

@media (min-width: 768px) {
    .menu-card {
        transition: box-shadow 0.2s ease, border-color 0.2s ease;
    }

    .menu-card:hover {
        box-shadow: 0 8px 30px rgba(188, 123, 157, 0.08);
        border-color: rgba(188, 123, 157, 0.2);
    }
}

.order-dropdown-menu a span > span {
    margin-top: 0.125rem;
}

/* Gallery */
.gallery-carousel {
    position: relative;
}

.gallery-carousel__track {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0.25rem;
    padding-block: 0.25rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.gallery-carousel__track::-webkit-scrollbar {
    display: none;
}

.gallery-thumb {
    position: relative;
    flex: 0 0 auto;
    width: min(72vw, 16rem);
    aspect-ratio: 1;
    scroll-snap-align: start;
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid rgba(188, 123, 157, 0.1);
    background: #fff;
    cursor: pointer;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

@media (min-width: 768px) {
    .gallery-thumb {
        width: min(28vw, 18rem);
    }
}

@media (min-width: 1024px) {
    .gallery-thumb {
        width: calc((100% - 2.25rem) / 3.25);
    }
}

.dark .gallery-thumb {
    background: rgba(28, 22, 25, 0.6);
    border-color: rgba(188, 123, 157, 0.15);
}

.gallery-thumb:hover,
.gallery-thumb:focus-visible {
    border-color: rgba(188, 123, 157, 0.3);
    box-shadow: 0 8px 30px rgba(188, 123, 157, 0.12);
    outline: none;
}

.gallery-thumb:focus-visible {
    box-shadow: 0 0 0 2px #bc7b9d, 0 8px 30px rgba(188, 123, 157, 0.12);
}

.gallery-carousel__nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: none;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(188, 123, 157, 0.2);
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.95);
    color: #bc7b9d;
    cursor: pointer;
    transform: translateY(-50%);
    box-shadow: 0 4px 16px rgba(188, 123, 157, 0.15);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.dark .gallery-carousel__nav {
    background: rgba(28, 22, 25, 0.95);
    border-color: rgba(188, 123, 157, 0.3);
}

.gallery-carousel__nav:hover,
.gallery-carousel__nav:focus-visible {
    background: #fff;
    border-color: rgba(188, 123, 157, 0.4);
    outline: none;
}

.dark .gallery-carousel__nav:hover,
.dark .gallery-carousel__nav:focus-visible {
    background: rgba(28, 22, 25, 1);
}

.gallery-carousel__nav--prev {
    left: -0.75rem;
}

.gallery-carousel__nav--next {
    right: -0.75rem;
}

@media (min-width: 768px) {
    .gallery-carousel {
        padding-inline: 2rem;
    }

    .gallery-carousel__nav {
        display: flex;
    }
}

body.gallery-lightbox-open {
    overflow: hidden;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox.hidden {
    display: none;
}

.gallery-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.92);
}

.gallery-lightbox__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 4rem 3.5rem;
    pointer-events: none;
}

.gallery-lightbox__image {
    max-width: min(90vw, 1200px);
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__nav:hover,
.gallery-lightbox__close:focus-visible,
.gallery-lightbox__nav:focus-visible {
    background: rgba(255, 255, 255, 0.22);
    outline: none;
}

.gallery-lightbox__close {
    top: 1rem;
    right: 1rem;
    width: 2.75rem;
    height: 2.75rem;
}

.gallery-lightbox__nav {
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
}

.gallery-lightbox__nav--prev {
    left: 1rem;
}

.gallery-lightbox__nav--next {
    right: 1rem;
}

.gallery-lightbox__close .material-symbols-outlined,
.gallery-lightbox__nav .material-symbols-outlined {
    font-size: 1.75rem;
}

@media (max-width: 640px) {
    .gallery-lightbox__content {
        padding: 3.5rem 1rem;
    }

    .gallery-lightbox__nav {
        width: 2.5rem;
        height: 2.5rem;
    }

    .gallery-lightbox__nav--prev {
        left: 0.5rem;
    }

    .gallery-lightbox__nav--next {
        right: 0.5rem;
    }
}
