@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@300;400;500;600&display=swap');

:root {
    --primary-color: #BA55D3;
    --primary-dark: #9639B2;
    --primary-light: #EBCDF2;
    --secondary-color: #C8C0D0;
    --background-color: #FFFFFF;
    --surface-color: #FAF8FC;
    --text-color: #302A33;
    --muted-text-color: #716A74;
    --border-color: #E8E2EA;
    --success-color: #198754;
    --warning-color: #F0AD4E;
    --danger-color: #DC3545;
    --radius-sm: 14px;
    --radius-lg: 20px;
    --soft-shadow: 0 10px 30px rgba(77, 50, 83, .08);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body, input, button, select, textarea, table, .tooltip, .popover {
    font-family: "Prompt", sans-serif !important;
}
body {
    color: var(--text-color);
    background: var(--background-color);
    font-size: 1.05rem;
    line-height: 1.65;
    overflow-x: hidden;
}
a { color: var(--primary-dark); text-underline-offset: 3px; }
a:hover { color: var(--primary-color); }
img { max-width: 100%; }
h1, h2, h3, h4, h5, h6 { line-height: 1.25; font-weight: 400; }
.skip-link { position: fixed; left: 1rem; top: -100px; z-index: 2000; background: #fff; padding: .75rem 1rem; border-radius: 10px; }
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 3px solid rgba(186, 85, 211, .38); outline-offset: 3px; }
.btn {
    min-height: 44px;
    border-radius: 14px;
    padding: .55rem 1.1rem;
    font-size: 1.02rem;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover:not(:disabled) { transform: translateY(-1px); }
.btn:active:not(:disabled) { transform: translateY(0); }
.btn:disabled, .btn.disabled { opacity: .55; cursor: not-allowed; }
.btn-primary { --bs-btn-bg: var(--primary-color); --bs-btn-border-color: var(--primary-color); --bs-btn-hover-bg: var(--primary-dark); --bs-btn-hover-border-color: var(--primary-dark); --bs-btn-active-bg: #812d9c; --bs-btn-disabled-bg: var(--secondary-color); --bs-btn-disabled-border-color: var(--secondary-color); }
.btn-outline-primary { --bs-btn-color: var(--primary-dark); --bs-btn-border-color: var(--primary-color); --bs-btn-hover-bg: var(--primary-color); --bs-btn-hover-border-color: var(--primary-color); --bs-btn-active-bg: var(--primary-dark); }
.btn-light { background: var(--surface-color); border-color: var(--border-color); }
.form-control, .form-select {
    min-height: 46px;
    border-color: var(--border-color);
    border-radius: 14px;
    font-size: 1.03rem;
}
.form-control:focus, .form-select:focus { border-color: var(--primary-color); box-shadow: 0 0 0 .25rem rgba(186, 85, 211, .14); }
.form-label { color: var(--text-color); margin-bottom: .35rem; }
.required::after { content: " *"; color: var(--danger-color); }
.site-navbar { background: rgba(255,255,255,.96); border-bottom: 1px solid var(--border-color); backdrop-filter: blur(12px); min-height: 72px; }
.navbar-brand, .footer-brand { color: var(--text-color); text-decoration: none; font-size: 1.55rem; display: inline-flex; gap: .55rem; align-items: center; }
.brand-name {
    display: inline-flex;
    align-items: baseline;
    gap: .35rem;
    white-space: nowrap;
}
.brand-highlight { color: var(--primary-dark); }
.site-logo { width: 34px; height: 34px; object-fit: cover; border-radius: 10px; }
.site-navbar .site-logo { width: 42px; height: 42px; border-radius: 7px; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; color: #fff; background: var(--primary-color); border-radius: 14px; }
.nav-link { color: var(--muted-text-color); border-radius: 10px; padding-inline: .65rem !important; }
.site-navbar .navbar-nav { column-gap: .35rem; }
.site-navbar .nav-link {
    padding-inline: .8rem !important;
    white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--primary-dark) !important; background: var(--primary-light); }
.member-menu { border: 1px solid var(--border-color); display: flex; align-items: center; gap: .5rem; background: #fff; }
.member-menu img { width: 30px; height: 30px; object-fit: cover; border-radius: 50%; }
.points-pill, .badge-soft { background: var(--primary-light); color: var(--primary-dark); border-radius: 999px; padding: .18rem .55rem; white-space: nowrap; }
.dropdown-menu { border-color: var(--border-color); border-radius: 14px; box-shadow: var(--soft-shadow); }
.dropdown-item { border-radius: 8px; }
.flash-container { position: relative; z-index: 10; padding-top: 1rem; }
.section-space { padding-block: 4.5rem; }
.section-soft { background: var(--surface-color); }
.section-heading { max-width: 680px; margin: 0 auto 2rem; text-align: center; }
.section-heading h2 { font-size: clamp(1.8rem, 4vw, 2.55rem); }
.section-heading p { color: var(--muted-text-color); }
.hero { padding: 4rem 0; background: linear-gradient(135deg, #fff 20%, #fbf4fd 65%, #eee8f1 100%); }
.hero h1 { font-size: clamp(2.5rem, 7vw, 4.8rem); color: var(--text-color); }
.hero-highlight { color: var(--primary-color); }
.hero .lead { color: var(--muted-text-color); max-width: 610px; }
.home-hero {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(400px, 56vw, 520px);
    padding: 4rem 0;
    overflow: hidden;
    color: #fff;
    text-align: center;
    background-image: var(--hero-background-image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.home-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(22, 13, 25, .56);
}
.home-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 900px;
}
.home-hero-eyebrow {
    display: inline-flex;
    gap: .5rem;
    align-items: center;
    margin-bottom: 1rem;
    padding: .4rem .8rem;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
}
.home-hero h1 {
    margin-bottom: 1rem;
    color: #fff;
    font-size: clamp(2.25rem, 7vw, 4.6rem);
    text-shadow: 0 2px 18px rgba(0, 0, 0, .24);
}
.home-hero h1 span { color: #E7A5F6; }
.home-hero p {
    max-width: 680px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .92);
    font-size: clamp(1.08rem, 2.5vw, 1.35rem);
}
.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .8rem;
    margin-top: 1.6rem;
}
.hero-glass-button {
    min-width: 170px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 999px;
    background: rgba(255, 255, 255, .2);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .12);
    backdrop-filter: blur(14px);
}
.hero-glass-button:hover,
.hero-glass-button:focus-visible {
    color: #fff;
    border-color: rgba(255, 255, 255, .85);
    background: rgba(186, 85, 211, .72);
}
.hero-glass-button:active {
    color: #fff !important;
    background: var(--primary-dark) !important;
}
.hero-glass-button-secondary { background: rgba(22, 13, 25, .28); }
.all-menu-section { background: var(--surface-color); }
.all-menu-showcase {
    max-width: 1050px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--soft-shadow);
}
.all-menu-showcase img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}
.all-menu-showcase figcaption {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem;
    padding: 1.25rem;
    border-top: 1px solid var(--border-color);
}
.hero-image { aspect-ratio: 1 / 1; width: 100%; object-fit: cover; border-radius: 34% 66% 57% 43% / 46% 41% 59% 54%; box-shadow: var(--soft-shadow); background: var(--primary-light); }
.content-card, .product-card, .review-card, .channel-card, .reward-card, .stat-card {
    background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius-lg); box-shadow: var(--soft-shadow); height: 100%;
}
.content-card { padding: 1.5rem; }
.feature-icon { width: 52px; height: 52px; display: grid; place-items: center; color: var(--primary-dark); background: var(--primary-light); border-radius: 16px; font-size: 1.45rem; margin-bottom: 1rem; }
.product-card { overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 15px 38px rgba(77,50,83,.12); }
.product-card .product-image, .reward-card .reward-image, .promotion-image { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--surface-color); }
.product-card .card-body, .reward-card .card-body { padding: 1.25rem; }
.price { color: var(--primary-dark); font-size: 1.3rem; }
.drink-showcase-slider {
    width: 100%;
    max-width: 1180px;
    min-width: 0;
    margin-inline: auto;
    overflow: hidden;
}
.drink-showcase-track {
    display: grid;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: .35rem .2rem 1rem;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
}
.drink-showcase-track::-webkit-scrollbar { display: none; }
.drink-showcase-item {
    min-width: 0;
    scroll-snap-align: start;
}
.drink-showcase-trigger {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    color: #fff;
    text-align: left;
    border: 0;
    border-radius: 22px;
    background: var(--secondary-color);
    box-shadow: 0 9px 24px rgba(77, 50, 83, .1);
    cursor: pointer;
}
.drink-showcase-trigger::after {
    position: absolute;
    inset: 0;
    content: "";
    border: 2px solid transparent;
    border-radius: inherit;
    pointer-events: none;
    transition: border-color .2s ease;
}
.drink-showcase-trigger:hover::after,
.drink-showcase-trigger:focus-visible::after { border-color: rgba(255, 255, 255, .72); }
.drink-showcase-trigger:focus-visible {
    outline: 3px solid rgba(186, 85, 211, .42);
    outline-offset: 3px;
}
.drink-showcase-image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    object-position: center;
    background: #F8F3FA;
}
.drink-showcase-overlay {
    position: absolute;
    inset: auto 0 0;
    display: flex;
    flex-direction: column;
    height: 35%;
    min-height: 0;
    justify-content: flex-end;
    padding: clamp(.65rem, 1.8vw, 1rem);
    overflow: hidden;
    background: linear-gradient(to top, rgba(25, 15, 28, .92), rgba(25, 15, 28, .58) 74%, transparent);
}
.drink-showcase-category {
    margin-bottom: .15rem;
    color: #EBCDF2;
    font-size: .82rem;
    line-height: 1.2;
}
.drink-showcase-name {
    display: -webkit-box;
    min-height: 2.4em;
    max-height: 2.4em;
    overflow: hidden;
    color: #fff;
    font-size: clamp(1.1rem, 2.2vw, 1.38rem);
    line-height: 1.2;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.drink-showcase-description {
    display: -webkit-box;
    margin-top: .2rem;
    overflow: hidden;
    color: rgba(255, 255, 255, .86);
    font-size: .85rem;
    line-height: 1.3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.drink-showcase-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: 48px;
    margin-top: .65rem;
}
.drink-showcase-arrow {
    display: grid;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    place-items: center;
    color: var(--primary-dark);
    font-size: 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 5px 16px rgba(77, 50, 83, .08);
    transition: color .18s ease, background-color .18s ease, border-color .18s ease, transform .18s ease;
}
.drink-showcase-arrow:hover,
.drink-showcase-arrow:focus-visible {
    color: #fff;
    border-color: var(--primary-color);
    background: var(--primary-color);
    transform: translateY(-1px);
}
.drink-showcase-arrow:disabled { opacity: .45; cursor: not-allowed; }
.drink-showcase-dots {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    min-width: 80px;
}
.drink-showcase-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #C8C0D0;
    transition: width .2s ease, background-color .2s ease;
}
.drink-showcase-dot:hover,
.drink-showcase-dot:focus-visible { background: var(--primary-light); }
.drink-showcase-dot.active {
    width: 24px;
    background: #BA55D3;
}
.drink-showcase-modal .modal-content {
    overflow: hidden;
    border: 0;
    border-radius: 22px;
    box-shadow: var(--soft-shadow);
}
.drink-showcase-modal .modal-header { border-color: var(--border-color); }
.drink-showcase-modal-image {
    display: block;
    width: 100%;
    max-height: 70vh;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    object-position: center;
    border-radius: 18px;
    background: #F8F3FA;
}
.drink-showcase-modal-category {
    display: inline-flex;
    margin-bottom: .75rem;
    padding: .3rem .7rem;
    color: var(--primary-dark);
    border-radius: 999px;
    background: var(--primary-light);
}
.special-poster-section { overflow: hidden; }
.special-poster-trigger {
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    color: var(--text-color);
    text-align: left;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    background: var(--surface-color);
    box-shadow: 0 9px 24px rgba(77, 50, 83, .08);
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.special-poster-trigger:hover,
.special-poster-trigger:focus-visible {
    color: var(--primary-dark);
    border-color: var(--primary-color);
    box-shadow: 0 12px 28px rgba(77, 50, 83, .12);
    transform: translateY(-2px);
}
.special-poster-trigger:focus-visible {
    outline: 3px solid rgba(186, 85, 211, .36);
    outline-offset: 3px;
}
.special-poster-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    background: #F4EEF6;
}
.special-poster-caption {
    display: block;
    min-height: 58px;
    padding: .8rem 1rem;
    color: var(--text-color);
    font-size: 1.08rem;
    text-align: center;
}
:is(.home-special-poster-section, .menu-special-poster-section) .special-poster-track { align-items: stretch; }
:is(.home-special-poster-section, .menu-special-poster-section) .special-poster-item {
    display: flex;
    height: 100%;
}
:is(.home-special-poster-section, .menu-special-poster-section) .special-poster-trigger {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
}
:is(.home-special-poster-section, .menu-special-poster-section) .special-poster-image {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: contain;
    object-position: center;
    background: #fff;
}
:is(.home-special-poster-section, .menu-special-poster-section) .special-poster-caption {
    display: flex;
    flex: 0 0 64px;
    min-height: 64px;
    max-height: 64px;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: .65rem 1rem;
}
:is(.home-special-poster-section, .menu-special-poster-section) .special-poster-caption-text {
    display: -webkit-box;
    overflow: hidden;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.special-poster-modal .modal-content {
    overflow: hidden;
    border: 0;
    border-radius: 22px;
    box-shadow: var(--soft-shadow);
}
.special-poster-modal .modal-header { border-color: var(--border-color); }
.special-poster-modal .modal-body {
    padding: 1rem;
    text-align: center;
    background: var(--surface-color);
}
.special-poster-modal-image {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 78vh;
    margin-inline: auto;
    object-fit: contain;
    border-radius: 16px;
}
.rating-stars { color: #E3A008; white-space: nowrap; }
.star-input { display: flex; gap: .25rem; }
.star-input input { position: absolute; opacity: 0; pointer-events: none; }
.star-input label { font-size: 2rem; color: var(--secondary-color); cursor: pointer; line-height: 1; border-radius: 8px; padding: .15rem; }
.star-input label:hover, .star-input label.active, .star-input input:focus-visible + label { color: #E3A008; }
.category-card { display: block; padding: 1.25rem; text-decoration: none; color: var(--text-color); background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius-lg); height: 100%; }
.category-card:hover { border-color: var(--primary-color); color: var(--primary-dark); }
.category-card img { width: 68px; height: 68px; object-fit: cover; border-radius: 18px; margin-bottom: .8rem; }
.review-card { padding: 1.5rem; }
.review-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.page-hero { padding: 3.2rem 0 2.5rem; background: linear-gradient(135deg, var(--surface-color), var(--primary-light)); }
.page-hero h1 { font-size: clamp(2.1rem, 6vw, 3.5rem); }
.filter-panel { background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 1.2rem; box-shadow: var(--soft-shadow); }
.menu-page-hero {
    position: relative;
    overflow: hidden;
    padding-block: 4rem;
    text-align: center;
    background:
        radial-gradient(circle at 15% 25%, rgba(186, 85, 211, .18), transparent 24%),
        radial-gradient(circle at 85% 75%, rgba(200, 192, 208, .32), transparent 25%),
        linear-gradient(135deg, #FAF8FC, #EBCDF2);
}
.menu-page-hero::after {
    position: absolute;
    right: 7%;
    bottom: -55px;
    width: 150px;
    height: 150px;
    content: "";
    border: 24px solid rgba(255, 255, 255, .34);
    border-radius: 50%;
    pointer-events: none;
}
.menu-page-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-bottom: .7rem;
    padding: .32rem .75rem;
    color: var(--primary-dark);
    border-radius: 999px;
    background: rgba(255, 255, 255, .7);
}
.menu-page-hero h1 { margin-bottom: .65rem; }
.menu-page-hero .lead { color: var(--muted-text-color); }
.menu-catalog-section { background: #fff; }
.menu-catalog-heading { margin-bottom: 1.5rem; }
.menu-filter-panel {
    padding: clamp(1rem, 2.5vw, 1.6rem);
    border-color: rgba(186, 85, 211, .18);
    border-radius: 24px;
    background: linear-gradient(145deg, #fff, #FCF9FD);
}
.menu-filter-panel .form-label {
    font-weight: 500;
    color: var(--text-color);
}
.menu-search-field { position: relative; }
.menu-search-field > i {
    position: absolute;
    top: 50%;
    left: 1rem;
    z-index: 2;
    color: var(--primary-color);
    transform: translateY(-50%);
    pointer-events: none;
}
.menu-search-field .form-control { padding-left: 2.8rem; }
.menu-results-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 1.6rem 0 1.1rem;
    color: var(--muted-text-color);
}
.menu-results-count {
    color: var(--primary-dark);
    font-size: 1.25rem;
}

.announcement-page-hero { position: relative; overflow: hidden; }
.announcement-page-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-bottom: .7rem;
    padding: .32rem .75rem;
    color: var(--primary-dark);
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
}
.announcement-page-hero h1 { margin-bottom: .65rem; }
.announcement-page-hero .lead { color: var(--muted-text-color); }
.announcement-section { background: #fff; }
.home-announcement-section { background: #fff; }
.home-announcement-section .announcement-carousel {
    position: relative;
    width: min(100%, 760px);
    margin-inline: auto;
}
.home-announcement-section .announcement-slide {
    width: 100%;
}
.home-announcement-section .announcement-slide.active,
.home-announcement-section .announcement-slide.carousel-item-next,
.home-announcement-section .announcement-slide.carousel-item-prev {
    display: flex;
    align-items: center;
    justify-content: center;
}
.home-announcement-section .announcement-image-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 520px;
    max-height: 680px;
    padding: 10px;
    overflow: hidden;
    border-radius: 22px;
    background: #faf8fc;
}
.home-announcement-section .announcement-image-stage img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 660px;
    object-fit: contain;
    object-position: center;
    border-radius: 18px;
}
.home-announcement-section .announcement-carousel-control {
    top: 50%;
    bottom: auto;
    width: 44px;
    height: 44px;
    color: var(--primary-color);
    border: 1px solid rgba(186, 85, 211, .2);
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 5px 18px rgba(83, 54, 91, .13);
    opacity: 1;
    transform: translateY(-50%);
}
.home-announcement-section .announcement-carousel-control:hover,
.home-announcement-section .announcement-carousel-control:focus-visible {
    color: #fff;
    background: var(--primary-color);
}
.home-announcement-section .announcement-carousel-control-prev { left: .8rem; }
.home-announcement-section .announcement-carousel-control-next { right: .8rem; }
.home-announcement-section .announcement-carousel-control i {
    font-size: 1.35rem;
    line-height: 1;
}
.home-announcement-section .announcement-carousel-indicators {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    margin: 1rem 0 0;
}
.home-announcement-section .announcement-carousel-indicators [data-bs-target] {
    box-sizing: border-box;
    width: 10px;
    height: 10px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background-color: #C8C0D0;
    opacity: 1;
}
.home-announcement-section .announcement-carousel-indicators .active {
    background-color: #BA55D3;
}
.home-announcement-section .announcement-empty-state {
    width: min(100%, 760px);
    margin-inline: auto;
    padding: 1.25rem;
    color: var(--muted-text-color);
    border: 1px dashed #C8C0D0;
    border-radius: 18px;
    background: #faf8fc;
    text-align: center;
}
.announcement-card {
    width: 100%;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--soft-shadow);
    transition: transform .2s ease, box-shadow .2s ease;
}
.announcement-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(83, 54, 91, .12);
}
.announcement-image,
.announcement-image-placeholder {
    width: 100%;
    aspect-ratio: 16 / 10;
}
.announcement-image {
    display: block;
    object-fit: contain;
    background: var(--surface-color);
}
.announcement-image-trigger {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: var(--surface-color);
    cursor: zoom-in;
}
.announcement-image-trigger .announcement-image {
    transition: transform .25s ease;
}
.announcement-image-trigger:hover .announcement-image,
.announcement-image-trigger:focus-visible .announcement-image {
    transform: scale(1.02);
}
.announcement-image-zoom {
    position: absolute;
    right: .75rem;
    bottom: .75rem;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: #fff;
    border-radius: 50%;
    background: rgba(35, 24, 39, .78);
    box-shadow: 0 5px 14px rgba(0, 0, 0, .2);
}
.announcement-image-modal .modal-dialog { max-width: min(1100px, calc(100vw - 2rem)); }
.announcement-image-modal .modal-content {
    overflow: hidden;
    border: 0;
    border-radius: 18px;
    background: #171319;
}
.announcement-image-modal .modal-header {
    position: absolute;
    inset: .5rem .5rem auto auto;
    z-index: 2;
    padding: .55rem;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, .55);
}
.announcement-image-modal .modal-body {
    display: grid;
    min-height: 220px;
    padding: 0;
    place-items: center;
}
.announcement-image-modal .modal-body img {
    display: block;
    width: 100%;
    max-height: calc(100vh - 3rem);
    object-fit: contain;
}
.announcement-image-placeholder {
    display: grid;
    place-items: center;
    color: var(--primary-color);
    background: linear-gradient(145deg, var(--primary-light), var(--surface-color));
    font-size: 3.5rem;
}
.announcement-card-body { padding: 1.35rem 1.4rem 1.5rem; }
.announcement-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    margin-bottom: .85rem;
    color: var(--muted-text-color);
    font-size: .9rem;
}
.announcement-badge {
    display: inline-flex;
    padding: .22rem .65rem;
    color: var(--primary-dark);
    border-radius: 999px;
    background: var(--primary-light);
    font-weight: 500;
}
.announcement-card h2 {
    margin-bottom: .75rem;
    color: var(--text-color);
    line-height: 1.35;
}
.announcement-card-body > p { color: var(--muted-text-color); }
.announcement-active-dates {
    display: flex;
    align-items: flex-start;
    gap: .45rem;
    margin: 1rem 0 0;
    padding-top: .9rem;
    border-top: 1px solid var(--border-color);
    font-size: .92rem;
}
.announcement-active-dates i { color: var(--primary-color); }

