/* /Components/DisplayView.razor.rz.scp.css */
.shop-showcase[b-ukxzhnscjo] {
    overflow: hidden;
    background: #000;
    position: relative;
    /* inline-size lets embedded mode use a flexible height (hugging the image's
       natural aspect) while still supporting cqi-based queries (cqi = inline). */
    container-type: inline-size;
    container-name: showcase;
}

.shop-showcase-fullscreen[b-ukxzhnscjo] {
    width: 100vw;
    height: 100vh;
}

.shop-showcase-embedded[b-ukxzhnscjo] {
    width: 100%;
    /* No fixed height / aspect-ratio: the container hugs the image so the full
       image is visible (no letterbox bars, no cropping). min-height keeps the
       loading/empty status panel visible before products arrive. */
    min-height: 220px;
    border-radius: 12px;
    border: 2px solid white;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .25);
}

.slide[b-ukxzhnscjo] {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: clamp(.75rem, 4cqi, 4rem);
    padding-bottom: clamp(.4rem, 1.2cqi, 1rem);
}

.slide-clickable[b-ukxzhnscjo] {
    cursor: pointer;
    outline: none;
}

    .slide-clickable:focus-visible[b-ukxzhnscjo] {
        box-shadow: inset 0 0 0 3px #ffd166;
    }

.product-image[b-ukxzhnscjo] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
    animation: imageFadeIn-b-ukxzhnscjo .9s ease-out, kenBurns-b-ukxzhnscjo 8s ease-in-out;
}

.image-overlay[b-ukxzhnscjo] {
    /* No longer darkens the full image. Readability for the bottom text/price is
       handled by a localized backdrop on .content plus its text-shadow, so the
       photo itself stays bright top-to-bottom. */
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
    animation: overlayFadeIn-b-ukxzhnscjo 1.2s ease-out;
}

.content[b-ukxzhnscjo] {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 90cqi;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: clamp(.5rem, 2cqi, 1.5rem);
    color: #fff;
    text-align: left;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .9), 0 0 14px rgba(0, 0, 0, .6);
    animation: contentSlideUp-b-ukxzhnscjo .8s ease-out;
    line-height: 1.15;
    /* Localized dark backdrop only behind the text strip — keeps the rest of the image bright. */
    background: linear-gradient(to top, rgba(0, 0, 0, .65), rgba(0, 0, 0, .25));
    padding: clamp(.4rem, 1.5cqi, .9rem) clamp(.6rem, 2.5cqi, 1.25rem);
    border-radius: 10px;
}

/* Full-screen mode: show the image completely clean — no overlay, no backdrop strip.
   Text/price stay readable via the existing text-shadow on .content. */
.shop-showcase-fullscreen .image-overlay[b-ukxzhnscjo] {
    display: block;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, .18) 74%, rgba(0, 0, 0, .4) 100%);
}

.shop-showcase-fullscreen .content[b-ukxzhnscjo] {
    background: none;
    padding: 0;
    border-radius: 0;
}

/* Full-screen mode: lift the text/price away from the bottom edge for breathing room. */
.shop-showcase-fullscreen .slide[b-ukxzhnscjo] {
    padding-bottom: clamp(4rem, 6cqi, 5rem);
    padding-left: clamp(1.5rem, 5cqi, 5rem);
    padding-right: clamp(1.5rem, 5cqi, 5rem);
}

/* Embedded mode: smaller product name so it fits the compact preview. */
.shop-showcase-embedded .content h1[b-ukxzhnscjo] {
    font-size: clamp(.85rem, 5cqi, 1.6rem);
}

.shop-showcase-embedded .price[b-ukxzhnscjo] {
    font-size: clamp(.8rem, 4.5cqi, 1.4rem);
}

/* Embedded mode: fill the frame (no black letterbox bars). The image flows in
   normal layout so the container hugs its natural aspect ratio — the full
   image (both width and height) is always visible. The kenBurns transform on
   .product-image still provides the gentle zoom animation. */
.shop-showcase-embedded .slide[b-ukxzhnscjo] {
    height: auto;
    min-height: 220px;
    padding: 0;
    display: block;
}

.shop-showcase-embedded .product-image[b-ukxzhnscjo] {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    object-fit: initial;
    display: block;
    background: transparent;
}

/* Text strip stays overlaid at the bottom edge of the image. */
.shop-showcase-embedded .content[b-ukxzhnscjo] {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 100%;
    border-radius: 0;
    padding: clamp(.3rem, 1.2cqi, .7rem) clamp(.5rem, 2cqi, 1rem);
}

.content-text[b-ukxzhnscjo] {
    min-width: 0;
    flex: 1 1 auto;
}

    .content h1[b-ukxzhnscjo] {
        font-size: clamp(1.1rem, 8cqi, 5.5rem);
        margin: 0;
        line-height: 1.05;
        word-break: break-word;
    }

    .content p[b-ukxzhnscjo] {
        font-size: clamp(.75rem, 3.5cqi, 1.8rem);
        margin-top: clamp(.25rem, 1cqi, .8rem);
        margin-bottom: 0;
        opacity: .92;
    }

.price[b-ukxzhnscjo] {
    font-size: clamp(1rem, 7cqi, 4rem);
    font-weight: 700;
    color: #ffd166;
    letter-spacing: .01em;
    text-align: right;
    flex: 0 0 auto;
    white-space: nowrap;
}

.status-panel[b-ukxzhnscjo] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: clamp(.85rem, 3cqi, 2rem);
    text-align: center;
    padding: 1rem;
}

@keyframes imageFadeIn-b-ukxzhnscjo {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes overlayFadeIn-b-ukxzhnscjo {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes contentSlideUp-b-ukxzhnscjo {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes kenBurns-b-ukxzhnscjo {
    0% {
        transform: scale(1) translate3d(0, 0, 0);
    }

    50% {
        transform: scale(1.04) translate3d(-0.8%, -0.4%, 0);
    }

    100% {
        transform: scale(1.08) translate3d(-1.2%, -0.8%, 0);
    }
}

@keyframes kenBurnsSoft-b-ukxzhnscjo {
    0% {
        transform: scale(1) translate3d(0, 0, 0);
    }

    50% {
        transform: scale(1.02) translate3d(-0.3%, -0.2%, 0);
    }

    100% {
        transform: scale(1.04) translate3d(-0.5%, -0.3%, 0);
    }
}

/* --- Sold overlay (mirrors the shop card treatment) --- */
.display-sold-overlay[b-ukxzhnscjo] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 2;
}

.display-sold-stamp[b-ukxzhnscjo] {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: clamp(3rem, 14cqi, 12rem);
    font-weight: 900;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #b3261e;
    padding: 0.6rem 2rem 0.7rem;
    border: 6px double #b3261e;
    border-radius: 10px;
    background: rgba(255, 253, 248, 0.85);
    transform: rotate(-14deg);
    text-shadow: 0 2px 0 rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(179, 38, 30, 0.35);
    animation: displaySoldStampIn-b-ukxzhnscjo 0.7s cubic-bezier(.2,.9,.25,1.3) both;
}

@keyframes displaySoldStampIn-b-ukxzhnscjo {
    0% {
        opacity: 0;
        transform: rotate(-14deg) scale(1.9);
    }

    60% {
        opacity: 1;
        transform: rotate(-14deg) scale(0.94);
    }

    100% {
        opacity: 1;
        transform: rotate(-14deg) scale(1);
    }
}
/* /Components/DrinksCalulatorView.razor.rz.scp.css */


.drinks-subtitle[b-e1uonsh58b] {
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.2rem;
    color: #daa520;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    margin-bottom: 1.5rem;
}

.btn-home[b-e1uonsh58b] {
    display: inline-block;
    padding: 0.4rem 0.5rem;
    background: transparent;
    border: 2px solid #daa520;
    color: #daa520;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    margin-top: 0.5rem;
}


/*.item-price {
    min-width: 70px;
    text-align: right;
    font-weight: 600;
}

.drink-row-selected {
    background: #f6d24a;
    border-left: 5px solid #1d9a73;
}
*/
.alert[b-e1uonsh58b] {
    margin-top: 6px;
    height: 3.1rem;
    line-height: 3.1rem;
    padding: 0px 0px;
}
/* /Components/DrinksTileView.razor.rz.scp.css */

/*.item-price {
    min-width: 70px;
    text-align: right;
    font-weight: 600;
}

.drink-row-selected {
    background: #f6d24a;
    border-left: 5px solid #1d9a73;
}
*/
.alert[b-708mp5znhe] {
    margin-top: 6px;
    height: 3.1rem;
    line-height: 3.1rem;
    padding: 0px 0px;
}
/* /Components/DrinksView.razor.rz.scp.css */
/* Hero Section */



/* Menu Section */
.menu-section[b-95hups82cj] {
    padding: 1rem 0;
    background: #faf8f5;
    min-height: 50vh;
}

.menu-category[b-95hups82cj] {
    background: #fff;
    padding: 1rem;
    margin-bottom: 0.1rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-left: 4px solid #daa520;
}

.category-title[b-95hups82cj] {
    font-size: 1.5rem;
    font-family: 'Georgia', serif;
    color: #2c1810;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.category-subtitle[b-95hups82cj] {
    font-size: 1rem;
    font-family: 'Georgia', serif;
    color: #6b4423;
    margin-bottom: 1rem;
    font-style: italic;
    font-weight: 300;
}

.wine-types[b-95hups82cj] {
    font-size: 1.2rem;
    color: #4a2c1f;
    margin-bottom: 0.5rem;
    text-align: center;
    line-height: 1.8;
}

.wine-types-sub[b-95hups82cj] {
    font-size: 1rem;
    color: #888;
    font-style: italic;
}

.menu-items[b-95hups82cj] {
    margin-top: 1rem;
}

.menu-item[b-95hups82cj] {
    display: flex;
    align-items: baseline;
    padding: 0.1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

    .menu-item:last-child[b-95hups82cj] {
        border-bottom: none;
    }

    .menu-item:hover[b-95hups82cj] {
        padding-left: 1rem;
        background: rgba(218, 165, 32, 0.05);
        margin: 0 -1rem;
        padding-right: 1rem;
    }

.item-name[b-95hups82cj] {
    font-size: 1.3rem;
    color: #2c1810;
    font-weight: 500;
    white-space: nowrap;
}

.item-size[b-95hups82cj] {
    font-weight: 100;
    white-space: nowrap;
}

.item-detail[b-95hups82cj] {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    font-weight: 400;
    margin-left: 0.5rem;
}

.item-dots[b-95hups82cj] {
    flex: 1;
    border-bottom: 2px dotted rgba(218, 165, 32, 0.3);
    margin: 0 1rem;
}

.item-price[b-95hups82cj] {
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
    font-family: 'Georgia', serif;
}

/* Menu Footer */
.menu-footer[b-95hups82cj] {
    background: #2c1810;
    padding: 2rem 0;
    color: #f5e6d3;
}

.footer-note[b-95hups82cj] {
    margin: 0.5rem 0;
    font-size: 1rem;
    opacity: 0.9;
}

/* Animations */
@keyframes fadeInDown-b-95hups82cj {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp-b-95hups82cj {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Category image: warm polaroid-style frame with an inviting entrance and hover --- */
.category-image-frame[b-95hups82cj] {
    display: inline-block;
    padding: 8px 8px 22px;
    margin: 0.75rem auto 0.25rem;
    background: linear-gradient(180deg, #fffdf8 0%, #f5ecd8 100%);
    border-radius: 4px;
    box-shadow: 0 6px 18px rgba(60, 40, 20, 0.18), 0 1px 2px rgba(60, 40, 20, 0.10), inset 0 0 0 1px rgba(255, 255, 255, 0.7);
    transform-origin: center bottom;
    transition: transform 0.5s cubic-bezier(.2,.7,.2,1.2), box-shadow 0.4s ease;
    will-change: transform;
    animation:
        polaroidDrop-b-95hups82cj 0.9s cubic-bezier(.2,.7,.2,1.2) both,
        polaroidFloat-b-95hups82cj 6s ease-in-out 1.2s infinite;
}

    .category-image-frame:hover[b-95hups82cj],
    .category-image-frame:focus-within[b-95hups82cj] {
        transform: translateY(-6px) scale(1.04);
        box-shadow: 0 18px 36px rgba(60, 40, 20, 0.28), 0 3px 6px rgba(60, 40, 20, 0.14);
    }

.category-image[b-95hups82cj] {
    display: block;
    width: 150px;
    max-width: 100%;
    height: auto;
    border-radius: 2px;
    transition: filter 0.4s ease, transform 0.6s ease;
    filter: saturate(0.92);
}

.category-image-frame:hover .category-image[b-95hups82cj],
.category-image-frame:focus-within .category-image[b-95hups82cj] {
    filter: saturate(1.08);
    transform: scale(1.03);
}

@keyframes polaroidDrop-b-95hups82cj {
    0% {
        opacity: 0;
        transform: translateY(-40px) scale(0.9);
    }

    60% {
        opacity: 1;
        transform: translateY(6px) scale(1.02);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes polaroidFloat-b-95hups82cj {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .category-image-frame[b-95hups82cj],
    .category-image[b-95hups82cj] {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
}
/* /Components/GoogleReviewsBadge.razor.rz.scp.css */
.google-reviews[b-ygbmgg520v] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    background: rgba(255, 255, 255, 0.94);
    color: #2c1810;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

    .google-reviews:hover[b-ygbmgg520v],
    .google-reviews:focus-visible[b-ygbmgg520v] {
        transform: translateY(-1px);
        background: #fff;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.32);
        color: #2c1810;
    }

.google-g[b-ygbmgg520v] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    background: conic-gradient(from -45deg, #4285f4 0 25%, #34a853 25% 50%, #fbbc05 50% 75%, #ea4335 75% 100%);
    color: #fff;
    font-family: 'Arial', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    line-height: 1;
    box-shadow: inset 0 0 0 2px #fff;
}

.google-reviews-stars[b-ygbmgg520v] {
    display: inline-flex;
    gap: 1px;
    font-size: 1.05rem;
    line-height: 1;
}

.google-reviews-star[b-ygbmgg520v] {
    color: #e0d6c3;
}

    .google-reviews-star.star-full[b-ygbmgg520v] {
        color: #f4b400;
    }

    .google-reviews-star.star-half[b-ygbmgg520v] {
        background: linear-gradient(90deg, #f4b400 50%, #e0d6c3 50%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.google-reviews-label[b-ygbmgg520v] {
    font-weight: 600;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

@@media (max-width: 480px) {
    .google-reviews[b-ygbmgg520v] {
        font-size: 0.85rem;
        padding: 0.35rem 0.75rem;
        gap: 0.4rem;
    }

    .google-reviews-stars[b-ygbmgg520v] {
        font-size: 0.95rem;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/*.page {
    position: relative;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}
*/
/*.sidebar {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}
*/

/*.top-row {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row ::deep a, .top-row ::deep .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row ::deep a:hover, .top-row ::deep .btn-link:hover {
        text-decoration: underline;
    }

    .top-row ::deep a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }
*/
/*@media (max-width: 640.98px) {
    .top-row {
        justify-content: space-between;
    }

    .top-row ::deep a, .top-row ::deep .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page {
        flex-direction: row;
    }

    .sidebar {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth ::deep a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row, article {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
*/
#blazor-error-ui[b-oz4tg4e4xd] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-oz4tg4e4xd] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-15ctmiyp48] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: black;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(100, 100, 100, 0.5);
}

.navbar-toggler:checked[b-15ctmiyp48] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-15ctmiyp48] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-15ctmiyp48] {
    font-size: 1.1rem;
}

.bi[b-15ctmiyp48] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-15ctmiyp48] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-15ctmiyp48] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-15ctmiyp48] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-15ctmiyp48] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
    
}

    .nav-item:first-of-type[b-15ctmiyp48] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-15ctmiyp48] {
        padding-bottom: 1rem;
    }

    .nav-item[b-15ctmiyp48]  .nav-link {
        color: #d7d7d7;
        background-color: black;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
        padding: 0 1rem;
    }

.nav-item[b-15ctmiyp48]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-15ctmiyp48]  .nav-link:hover {
    background-color: #dc3545;
    color: white;
}

.nav-scrollable[b-15ctmiyp48] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-15ctmiyp48] {
    display: block;
}

/*@media (min-width: 641px) {
    .navbar-toggler {
        display: none;
    }

    .nav-scrollable {*/
        /* Never collapse the sidebar for wide screens */
        /*display: block;*/

        /* Allow sidebar to scroll for tall menus */
        /*height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}*/
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-lja9t38km4],
.components-reconnect-repeated-attempt-visible[b-lja9t38km4],
.components-reconnect-failed-visible[b-lja9t38km4],
.components-pause-visible[b-lja9t38km4],
.components-resume-failed-visible[b-lja9t38km4],
.components-rejoining-animation[b-lja9t38km4] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-lja9t38km4],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-lja9t38km4],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-lja9t38km4],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-lja9t38km4],
#components-reconnect-modal.components-reconnect-retrying[b-lja9t38km4],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-lja9t38km4],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-lja9t38km4],
#components-reconnect-modal.components-reconnect-failed[b-lja9t38km4],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-lja9t38km4] {
    display: block;
}