.menu-clear-filter {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    text-decoration: none;
}
.menu-page,
.menu-page input,
.menu-page button,
.menu-page select,
.menu-page textarea {
    font-family: "Prompt", sans-serif !important;
}
.drink-gallery-grid > [class*="col-"] { align-items: stretch; }
.drink-gallery-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #EEE7F1;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(83, 54, 91, .06);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.drink-gallery-card:hover {
    transform: translateY(-4px);
    border-color: rgba(186, 85, 211, .34);
    box-shadow: 0 14px 32px rgba(83, 54, 91, .10);
}
.drink-gallery-trigger {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
    color: var(--text-color);
    text-align: left;
    border: 0;
    border-radius: inherit;
    background: transparent;
}
.drink-gallery-trigger:focus-visible {
    outline: 3px solid rgba(186, 85, 211, .38);
    outline-offset: -3px;
}
.drink-gallery-media {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #F9F5FB;
}
.drink-gallery-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.drink-gallery-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 18px 20px 20px;
}
.drink-gallery-meta {
    min-height: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .45rem;
    margin-bottom: .7rem;
}
.drink-gallery-category,
.drink-gallery-recommended {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 28px;
    padding: .2rem .7rem;
    font-size: .9rem;
    line-height: 1.2;
    border-radius: 999px;
}
.drink-gallery-category {
    color: var(--primary-dark);
    background: var(--primary-light);
}
.drink-gallery-recommended {
    color: #9639B2;
    background: #F0DDF5;
}
.drink-gallery-title {
    display: -webkit-box;
    min-height: 2.7em;
    overflow: hidden;
    font-size: 1.35rem;
    line-height: 1.3;
    font-weight: 500;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.drink-gallery-description {
    display: -webkit-box;
    min-height: 3em;
    overflow: hidden;
    margin-top: .45rem;
    color: var(--muted-text-color);
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.drink-gallery-modal .modal-content {
    overflow: hidden;
    border: 1px solid rgba(186, 85, 211, .18);
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(48, 42, 51, .16);
}
.drink-gallery-modal .modal-header,
.drink-gallery-modal .modal-footer { border-color: var(--border-color); }
.drink-gallery-modal-media {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 18px;
    background: #F9F5FB;
}
.drink-gallery-modal-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.drink-gallery-empty { margin-top: .5rem; }
.menu-page .pagination { margin-top: 2.25rem; }
.menu-page .page-link {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-color: #EEE7F1;
}
.empty-state { padding: 4rem 1.5rem; text-align: center; border: 1px dashed var(--secondary-color); border-radius: var(--radius-lg); background: var(--surface-color); }
.empty-state i { display: block; font-size: 3rem; color: var(--primary-color); }
.pagination { --bs-pagination-color: var(--primary-dark); --bs-pagination-active-bg: var(--primary-color); --bs-pagination-active-border-color: var(--primary-color); --bs-pagination-border-color: var(--border-color); gap: .3rem; }
.page-link { border-radius: 10px !important; }
.auth-section { min-height: calc(100vh - 72px); padding: 3rem 0; background: var(--surface-color); }
.auth-card { max-width: 760px; margin: auto; padding: clamp(1.25rem, 4vw, 2.5rem); background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius-lg); box-shadow: var(--soft-shadow); }
.auth-card-narrow { max-width: 560px; }
.password-wrap { position: relative; }
.password-wrap .form-control { padding-right: 3rem; }
.password-toggle { position: absolute; right: .45rem; bottom: .3rem; width: 38px; height: 38px; border: 0; background: transparent; border-radius: 10px; color: var(--muted-text-color); }
.profile-avatar { width: 140px; height: 140px; object-fit: cover; border-radius: 30px; border: 4px solid #fff; box-shadow: var(--soft-shadow); }
.status-badge { display: inline-flex; align-items: center; border-radius: 999px; padding: .3rem .7rem; font-size: .92rem; }
.status-pending { background: #fff3cd; color: #7a5a00; }
.status-approved, .status-active, .status-used { background: #d1e7dd; color: #0f5132; }
.status-rejected, .status-cancelled, .status-blocked { background: #f8d7da; color: #842029; }
.status-inactive, .status-hidden { background: #e9ecef; color: #495057; }
.table { --bs-table-bg: transparent; }
.table > :not(caption) > * > * { padding: .85rem; border-color: var(--border-color); vertical-align: middle; }
.receipt-preview, .image-preview { max-width: 260px; max-height: 260px; object-fit: cover; border-radius: var(--radius-sm); }
.site-footer { padding: 3.5rem 0 1.5rem; background: var(--surface-color); border-top: 1px solid var(--border-color); }
.site-footer a:not(.footer-brand):not(.social-links a) { display: block; color: var(--muted-text-color); text-decoration: none; margin-bottom: .4rem; }
.footer-title { font-size: 1.2rem; }
.social-links { display: flex; gap: .65rem; }
.social-links a { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 14px; background: var(--primary-light); color: var(--primary-dark); font-size: 1.25rem; }
.copyright { text-align: center; color: var(--muted-text-color); }
.map-frame { width: 100%; min-height: 340px; border: 0; border-radius: var(--radius-lg); background: var(--surface-color); }
.store-map-embed {
    width: 100%;
    height: 380px;
    min-height: 380px;
    overflow: hidden;
    border-radius: 18px;
    background: #F8F5FA;
}
.store-map-embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: 0;
}
.alert { border-radius: var(--radius-sm); }
.text-muted { color: var(--muted-text-color) !important; }