#components-reconnect-modal[b-lja9t38km4] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-lja9t38km4 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-lja9t38km4 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-lja9t38km4 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-lja9t38km4]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-lja9t38km4 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-lja9t38km4 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-lja9t38km4 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-lja9t38km4 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-lja9t38km4] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-lja9t38km4] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-lja9t38km4] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-lja9t38km4] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-lja9t38km4] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-lja9t38km4] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-lja9t38km4] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-lja9t38km4 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-lja9t38km4] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-lja9t38km4 {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Drinks.razor.rz.scp.css */
/* Hero Section */

/* Menu Section */
.menu-section[b-v8dn16i1x6] {
    padding: 1rem 0;
    background: #faf8f5;
    min-height: 50vh;
}

.menu-category[b-v8dn16i1x6] {
    background: #fff;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-left: 4px solid #daa520;
}

.category-title[b-v8dn16i1x6] {
    font-size: 1.5rem;
    font-family: 'Georgia', serif;
    color: #2c1810;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.category-subtitle[b-v8dn16i1x6] {
    font-size: 1rem;
    font-family: 'Georgia', serif;
    color: #6b4423;
    margin-bottom: 1rem;
    font-style: italic;
    font-weight: 300;
}

.wine-types[b-v8dn16i1x6] {
    font-size: 1.2rem;
    color: #4a2c1f;
    margin-bottom: 0.5rem;
    text-align: center;
    line-height: 1.8;
}

.wine-types-sub[b-v8dn16i1x6] {
    font-size: 1rem;
    color: #888;
    font-style: italic;
}

.menu-items[b-v8dn16i1x6] {
    margin-top: 1rem;
}

.menu-item[b-v8dn16i1x6] {
    display: flex;
    align-items: baseline;
    padding: 0.1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.menu-item:last-child[b-v8dn16i1x6] {
    border-bottom: none;
}

.menu-item:hover[b-v8dn16i1x6] {
    padding-left: 1rem;
    background: rgba(218, 165, 32, 0.05);
    margin: 0 -1rem;
    padding-right: 1rem;
}

.item-name[b-v8dn16i1x6] {
    font-size: 1.3rem;
    color: #2c1810;
    font-weight: 500;
    white-space: nowrap;
}

.item-size[b-v8dn16i1x6] {
    font-weight: 100;
    white-space: nowrap;
}

.item-detail[b-v8dn16i1x6] {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    font-weight: 400;
    margin-left: 0.5rem;
}

.item-dots[b-v8dn16i1x6] {
    flex: 1;
    border-bottom: 2px dotted rgba(218, 165, 32, 0.3);
    margin: 0 1rem;
}

.item-price[b-v8dn16i1x6] {
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
    font-family: 'Georgia', serif;
}

/* Menu Footer */
.menu-footer[b-v8dn16i1x6] {
    background: #2c1810;
    padding: 2rem 0;
    color: #f5e6d3;
}

.footer-note[b-v8dn16i1x6] {
    margin: 0.5rem 0;
    font-size: 1rem;
    opacity: 0.9;
}

/* Animations */
@keyframes fadeInDown-b-v8dn16i1x6 {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp-b-v8dn16i1x6 {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* /Components/Pages/Gallery.razor.rz.scp.css */
.btn-home[b-wzt746a34v] {
    display: inline-block;
    padding: 0.4rem 0.5rem;
    background: transparent;
    border: 2px solid #daa520;
    color: #daa520;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    margin-top: 0.5rem;
}


.gallery[b-wzt746a34v] {
    padding-bottom: 2rem;
}

.gallery .gallery-card[b-wzt746a34v] {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery .gallery-card img[b-wzt746a34v] {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.gallery .gallery-card[b-wzt746a34v] {
    cursor: pointer;
}

.gallery .gallery-card:hover[b-wzt746a34v] {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.gallery-pager[b-wzt746a34v] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 1rem;
    margin: 2rem 0 3rem;
    width: 100%;
    border-top: 1px solid #d4c5a9;
    border-bottom: 1px solid #d4c5a9;
    background: linear-gradient(to bottom, rgba(255, 253, 248, 0.6), rgba(245, 236, 216, 0.6));
    border-radius: 8px;
}

.gallery-pager-btn[b-wzt746a34v] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: #fffdf8;
    color: #5c4a3a;
    border: 1px solid #c9a86a;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    box-shadow: 0 2px 6px rgba(60, 40, 20, 0.08);
}

    .gallery-pager-btn:hover:not(:disabled)[b-wzt746a34v],
    .gallery-pager-btn:focus-visible:not(:disabled)[b-wzt746a34v] {
        background: #8b6f47;
        color: #fffdf8;
        border-color: #8b6f47;
        transform: translateY(-2px);
        box-shadow: 0 6px 14px rgba(60, 40, 20, 0.18);
        outline: none;
    }

    .gallery-pager-btn:disabled[b-wzt746a34v] {
        opacity: 0.4;
        cursor: not-allowed;
        box-shadow: none;
        background: #f2ece0;
        color: #a89e8a;
        border-color: #d9cdb4;
    }

    .gallery-pager-btn i[b-wzt746a34v] {
        font-size: 0.85rem;
    }

.gallery-pager-status[b-wzt746a34v] {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.05rem;
    color: #5c4a3a;
    letter-spacing: 0.02em;
    min-width: 8rem;
    text-align: center;
}

    .gallery-pager-status strong[b-wzt746a34v] {
        color: #8b6f47;
        font-weight: 700;
    }

@media (max-width: 575px) {
    .gallery .gallery-card img[b-wzt746a34v] {
        height: 180px;
    }
}

.gallery-overlay[b-wzt746a34v] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    z-index: 1050;
}

.gallery-nav[b-wzt746a34v] {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: none;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    font-size: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-nav:hover[b-wzt746a34v] {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.gallery-nav-prev[b-wzt746a34v] {
    margin-right: 1.5rem;
}

.gallery-nav-next[b-wzt746a34v] {
    margin-left: 1.5rem;
}

.gallery-overlay-content[b-wzt746a34v] {
    max-width: min(90vw, 1100px);
    max-height: 85vh;
    background: #111;
    border-radius: 18px;
    padding: 0.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.gallery-overlay-content img[b-wzt746a34v] {
    display: block;
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 14px;
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* Hero Section */
.hero-section[b-00mf9lso6c] {
    position: relative;
    min-height: 100vh;
/*    background: linear-gradient(rgba(44, 24, 16, 0.5), rgba(44, 24, 16, 0.6)), url('/Images/Ude01.jpg');*/
    background: linear-gradient( rgba(44, 24, 16, 0.25), rgba(44, 24, 16, 0.35) ), url('/Images/Ude01.jpg');
/*    background: linear-gradient( rgba(44, 24, 16, 0.15), rgba(44, 24, 16, 0.25) ), url('/Images/Ude01.jpg');*/
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #2c1810;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.hero-section[b-00mf9lso6c]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0.5;
}

.hero-overlay[b-00mf9lso6c] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(218, 165, 32, 0.15) 0%, transparent 50%);
}

.hero-content[b-00mf9lso6c] {
    position: relative;
    text-align: center;
    color: #f5e6d3;
    z-index: 2;
    /*padding: 2rem;*/
}


.hero-title[b-00mf9lso6c] {
    
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    margin-top: 1rem;
    letter-spacing: 0.3rem;
    font-family: 'Georgia', serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInDown-b-00mf9lso6c 1s ease-out;
}

.hero-subtitle[b-00mf9lso6c] {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.2rem;
    margin-bottom: 1rem;
    color: #e6b84a;
    animation: fadeInUp-b-00mf9lso6c 1s ease-out 0.3s both;
}

.hero-location[b-00mf9lso6c] {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp-b-00mf9lso6c 1s ease-out 0.6s both;
}

.btn-discover[b-00mf9lso6c] {
    display: inline-block;
    padding: 1rem 3rem;
    background: transparent;
    border: 2px solid #daa520;
    color: #daa520;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.15rem;
    transition: all 0.3s ease;
    animation: fadeInUp-b-00mf9lso6c 1s ease-out 0.9s both;
}

.img_animation[b-00mf9lso6c] {
    /* Responsive sizing: ~22% of viewport width, but never smaller than 200px or larger than 300px.
       Keeps the circle a good size on phones without exploding on wide laptop/desktop screens. */
    width: clamp(200px, 22vw, 300px);
    height: clamp(200px, 22vw, 300px);
    object-fit: cover;
    transition: all 0.3s ease;
    animation: fadeInUp-b-00mf9lso6c 1s ease-out 0.9s both;
}

.btn-discover-noanimation[b-00mf9lso6c] {
    display: inline-block;
    padding: 1rem 3rem;
    background: transparent;
    border: 2px solid #daa520;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.15rem;
/*    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.9s both;*/
}

.btn-discover:hover[b-00mf9lso6c] {
    background: #daa520;
    color: #2c1810;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(218, 165, 32, 0.3);
}

/* Hero actions: primary + secondary buttons */
.hero-actions[b-00mf9lso6c] {
    text-align: center;
    margin: 1.5rem 0;
}

.btn-discover-primary[b-00mf9lso6c] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 3.2rem;
    background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
    border: 2px solid #daa520;
    color: #2c1810;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.18rem;
    text-transform: uppercase;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(218, 165, 32, 0.35);
    transition: all 0.3s ease;
    animation: fadeInUp-b-00mf9lso6c 1s ease-out 0.9s both;
}

    .btn-discover-primary:hover[b-00mf9lso6c] {
        background: linear-gradient(135deg, #f1c247 0%, #daa520 100%);
        color: #1a0f0a;
        transform: translateY(-3px);
        box-shadow: 0 14px 30px rgba(218, 165, 32, 0.5);
    }

.secondary-actions[b-00mf9lso6c] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem;
    margin-top: 0.75rem;
}

/* Bar status banner */
.bar-status[b-00mf9lso6c] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.bar-status-open[b-00mf9lso6c] {
    background: linear-gradient(135deg, #1d9a73 0%, #16a34a 100%);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    animation: fadeInUp-b-00mf9lso6c 0.6s ease-out, openBannerGlow-b-00mf9lso6c 2.5s ease-in-out infinite;
}

.bar-status-closed[b-00mf9lso6c] {
    background: rgba(44, 24, 16, 0.85);
    color: #f5e6d3;
    border: 2px solid rgba(218, 165, 32, 0.4);
}

.bar-status-pulse[b-00mf9lso6c] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
    animation: pulseDot-b-00mf9lso6c 1.6s ease-out infinite;
}

.bar-status-text[b-00mf9lso6c] {
    white-space: nowrap;
}

@keyframes pulseDot-b-00mf9lso6c {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes openBannerGlow-b-00mf9lso6c {
    0%, 100% {
        box-shadow: 0 6px 18px rgba(29, 154, 115, 0.4);
    }
    50% {
        box-shadow: 0 8px 28px rgba(29, 154, 115, 0.75);
    }
}

/* Welcome Section */
.welcome-section[b-00mf9lso6c] {
    padding: 6rem 0;
    background: #faf8f5;
}

.section-title[b-00mf9lso6c] {
    font-size: 3rem;
    font-family: 'Georgia', serif;
    /*color: #2c1810;*/
    color:white;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title[b-00mf9lso6c]::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #daa520;
}

.text-center .section-title[b-00mf9lso6c]::after {
    left: 50%;
    transform: translateX(-50%);
}
    
.welcome-text[b-00mf9lso6c] {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.welcome-video-container[b-00mf9lso6c] {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.welcome-video[b-00mf9lso6c] {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.welcome-image-placeholder[b-00mf9lso6c] {
    background: linear-gradient(135deg, #6b4423 0%, #4a2c1f 100%);
    height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}


.image-overlay[b-00mf9lso6c] {
    font-size: 4rem;
    opacity: 0.3;
}

/* Features Section */
.features-section[b-00mf9lso6c] {
    /*padding: 6rem 0;*/
    background: #fff;
}

.feature-card[b-00mf9lso6c] {
    padding: 3rem 2rem;
    background: #faf8f5;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover[b-00mf9lso6c] {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-icon[b-00mf9lso6c] {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.feature-card h3[b-00mf9lso6c] {
    font-size: 1.5rem;
    font-family: 'Georgia', serif;
    color: #2c1810;
    margin-bottom: 1rem;
}

.feature-card p[b-00mf9lso6c] {
    color: #666;
    line-height: 1.6;
}

/* Hours Section */
.hours-section[b-00mf9lso6c] {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2c1810 0%, #4a2c1f 100%);
    color: #f5e6d3;
}

.hours-card[b-00mf9lso6c] {
    background: rgba(255,255,255,0.05);
    padding: 3rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(218, 165, 32, 0.2);
}

.hours-card h3[b-00mf9lso6c] {
    font-size: 2rem;
    font-family: 'Georgia', serif;
    color: #daa520;
    margin-bottom: 2rem;
    text-align: center;
}

.hours-list[b-00mf9lso6c] {
    list-style: none;
    padding: 0;
}

.hours-list li[b-00mf9lso6c] {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 1.1rem;
}

.hours-list li:last-child[b-00mf9lso6c] {
    border-bottom: none;
}

/* Ambiance Section */
.ambiance-section[b-00mf9lso6c] {
    padding: 6rem 0;
    background: #faf8f5;
}

.ambiance-card[b-00mf9lso6c] {
    text-align: center;
    padding: 2rem;
}

.ambiance-placeholder[b-00mf9lso6c] {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #6b4423 0%, #4a2c1f 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.ambiance-card:hover .ambiance-placeholder[b-00mf9lso6c] {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.ambiance-card p[b-00mf9lso6c] {
    color: #2c1810;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Contact Section */
.contact-section[b-00mf9lso6c] {
            
    background: #fff;
}

.contact-address[b-00mf9lso6c] {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.address-link[b-00mf9lso6c] {
    color: #2c1810;
    text-decoration: none;  
    transition: all 0.3s ease;
    display: inline-block;
    border-bottom: 2px solid transparent;
}

.address-link:hover[b-00mf9lso6c] {
    color: #daa520;
    border-bottom: 2px solid #daa520;
    transform: translateY(-2px);
}

.contact-info[b-00mf9lso6c] {
    font-size: 1.2rem;
    line-height: 2;
    color: #666;
    margin-bottom: 2rem;
}

.contact-link[b-00mf9lso6c] {
    color: #2c1810;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border-bottom: 2px solid transparent;
}

.contact-link:hover[b-00mf9lso6c] {
    color: #daa520;
    border-bottom: 2px solid #daa520;
    transform: translateY(-2px);
}

.social-links[b-00mf9lso6c] {
    margin-top: 2rem;
}

.social-link[b-00mf9lso6c] {
    display: inline-block;
    margin: 0.5rem 0.5rem;
    padding: 0.8rem 1rem;
    /*background: transparent;*/
    background-color: #D1A51E;
    border: 2px solid #2c1810;
    color: #2c1810;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-link:hover[b-00mf9lso6c] {
    background: #2c1810;
    color: #f5e6d3;
    transform: translateY(-2px);
}

/* Footer */
.footer[b-00mf9lso6c] {
    background: #1a0f0a;
    color: #f5e6d3;
    padding: 3rem 0;
}

.footer p[b-00mf9lso6c] {
    margin: 0.5rem 0;
    opacity: 0.8;
}

.footer-tagline[b-00mf9lso6c] {
    font-style: italic;
    color: #daa520;
    margin-top: 1rem;
}

/* Animations */
@keyframes fadeInDown-b-00mf9lso6c {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp-b-00mf9lso6c {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 576px) {

    .hero-title[b-00mf9lso6c] {
        font-size: 1.3rem;
        letter-spacing: 0.08rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle[b-00mf9lso6c] {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
    }

    .hero-location[b-00mf9lso6c] {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .social-link[b-00mf9lso6c] {
        padding: 0.5rem 0.8rem;
        margin: 0.25rem;
        font-size: 0.9rem;
    }

    .btn-discover[b-00mf9lso6c],
    .btn-discover-noanimation[b-00mf9lso6c] {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .btn-discover-primary[b-00mf9lso6c] {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
        letter-spacing: 0.12rem;
        width: auto;
    }

    .bar-status[b-00mf9lso6c] {
        font-size: 0.95rem;
        padding: 0.55rem 1rem;
        max-width: 90vw;
    }

    .bar-status-text[b-00mf9lso6c] {
        white-space: normal;
        text-align: center;
    }
}
/* Responsive Design */
/*@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 0.2rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

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

    .welcome-video-container {
        margin-top: 2rem;
    }

    .welcome-image-placeholder {
        height: 300px;
        margin-top: 2rem;
    }

    .hours-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
}
*/
/* Smooth scrolling */
html[b-00mf9lso6c] {
    scroll-behavior: smooth;
}


.special-events-list[b-00mf9lso6c] {
    display: inline-block;
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 1rem auto;
}

    .special-events-list li[b-00mf9lso6c] {
        margin-bottom: 0.4rem;
    }
/* /Components/Pages/Kai.razor.rz.scp.css */
.tile-selected[b-fz2ulxqgr2] {
    border: 4px solid red;
    border-radius: 1px;
    transition: all 0.25s ease;
    cursor: pointer;
    background: #fff;
}
/* /Components/Pages/LogView.razor.rz.scp.css */
.log-view-page[b-cy271qknjs] {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0.5rem;
}

.ua[b-cy271qknjs] {
    max-width: 480px;
}

code[b-cy271qknjs] {
    font-size: 0.85rem;
}
/* /Components/Pages/Pc.razor.rz.scp.css */

/* /Components/Pages/Shop.razor.rz.scp.css */

.antique-shop[b-qmjoh5mcti] {
    min-height: 100vh;
    background: linear-gradient(to bottom, #f5f0e8 0%, #e8dcc8 100%);
    font-family: 'Georgia', 'Times New Roman', serif;
}


.container[b-qmjoh5mcti] {
/*    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
*/}

.filters-section[b-qmjoh5mcti] {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    border: 2px solid #d4c5a9;
}

.search-box[b-qmjoh5mcti] {
    position: relative;
    margin-bottom: 1.5rem;
}

.search-input[b-qmjoh5mcti] {
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    font-size: 1.1rem;
    border: 2px solid #8b6f47;
    border-radius: 10px;
    background: #faf8f3;
    font-family: 'Georgia', serif;
    transition: all 0.3s ease;
}

    .search-input:focus[b-qmjoh5mcti] {
        outline: none;
        border-color: #5c4a3a;
        box-shadow: 0 0 0 3px rgba(139, 111, 71, 0.1);
    }

.search-icon[b-qmjoh5mcti] {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

.category-filters[b-qmjoh5mcti] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.filter-btn[b-qmjoh5mcti] {
    padding: 0.75rem 1.5rem;
    background: #f5f0e8;
    border: 2px solid #8b6f47;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Georgia', serif;
    font-weight: bold;
    color: #5c4a3a;
}

    .filter-btn:hover[b-qmjoh5mcti] {
        background: #e8dcc8;
        transform: translateY(-2px);
    }

    .filter-btn.active[b-qmjoh5mcti] {
        background: #8b6f47;
        color: white;
        box-shadow: 0 4px 10px rgba(139, 111, 71, 0.3);
    }

.products-grid[b-qmjoh5mcti] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.shop-pager[b-qmjoh5mcti] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 1rem;
    margin: 2rem 0 3rem;
    width: 100%;
    border-top: 1px solid #d4c5a9;
    border-bottom: 1px solid #d4c5a9;
    background: linear-gradient(to bottom, rgba(255, 253, 248, 0.6), rgba(245, 236, 216, 0.6));
    border-radius: 8px;
}

.pager-btn[b-qmjoh5mcti] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: #fffdf8;
    color: #5c4a3a;
    border: 1px solid #c9a86a;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    box-shadow: 0 2px 6px rgba(60, 40, 20, 0.08);
}

    .pager-btn:hover:not(:disabled)[b-qmjoh5mcti],
    .pager-btn:focus:not(:disabled)[b-qmjoh5mcti] {
        background: #8b6f47;
        color: #fffdf8;
        border-color: #8b6f47;
        transform: translateY(-2px);
        box-shadow: 0 6px 14px rgba(60, 40, 20, 0.18);
    }

    .pager-btn:disabled[b-qmjoh5mcti] {
        opacity: 0.45;
        cursor: not-allowed;
        box-shadow: none;
    }

    .pager-btn i[b-qmjoh5mcti] {
        font-size: 0.85rem;
    }

.pager-status[b-qmjoh5mcti] {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.05rem;
    color: #5c4a3a;
    letter-spacing: 0.02em;
    min-width: 8rem;
    text-align: center;
}

    .pager-status strong[b-qmjoh5mcti] {
        color: #8b6f47;
        font-weight: 700;
    }

.shop-page-label[b-qmjoh5mcti] {
    min-width: 5rem;
    text-align: center;
    font-weight: 600;
}

.product-card[b-qmjoh5mcti] {
    background: linear-gradient(180deg, #fffdf8 0%, #f7f0e2 100%);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(60, 40, 20, 0.12), 0 1px 2px rgba(60, 40, 20, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    border: 1px solid #e0d2b5;
    scroll-margin-top: 90px;
    display: flex;
    flex-direction: column;
    position: relative;
}

    .product-card[b-qmjoh5mcti]::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 14px;
        pointer-events: none;
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
    }

    .product-card:hover[b-qmjoh5mcti] {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(60, 40, 20, 0.22), 0 2px 4px rgba(60, 40, 20, 0.08);
        border-color: #c9a86a;
    }

.product-card-highlight[b-qmjoh5mcti] {
    border-color: #ffd166;
    box-shadow: 0 0 0 4px rgba(255, 209, 102, .55), 0 10px 30px rgba(0, 0, 0, .25);
    animation: productPulse-b-qmjoh5mcti 1.6s ease-out 2;
}

@keyframes productPulse-b-qmjoh5mcti {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 209, 102, .9), 0 5px 20px rgba(0, 0, 0, .15);
    }

    100% {
        box-shadow: 0 0 0 18px rgba(255, 209, 102, 0), 0 5px 20px rgba(0, 0, 0, .15);
    }
}

.product-image-container[b-qmjoh5mcti] {
    position: relative;
    overflow: hidden;
    background: #efe6d2;
}

.product-image[b-qmjoh5mcti] {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-image-vignette[b-qmjoh5mcti] {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 55%, rgba(30, 20, 10, 0.18) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-image[b-qmjoh5mcti] {
    transform: scale(1.05);
}

.product-card:hover .product-image-vignette[b-qmjoh5mcti] {
    opacity: 1;
}

.sold-badge[b-qmjoh5mcti] {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(220, 53, 69, 0.95);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.product-rating[b-qmjoh5mcti] {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.star[b-qmjoh5mcti] {
    color: #ddd;
    font-size: 1rem;
}

    .star.filled[b-qmjoh5mcti] {
        color: #ffc107;
    }

.product-details[b-qmjoh5mcti] {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.product-category[b-qmjoh5mcti] {
    display: inline-block;
    background: #8b6f47;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.product-name[b-qmjoh5mcti] {
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    font-size: 1.5rem;
    line-height: 1.2;
    margin: 0 0 0.6rem;
    color: #2c1810;
    font-weight: 700;
    letter-spacing: 0.01em;
}

    .product-name a[b-qmjoh5mcti] {
        color: inherit;
        text-decoration: none;
        background-image: linear-gradient(currentColor, currentColor);
        background-position: 0 100%;
        background-repeat: no-repeat;
        background-size: 0 1px;
        transition: background-size 0.35s ease, color 0.25s ease;
    }

        .product-name a:hover[b-qmjoh5mcti],
        .product-name a:focus[b-qmjoh5mcti] {
            color: #8b6f47;
            background-size: 100% 1px;
        }

.product-description[b-qmjoh5mcti] {
    color: #5c4a3a;
    line-height: 1.65;
    margin: 0.5rem 0 1rem;
    font-size: 0.98rem;
    font-style: italic;
    min-height: 3rem;
}

.product-links[b-qmjoh5mcti] {
    display: flex;
    gap: 0.5rem;
    margin: 0.25rem 0 0.5rem;
}

.product-link[b-qmjoh5mcti] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: #f5ecd8;
    color: #8b6f47;
    border: 1px solid #d4c5a9;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

    .product-link:hover[b-qmjoh5mcti],
    .product-link:focus[b-qmjoh5mcti] {
        background: #8b6f47;
        color: #fffdf8;
        transform: translateY(-2px);
    }

.product-footer[b-qmjoh5mcti] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    position: relative;
}

    .product-footer[b-qmjoh5mcti]::before {
        content: "";
        position: absolute;
        top: 0;
        left: 10%;
        right: 10%;
        height: 1px;
        background: linear-gradient(to right, transparent, #c9a86a, transparent);
    }

.product-price[b-qmjoh5mcti] {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: #8b6f47;
    letter-spacing: 0.02em;
}

.product-price-ask[b-qmjoh5mcti] {
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 600;
    color: #5c4a3a;
}

/* --- Sold state --------------------------------------------------------- */
.product-price-sold[b-qmjoh5mcti] {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #b3261e;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-card-sold[b-qmjoh5mcti] {
    filter: saturate(0.75);
}

    .product-card-sold:hover[b-qmjoh5mcti] {
        filter: saturate(0.9);
    }

.product-image-container[b-qmjoh5mcti] {
    position: relative;
}

.product-sold-overlay[b-qmjoh5mcti] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 2;
    background: rgba(255, 253, 248, 0.15);
}

.product-sold-stamp[b-qmjoh5mcti] {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: clamp(2rem, 7vw, 3.6rem);
    font-weight: 900;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #b3261e;
    padding: 0.35rem 1.25rem 0.4rem;
    border: 4px double #b3261e;
    border-radius: 6px;
    background: rgba(255, 253, 248, 0.82);
    transform: rotate(-14deg);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18), inset 0 0 0 1px rgba(179, 38, 30, 0.35);
    animation: soldStampIn 0.55s cubic-bezier(.2,.9,.25,1.3) both;
}

@@keyframes soldStampIn {
    0%[b-qmjoh5mcti] {
        opacity: 0;
        transform: rotate(-14deg) scale(1.9);
    }

    60%[b-qmjoh5mcti] {
        opacity: 1;
        transform: rotate(-14deg) scale(0.94);
    }

    100%[b-qmjoh5mcti] {
        opacity: 1;
        transform: rotate(-14deg) scale(1);
    }
}

.btn-add-cart[b-qmjoh5mcti] {
    padding: 0.75rem 1.5rem;
    background: #5c4a3a;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    font-family: 'Georgia', serif;
}

    .btn-add-cart:hover:not(:disabled)[b-qmjoh5mcti] {
        background: #8b6f47;
        transform: scale(1.05);
    }

    .btn-add-cart:disabled[b-qmjoh5mcti] {
        background: #ccc;
        cursor: not-allowed;
        opacity: 0.6;
    }

.loading-spinner[b-qmjoh5mcti] {
    text-align: center;
    padding: 4rem;
}

.spinner[b-qmjoh5mcti] {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #8b6f47;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@@keyframes spin {
    0%[b-qmjoh5mcti] {
        transform: rotate(0deg);
    }

    100%[b-qmjoh5mcti] {
        transform: rotate(360deg);
    }
}

.no-results[b-qmjoh5mcti] {
    text-align: center;
    padding: 4rem;
    font-size: 1.3rem;
    color: #666;
    font-style: italic;
}

@@media (max-width: 768px) {
    .shop-title[b-qmjoh5mcti] {
        font-size: 2.5rem;
    }

    .shop-subtitle[b-qmjoh5mcti] {
        font-size: 1.1rem;
    }

    .products-grid[b-qmjoh5mcti] {
        grid-template-columns: 1fr;
    }

    .category-filters[b-qmjoh5mcti] {
        justify-content: center;
    }

    .shop-pager[b-qmjoh5mcti] {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }

    .pager-btn[b-qmjoh5mcti] {
        width: 100%;
        justify-content: center;
    }
}


/* /Components/Receipt.razor.rz.scp.css */


@media print {
    @page {
        size: 80mm auto;
        margin: 0;
    }

    body[b-i2wb7s82nm] {
        width: 80mm;
        margin: 0;
    }
}


.receipt[b-i2wb7s82nm] {
    width: 360px;
    width: 100%;
    margin: 0 auto;
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    color: #111827;
}


.receiptPrint[b-i2wb7s82nm] {
    /*width: 360px;*/
    width: 90%;
    margin: 0 auto;
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    color: #111827;
}


.print[b-i2wb7s82nm] {
    font-size: 32px;
}


.receipt-header[b-i2wb7s82nm] {
    text-align: center;
    border-bottom: 2px dashed #d1d5db;
    padding-bottom: 18px;
}

    .receipt-header h1[b-i2wb7s82nm] {
        margin: 0;
        /*font-size: 24px;*/
    }

    .receipt-header p[b-i2wb7s82nm] {
        margin: 6px 0 0;
        color: #6b7280;
        /*font-size: 14px;*/
    }

.receipt-info[b-i2wb7s82nm] {
    display: flex;
    justify-content: space-between;
    margin: 18px 0;
    /*font-size: 14px;*/
    color: #4b5563;
}

.receipt-items[b-i2wb7s82nm] {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.item[b-i2wb7s82nm] {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
}

    .item strong[b-i2wb7s82nm] {
        display: block;
        /*font-size: 15px;*/
    }

    .item small[b-i2wb7s82nm] {
        display: block;
        margin-top: 4px;
        color: #6b7280;
    }

    .item span[b-i2wb7s82nm] {
        font-weight: 700;
        white-space: nowrap;
    }

.receipt-totalPrint[b-i2wb7s82nm] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 22px;
    padding: 16px;
    /*background: #111827;*/
    color: black;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    /*font-size: 20px;*/
}

.receipt-total[b-i2wb7s82nm] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 22px;
    padding: 16px;
    background: #111827;
    color: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    /*font-size: 20px;*/
}


.receipt-footer[b-i2wb7s82nm] {
    text-align: center;
    margin-top: 22px;
    color: #6b7280;
}

    .receipt-footer p[b-i2wb7s82nm] {
        margin: 0;
        font-weight: 700;
        color: #111827;
    }
/* /Components/ViewCarusel.razor.rz.scp.css */
.view-carusel[b-zzlbwrrnbu] {
    width: 100%;
    overflow: hidden;
    background-color: #000;
}

.view-carusel-rounded[b-zzlbwrrnbu] {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.view-carusel-img[b-zzlbwrrnbu] {
    height: var(--view-carusel-height, 480px);
    object-fit: var(--view-carusel-object-fit, cover);
    object-position: center;
    transition: transform 0.6s ease;
}

.view-carusel-link[b-zzlbwrrnbu] {
    display: block;
    width: 100%;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

    .view-carusel-link:hover .view-carusel-img[b-zzlbwrrnbu] {
        transform: scale(1.02);
    }

.view-carusel-loading[b-zzlbwrrnbu],
.view-carusel-empty[b-zzlbwrrnbu] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: var(--view-carusel-height, 480px);
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 12px;
}

[b-zzlbwrrnbu] .carousel-caption {
    background: rgba(0, 0, 0, 0.45);
    border-radius: 8px;
    padding: 0.5rem 1rem;
}

[b-zzlbwrrnbu] .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.85);
    background-color: rgba(255, 255, 255, 0.4);
    margin: 0 4px;
    opacity: 1;
}

[b-zzlbwrrnbu] .carousel-indicators .active {
    background-color: #daa520;
    border-color: #daa520;
}

@media (max-width: 768px) {
    .view-carusel-img[b-zzlbwrrnbu] {
        height: var(--view-carusel-height, 320px);
    }

    .view-carusel-loading[b-zzlbwrrnbu],
    .view-carusel-empty[b-zzlbwrrnbu] {
        height: var(--view-carusel-height, 320px);
    }
}
/* /Components/WeatherView.razor.rz.scp.css */

.temperature-badge[b-zqjl302srf] {
    display: inline-block;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.55);
    color: #f5e6a8;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
    backdrop-filter: blur(4px);
    background: transparent;
    margin-top: -20px;
}

.weather-widget[b-zqjl302srf] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 8px;
    background: transparent;
    border-radius: 1px;
    font-family: Arial, sans-serif;
    font-size: 22px;
/*    color: white;*/
}


.weather-separator[b-zqjl302srf] {
    color: #4db6ac;
    font-weight: bold;
}

.weather-temp[b-zqjl302srf] {
    font-weight: 500;
}
