:root {
    --cream: #f5f0e6;
    --charcoal: #18130f;
    --espresso: #2d1e16;
    --gold: #c69b53;
    --bronze: #9f6f3d;
    --zigzagsize: 10px;
    --zigzagsize-new-arrivals: 14px;
    --brd: 238, 149, 2;

   
    --brd-wine: 186, 218, 85;

    --alpha-brd: 1;

    /* Header - change these to resize header / logo / menu */
    --header-height: 100px;
    --header-padding-y: 16px;
    --header-padding-x: 24px;
    --logo-max-height: 56px;
    --logo-max-width: 220px;
    --nav-font-size: 16px;
    --nav-gap: 28px;
}

@font-face {
    font-family: 'americantypewriter';
    src: url('font/americantypwrteritcw01--731025.woff2') format('woff2'),
        url('font/americantypwrteritcw02--737091.woff') format('woff2');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'dinneuzeitgroteskltstd';
    src:
        /* url('dinneuzeitgroteskltw01-_812426.latin.woff2') format('woff2'), */
        url('dinneuzeitgroteskltw01-_812426.latin-ext.woff2') format('woff2');
    /* url('dinneuzeitgroteskltw01-_812426.other.woff2') format('woff2'); */
    font-weight: normal;

}

@font-face {
    font-family: 'helvetica-w01-bold';
    src:
        url('helvetica-w01-bold.woff2') format('woff2');

}

html {
    min-height: 100%;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: calc(var(--header-height) + env(safe-area-inset-top, 0px));
}

body {
    margin: 0;
    padding-top: calc(var(--header-height) + env(safe-area-inset-top, 0px));
    font-size: 17px;
    min-height: 100%;
}


/* ===== FULL PAGE PARALLAX SETUP ===== */

.page-wrapper {
    position: relative;
    overflow-x: hidden;
    isolation: isolate;
}

/* Background layer – fixed; use img for reliable mobile parallax */
.parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    /* Fallback when img not loaded or no-JS */
    background: url(../images/bg.jpeg) no-repeat center center;
    background-size: cover;
}

.parallax-bg-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: calc(100% + 60vh);
    min-height: 160%;
    object-fit: cover;
    object-position: center top;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Mobile: ensure parallax layer fills screen (iOS Safari) */
@media (max-width: 767px) {
    .parallax-bg {
        height: 100vh;
        height: 100dvh;
        min-height: -webkit-fill-available;
    }
}

/* Content layer – above parallax */
.page-content {
    position: relative;
    z-index: 1;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    right: calc(18px + env(safe-area-inset-right, 0px));
    bottom: calc(18px + env(safe-area-inset-bottom, 0px));
    width: 50px;
    height: 50px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(198, 155, 83, 0.95);
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35), 0 0 0 4px rgba(198, 155, 83, 0.16);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, background 0.2s ease;
    z-index: 1200;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: rgba(0, 0, 0, 0.78);
}

.back-to-top:focus-visible {
    outline: 2px solid rgba(198, 155, 83, 0.95);
    outline-offset: 3px;
}

.back-to-top i {
    font-size: 16px;
    line-height: 1;
    color: #fff;
}

@media (max-width: 767px) {
    .back-to-top {
        right: calc(12px + env(safe-area-inset-right, 0px));
        bottom: calc(12px + env(safe-area-inset-bottom, 0px));
        width: 46px;
        height: 46px;
    }
}


/* ===== HEADER (theme from barrelbodega.com – logo center, nav) ===== */
.header-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: calc(var(--header-height) + env(safe-area-inset-top, 0px));
    background: #000;
    padding-top: calc(var(--header-padding-y) + env(safe-area-inset-top, 0px));
    padding-right: calc(var(--header-padding-x) + env(safe-area-inset-right, 0px));
    padding-bottom: var(--header-padding-y);
    padding-left: calc(var(--header-padding-x) + env(safe-area-inset-left, 0px));
    z-index: 999;
    transition: top 0.4s ease-in-out;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    /* iOS WebKit: own compositing layer reduces fixed-header paint glitches */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.header-row {
    min-height: calc(var(--header-height) - 2 * var(--header-padding-y));
}

.header-logo-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-link {
    display: inline-block;
}

.logo-img {
    height: auto;
    width: auto;
    display: block;
    object-fit: contain;
}

.header-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--nav-gap);
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-menu a {
    color: #fff;
    text-decoration: none;
    font-size: var(--nav-font-size);
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.header-menu a:hover {
    color: var(--gold);
}

.header-nav-left .header-menu {
    justify-content: flex-start;
}

.header-nav-right .header-menu {
    justify-content: flex-end;
}

.header-nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-mobile-toggle {
    margin-left: auto;
}

/* Mobile: hamburger button (hidden on desktop) */
.header-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.header-toggle-line {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.header-mobile-toggle[aria-expanded="true"] .header-toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.header-mobile-toggle[aria-expanded="true"] .header-toggle-line:nth-child(2) {
    opacity: 0;
}
.header-mobile-toggle[aria-expanded="true"] .header-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile dropdown menu (hidden on desktop) */
.header-mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 998;
}
.header-mobile-menu.open {
    max-height: 320px;
}
.header-mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 12px 0 20px;
}
.header-mobile-nav a {
    display: block;
    padding: 14px 24px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.2s ease, color 0.2s ease;
}
.header-mobile-nav a:last-child {
    border-bottom: 0;
}
.header-mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--gold);
}

/* When header is hidden on scroll down */
.header-hide {
    top: calc(-1 * (var(--header-height) + env(safe-area-inset-top, 0px)) - 12px);
}

@media (max-width: 768px) {
    .header-section {
        --nav-gap: 14px;
        --nav-font-size: 13px;
        --logo-max-height: 44px;
        --logo-max-width: 160px;
    }
    .header-menu a { white-space: nowrap; }
}

.anchor-offset {
    display: block;
    height: 0;
    overflow: hidden;
    position: relative;
    top: calc(-1 * (var(--header-height, 100px) + env(safe-area-inset-top, 0px)));
}

.banner-section {
    /* min-height: 100vh;
    min-height: 100dvh; */
    position: relative;
    color: #fff;
    overflow: visible;
}

/* Banner stays dark */



/* Dark overlay for readability */
/* Dark overlay over parallax so banner content stays readable */
.banner-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.banner-section .container,
.banner-section .banner-inner {
    position: relative;
    z-index: 2;
}

.home-hero-img {
    height: 420px;
    object-fit: cover;
}

@media (max-width: 767px) {
    .home-hero-img {
        height: auto;
        max-height: 60vh;
        object-fit: contain;
        background: rgba(0, 0, 0, 0.35);
    }
}

.banner-inner{
    padding: 50px 15px 70px;
}

/* 1) Lamps row */
.banner-lamps-row{
    margin-bottom: -90px;
   
}

.banner-lamps-row .lamp-img{
    width: 100%;
    height: auto;
}

/* Explore cards strip (below lamps) */
.home-explore-strip {
    max-width: 1170px;
    margin: 16px auto 18px;
    padding: 0 12px;
}

.home-explore-card {
    height: 100%;
    background: transparent;
    border: 1px solid rgba(201, 155, 43, 0.45);
    border-radius: 16px;
    padding: 18px 16px 16px;
    text-align: center;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.home-explore-icon {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: var(--gold);
    background: transparent;
    border: 1px solid rgba(201, 155, 43, 0.55);
}

.home-explore-title {
    font-family: 'dinneuzeitgroteskltstd', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

.home-explore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    border-radius: 999px;
    border: 2px solid var(--gold);
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    background: transparent;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    min-width: 104px;
}

.home-explore-btn:hover {
    transform: translateY(-2px);
    background: var(--gold);
    color: #000;
    box-shadow: 0 8px 18px rgba(198, 155, 83, 0.35);
}

.home-explore-btn:focus-visible {
    outline: 2px solid rgba(198, 155, 83, 0.95);
    outline-offset: 3px;
}

/* 2) Heading (under lamps) */
.banner-special-title{
    font-family: 'americantypewriter', serif;
    text-align: center;
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 0 0 18px;
    color: #fff;
}

/* 3) Bottle slider */
.special-carousel{
    max-width: 1170px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(201, 155, 43, 0.5);
    border-radius: 10px;
    padding: 28px 55px 46px;
}

.special-carousel .carousel-inner{
    padding: 8px 0;
}

.bottle-card {
    padding: 0 8px 12px;
}

.special-bottle-img{
    max-height: 220px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: inline-block;
    filter: drop-shadow(0 12px 18px rgba(0,0,0,0.55));
}

.bottle-name {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 4px;
}

.bottle-price {
    font-size: 16px;
    color: var(--gold);
    margin-bottom: 10px;
}

.bottle-view-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 14px;
    color: var(--gold);
    text-decoration: none;
    border: 1px solid rgba(201, 155, 43, 0.7);
    padding: 6px 14px;
    border-radius: 20px;
    transition: background 0.2s, color 0.2s;
}

.bottle-view-more:hover {
    background: #bada55;
    color: #000;
    border-color: #bada55;
}

.special-carousel .carousel-control-prev-icon,
.special-carousel .carousel-control-next-icon{
    filter: invert(1);
}

.special-carousel .carousel-indicators button{
    background-color: rgba(255, 255, 255, 0.55);
}

.special-carousel .carousel-indicators button.active{
    background-color: var(--gold);
}

/* Carousel: prevent overflow so one slide shows at a time */
.special-carousel .carousel-inner,
.wine-products-carousel .carousel-inner,
.beer-products-carousel .carousel-inner {
    overflow: hidden;
}

.special-carousel .carousel-item,
.wine-products-carousel .carousel-item,
.beer-products-carousel .carousel-item {
    overflow: hidden;
}

/* Beer products carousel: match wine carousel layout and controls */
.beer-products-carousel {
    margin: 0 auto;
    padding: 0 50px;
    position: relative;
}

.beer-products-carousel .carousel-control-prev,
.beer-products-carousel .carousel-control-next {
    width: 56px;
    opacity: 0.95;
}

.beer-products-carousel .carousel-control-prev:hover,
.beer-products-carousel .carousel-control-next:hover {
    opacity: 1;
}
.beer-products-carousel .carousel-inner {
    padding: 10px 0 20px;
}
.beer-products-carousel .carousel-control-prev-icon,
.beer-products-carousel .carousel-control-next-icon {
    filter: invert(0);
    width: 46px;
    height: 46px;
    background-color: rgba(0, 0, 0, 0.55);
    border-radius: 50%;
    background-size: 60% 60%;
}
.beer-products-carousel .carousel-indicators {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 0 8px;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.beer-products-carousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.25);
    text-indent: -9999px;
    overflow: hidden;
    flex-shrink: 0;
    transition: background-color 0.2s ease;
}
.beer-products-carousel .carousel-indicators button.active {
    background-color: var(--gold);
}
.beer-products-carousel .carousel-indicators button:not(.active):hover {
    background-color: rgba(0, 0, 0, 0.4);
}

/* 4) Short description (below slider) */
.banner-short-desc{
    max-width: 680px;
    margin: 22px auto 0;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: #e0e0e0;
}

/* ===== BEER SECTION – attractive, user-friendly design ===== */
.beer-section {
    position: relative;
    padding: 80px 0 70px;
    color: #fff;
    background: url(../images/bg2.png) no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

.beer-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(198, 155, 83, 0.08) 0%, transparent 50%),
                linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.55) 100%);
    pointer-events: none;
    z-index: 0;
}

.beer-section .container {
    position: relative;
    z-index: 1;
}

.beer-section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 48px;
    width: 100%;
}

.beer-section-badge {
    display: inline-block;
    padding: 6px 18px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201, 155, 43, 0.6);
    border-radius: 30px;
    margin-bottom: 18px;
    background: rgba(0, 0, 0, 0.3);
    animation: beer-badge-in 0.6s ease-out;
}

@keyframes beer-badge-in {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.beer-section-heading {
    font-family: 'americantypewriter', serif;
    font-size: 38px;
    font-weight: 300;
    letter-spacing: 3px;
    margin: 0 0 16px;
    color: #fff;
    position: relative;
    display: block;
    text-align: center;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    animation: beer-heading-in 0.6s ease-out 0.1s both;
}

@keyframes beer-heading-in {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.beer-section-heading::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
}

.beer-section-desc {
    display: block;
    max-width: 520px;
    margin: 0 auto 24px;
    padding: 0 15px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    animation: beer-desc-in 0.6s ease-out 0.2s both;
}

@keyframes beer-desc-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.beer-btn-all-products {
    display: inline-block;
    padding: 14px 36px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background: transparent;
    border: 2px solid var(--gold);
    border-radius: 30px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
    animation: beer-btn-in 0.6s ease-out 0.3s both;
    margin-top: 4px;
}

.beer-btn-all-products:hover {
    background: #bada55;
    color: #000;
    border-color: #bada55;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(186, 218, 85, 0.4);
}

@keyframes beer-btn-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.beer-bottle-grid {
    margin-bottom: 40px;
}

.beer-bottle-grid .col-6,
.beer-bottle-grid [class*="col-"] {
    animation: beer-card-in 0.5s ease-out both;
}

.beer-bottle-grid .col-6:nth-child(1),
.beer-bottle-grid [class*="col-"]:nth-child(1) { animation-delay: 0.1s; }
.beer-bottle-grid .col-6:nth-child(2),
.beer-bottle-grid [class*="col-"]:nth-child(2) { animation-delay: 0.18s; }
.beer-bottle-grid .col-6:nth-child(3),
.beer-bottle-grid [class*="col-"]:nth-child(3) { animation-delay: 0.26s; }
.beer-bottle-grid .col-6:nth-child(4),
.beer-bottle-grid [class*="col-"]:nth-child(4) { animation-delay: 0.34s; }
.beer-bottle-grid .col-6:nth-child(5),
.beer-bottle-grid [class*="col-"]:nth-child(5) { animation-delay: 0.42s; }
.beer-bottle-grid .col-6:nth-child(6),
.beer-bottle-grid [class*="col-"]:nth-child(6) { animation-delay: 0.5s; }

@keyframes beer-card-in {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.beer-bottle-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 14px 24px;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.4) 100%);
    border: 1px solid rgba(201, 155, 43, 0.35);
    border-radius: 16px;
    height: 100%;
    transition: border-color 0.3s, background 0.3s, transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
}

.beer-bottle-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 155, 43, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.beer-bottle-card:hover {
    border-color: rgba(201, 155, 43, 0.8);
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.7) 0%, rgba(20, 15, 10, 0.55) 100%);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 155, 43, 0.2), inset 0 1px 0 rgba(255,255,255,0.08);
}

.beer-bottle-card:hover::before {
    opacity: 1;
}

.lottery-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 14px 24px;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.4) 100%);
    border: 1px solid rgba(201, 155, 43, 0.22);
    border-radius: 16px;
    height: 100%;
    transition: border-color 0.3s, background 0.3s, transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
}

.lottery-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 155, 43, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.lottery-card:hover {
    border-color: rgba(201, 155, 43, 0.8);
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.7) 0%, rgba(20, 15, 10, 0.55) 100%);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 155, 43, 0.2), inset 0 1px 0 rgba(255,255,255,0.08);
}

.lottery-card:hover::before {
    opacity: 1;
}

.lottery-card-img-wrap {
    flex-shrink: 0;
    width: 100%;
    margin: -6px -6px 12px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.25);
}

.lottery-card-img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0;
    transition: transform 0.35s ease;
}

.lottery-card:hover .lottery-card-img {
    transform: scale(1.05);
}

.lottery-card-body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    text-align: center;
    padding: 0 4px;
}

.lottery-card-title {
    margin-top: 6px;
    margin-bottom: 6px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #fff;
    line-height: 1.3;
}

.lottery-card-hr {
    width: 72%;
    margin: 10px auto 10px;
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(198, 155, 83, 0.65), transparent);
    opacity: 0.9;
}

.lottery-card-meta {
    margin: 0 0 10px;
    font-size: 13px;
    letter-spacing: 0.4px;
    color: rgba(255, 255, 255, 0.82);
}

.lottery-card-excerpt {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    letter-spacing: 0.3px;
    line-height: 1.4;
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lottery-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gold);
    text-decoration: none;
    border: 1px solid rgba(201, 155, 43, 0.7);
    padding: 8px 20px;
    border-radius: 24px;
    margin-top: auto;
    flex-shrink: 0;
    transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}

.lottery-card-link:hover {
    background: #bada55;
    color: #000;
    border-color: #bada55;
    transform: translateY(-2px);
}

.lottery-detail-section {
    padding: 26px 0 44px;
}

.lottery-detail-hero {
    text-align: center;
    margin: 0 auto 18px;
}

.lottery-detail-title {
    font-family: 'americantypewriter', serif;
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 1.2px;
    margin: 0 0 14px;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.lottery-detail-image-wrap {
    max-width: 860px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(198, 155, 83, 0.26);
    background: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.08));
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.lottery-detail-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    object-position: center;
}

.lottery-detail-section-title {
    font-family: 'americantypewriter', serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #fff;
    margin: 0 0 10px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.lottery-detail-card {
    background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.35));
    border: 1px solid rgba(198, 155, 83, 0.28);
    border-radius: 16px;
    padding: 16px 16px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
    color: rgba(255, 255, 255, 0.88);
}

.lottery-detail-card a {
    color: var(--gold);
}

.lottery-detail-card a:hover {
    color: #bada55;
}

.lottery-detail-card .text-muted {
    color: rgba(255, 255, 255, 0.68) !important;
}

.lottery-detail-card *:last-child {
    margin-bottom: 0;
}

.lottery-detail-products-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-bottom: 10px;
}

.lottery-detail-participants-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.9px;
    color: var(--gold);
    text-decoration: none;
    border: 1px solid rgba(198, 155, 83, 0.65);
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.25);
    transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}

.lottery-detail-participants-btn:hover {
    background: #bada55;
    color: #000;
    border-color: #bada55;
    transform: translateY(-2px);
}

.lottery-detail-products-card {
    padding: 0;
    overflow: hidden;
}

.lottery-detail-products-table tbody tr td {
    padding: 14px 16px;
    border-color: rgba(198, 155, 83, 0.18);
    vertical-align: middle;
    background: transparent;
}

.lottery-detail-product-link,
.lottery-detail-product-name {
    color: inherit;
    font-weight: 600;
    text-decoration: none;
}

.lottery-detail-product-link:hover {
    text-decoration: underline;
}

.lottery-detail-product-price {
    white-space: nowrap;
    color: var(--gold) !important;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.lottery-detail-product-arrow {
    margin-left: 10px;
    color: var(--gold);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.2s, transform 0.2s;
}

.lottery-detail-product-arrow:hover {
    opacity: 1;
    transform: translateX(2px);
}

@media (max-width: 767px) {
    .lottery-detail-title {
        font-size: 22px;
    }
    .lottery-detail-image {
        max-height: 320px;
    }
    .lottery-detail-card {
        padding: 14px;
        border-radius: 14px;
    }
    .lottery-detail-products-table tbody tr td {
        padding: 12px 12px;
    }
}

.product-card-img-wrap {
    flex-shrink: 0;
    margin-bottom: 12px;
}

.beer-bottle-img {
    max-height: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
    transition: transform 0.35s ease;
}

.beer-bottle-card:hover .beer-bottle-img {
    transform: scale(1.05);
}

.product-card-body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    text-align: center;
    padding: 0 4px;
}

/* Beer section product cards: image and text properly sized */
.beer-section .wine-product-img {
    max-height: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto 12px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
    transition: transform 0.35s ease;
}

.beer-section .beer-bottle-card:hover .wine-product-img {
    transform: scale(1.05);
}

.beer-section .wine-product-name {
    margin-top: 6px;
    margin-bottom: 4px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #fff;
    line-height: 1.3;
}

.beer-section .beer-bottle-card .wine-product-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 6px 10px;
    margin-bottom: 12px;
    font-size: 14px;
    width: 100%;
    align-self: stretch;
}

.beer-section .wine-product-meta .wine-product-size {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    letter-spacing: 0.3px;
}

.beer-section .wine-product-meta .wine-product-tags {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.beer-section .beer-bottle-card .wine-product-meta .wine-product-price { margin-bottom: 0; margin-left: auto; }

.beer-section .wine-product-price {
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.beer-section .wine-product-price .wine-product-price-old {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    margin-right: 6px;
}

.beer-section .wine-product-price.has-sale .wine-product-price-old {
    text-decoration: none;
}

.beer-section .wine-product-price.has-sale .wine-product-price-old .price-value {
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: rgba(255, 255, 255, 0.55);
}

.beer-section .wine-product-price .wine-product-price-sale {
    color: var(--gold);
    font-weight: 700;
}

.beer-section .wine-product-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.beer-section .wine-product-price .wine-product-price-old,
.beer-section .wine-product-price .wine-product-price-sale {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    margin-right: 0;
}

.beer-section .wine-product-price .price-label {
    font-size: 11px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.beer-section .wine-product-price .price-value {
    font-size: 15px;
    letter-spacing: 0.3px;
}

.beer-section .wine-product-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--gold);
    text-decoration: none;
    border: 1px solid rgba(201, 155, 43, 0.7);
    padding: 6px 14px;
    border-radius: 20px;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.beer-section .wine-product-link:hover {
    background: #bada55;
    color: #000;
    border-color: #bada55;
    transform: translateY(-2px);
}

.beer-section .bottle-name {
    margin-top: 8px;
    margin-bottom: 6px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #fff;
}

.beer-section .bottle-price {
    margin-bottom: 16px;
    font-size: 17px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.5px;
}

.beer-section .bottle-view-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gold);
    text-decoration: none;
    border: 1px solid rgba(201, 155, 43, 0.7);
    padding: 8px 18px;
    border-radius: 24px;
    transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}

.beer-section .bottle-view-more:hover {
    background: #bada55;
    color: #000;
    border-color: #bada55;
    transform: translateY(-2px);
}

.beer-section-footer {
    text-align: center;
    animation: beer-btn-in 0.6s ease-out 0.4s both;
}

.banner-section-footer,
.wine-products-footer {
    text-align: center;
    margin-top: 1.5rem;
}

.beer-btn-all-products.beer-btn-bottom {
    margin-top: 0;
}

/* ===== SPIRIT SECTION (same layout as Beer: wood bg, heading, description, product grid, no slider) ===== */
.spirit-section {
    position: relative;
    padding: 80px 0 70px;
    color: #fff;
    background: url(../images/bg2.png) no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

.spirit-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(198, 155, 83, 0.08) 0%, transparent 50%),
                linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.55) 100%);
    pointer-events: none;
    z-index: 0;
}

.spirit-section .container {
    position: relative;
    z-index: 1;
}

.spirit-section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 48px;
    width: 100%;
}

.spirit-section-heading {
    font-family: 'americantypewriter', serif;
    font-size: 38px;
    font-weight: 300;
    letter-spacing: 3px;
    margin: 0 0 16px;
    color: #fff;
    position: relative;
    display: block;
    text-align: center;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.spirit-section-heading::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
}

.spirit-section-desc {
    display: block;
    max-width: 520px;
    margin: 0 auto 24px;
    padding: 0 15px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.spirit-bottle-grid {
    margin-bottom: 8px;
}

.spirit-section .wine-product-img {
    max-height: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto 12px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
    transition: transform 0.35s ease;
}

.spirit-section .beer-bottle-card:hover .wine-product-img {
    transform: scale(1.05);
}

.spirit-section .wine-product-name {
    margin-top: 6px;
    margin-bottom: 4px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #fff;
    line-height: 1.3;
}

.spirit-section .beer-bottle-card .wine-product-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 6px 10px;
    margin-bottom: 12px;
    font-size: 14px;
    width: 100%;
    align-self: stretch;
}

.spirit-section .wine-product-meta .wine-product-size {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    letter-spacing: 0.3px;
}

.spirit-section .beer-bottle-card .wine-product-meta .wine-product-price { margin-bottom: 0; margin-left: auto; }

.spirit-section .wine-product-price {
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.spirit-section .wine-product-price .wine-product-price-old {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: line-through;
    font-weight: 500;
    font-size: 14px;
    margin-right: 6px;
}

.spirit-section .wine-product-price .wine-product-price-sale {
    color: var(--gold);
    font-weight: 700;
}

.spirit-section .wine-product-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--gold);
    text-decoration: none;
    border: 1px solid rgba(201, 155, 43, 0.7);
    padding: 6px 14px;
    border-radius: 20px;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.spirit-section .wine-product-link:hover {
    background: #bada55;
    color: #000;
    border-color: #bada55;
    transform: translateY(-2px);
}

.spirit-pagination-wrap {
    margin-bottom: 8px;
}
.spirit-section .pagination .page-link {
    background-color: rgba(0, 0, 0, 0.4);
    border-color: rgba(201, 155, 43, 0.5);
    color: #e0e0e0;
}
.spirit-section .pagination .page-link:hover {
    background-color: rgba(201, 155, 43, 0.25);
    border-color: var(--gold);
    color: #fff;
}
.spirit-section .pagination .page-item.active .page-link {
    background-color: var(--gold);
    border-color: var(--gold);
    color: #000;
}
.spirit-section .pagination .page-item.disabled .page-link {
    background-color: rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.4);
}

.spirit-section-footer {
    text-align: center;
    margin-top: 0;
}

.spirit-btn-all-products {
    display: inline-block;
    padding: 14px 36px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background: transparent;
    border: 2px solid var(--gold);
    border-radius: 30px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
    margin-top: 4px;
}

.spirit-btn-all-products:hover {
    background: #bada55;
    color: #000;
    border-color: #bada55;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(186, 218, 85, 0.4);
}

/* ===== ALL PRODUCTS PAGE (tabs + search + grid) ===== */
.all-products-page .all-products-header {
    margin-bottom: 40px;
}

.all-products-layout {
    align-items: flex-start;
}


.all-products-sidebar-card {
    padding: 18px 18px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(201, 155, 43, 0.4);
    border-radius: 12px;
    backdrop-filter: blur(8px);
}

.all-products-sidebar-block + .all-products-sidebar-block {
    margin-top: 18px;
}

.all-products-sidebar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.all-products-btn.all-products-btn-sm {
    padding: 10px 18px;
    font-size: 13px;
}

.all-products-clear {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.4px;
}
.all-products-clear:hover {
    color: #fff;
    text-decoration: underline;
}

.all-products-divider {
    margin: 18px 0;
    border: 0;
    border-top: 1px solid rgba(201, 155, 43, 0.28);
    opacity: 1;
}

.all-products-sidebar-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

.all-products-checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.all-products-check {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.all-products-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--gold);
}

.all-products-muted {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
}

.all-products-toggle-link {
    margin-top: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #d6a76a;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.all-products-toggle-link:hover {
    text-decoration: underline;
}

.all-products-group {
    margin-bottom: 32px;
}

.all-products-group-heading {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.all-products-group-divider {
    margin: 0 0 18px;
    border: 0;
    border-top: 2px solid rgba(201, 155, 43, 0.9);
    opacity: 1;
}

.all-products-group-more {
    margin-top: 1.5rem;
}

.all-products-group-more .row.g-4 {
    margin-top: 0;
}

.all-products-load-more-wrap {
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.all-products-load-more-btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #fff;
    background: transparent;
    border: 2px solid var(--gold);
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}

.all-products-load-more-btn:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-2px);
}

.all-products-tabs {
    border-bottom: 1px solid rgba(201, 155, 43, 0.4);
}
.all-products-tabs .nav-link {
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid transparent;
    border-radius: 8px 8px 0 0;
    padding: 12px 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: -1px;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.all-products-tabs .nav-link:hover {
    color: #fff;
    border-color: rgba(201, 155, 43, 0.5);
    background: rgba(0, 0, 0, 0.2);
}
.all-products-tabs .nav-link.active {
    color: #000;
    background: var(--gold);
    border-color: var(--gold);
}
.all-products-tabs .nav-item {
    margin: 0 4px;
}

.all-products-search {
    max-width: 720px;
    margin: 0 auto;
}

.all-products-search-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: center;
    gap: 16px 20px;
    padding: 24px 28px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(201, 155, 43, 0.4);
    border-radius: 12px;
    backdrop-filter: blur(8px);
}

.all-products-field {
    flex: 1 1 auto;
    min-width: 0;
}

.all-products-field.all-products-submit-wrap {
    flex: 0 0 auto;
}

.all-products-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 6px;
}

.all-products-input,
.all-products-select {
    display: block;
    width: 100%;
    min-width: 140px;
    padding: 12px 16px;
    font-size: 15px;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(201, 155, 43, 0.5);
    border-radius: 8px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.all-products-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.all-products-input:focus,
.all-products-select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(201, 155, 43, 0.25);
}

.all-products-select option {
    background: var(--charcoal);
    color: #fff;
}

.all-products-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    background: transparent;
    border: 2px solid var(--gold);
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}

.all-products-btn:hover {
    background: #bada55;
    color: #000;
    border-color: #bada55;
    transform: translateY(-2px);
}

.all-products-empty {
    text-align: center;
    padding: 48px 24px;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ===== COMING SOON LANDING PAGE (no header/footer) ===== */
body.landing-page-layout {
    margin: 0;
    min-height: 100vh;
    /* background: #0a0a0a; */
    padding-top: 0px;
}
body.landing-page-layout .landing-page-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url(../images/bg.png) no-repeat center center;
    background-size: cover;
}
body.landing-page-layout .landing-page-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}
body.landing-page-layout .landing-page-wrapper .container {
    position: relative;
    z-index: 1;
}

.coming-soon-section {
    padding: 50px 24px 60px;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.coming-soon-inner {
    max-width: 640px;
    margin: 0 auto;
}
.coming-soon-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}
.coming-soon-tagline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    line-height: 1.6;
}

.countdown-wrap {
    margin-bottom: 40px;
}
.countdown-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
}
.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    padding: 24px 20px;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.4) 100%);
    border: 1px solid rgba(201, 155, 43, 0.5);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.countdown-value {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
    letter-spacing: 0.05em;
}
.countdown-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
}

.coming-soon-note {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}
.coming-soon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
    color: #000;
    background: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 30px;
    transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}
.coming-soon-btn:hover {
    background: #bada55;
    border-color: #bada55;
    color: #000;
    transform: translateY(-2px);
}

@media (max-width: 575px) {
    .countdown-item {
        min-width: 70px;
        padding: 18px 14px;
    }
    .countdown-value {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .all-products-search-inner {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
    }
    .all-products-field {
        min-width: 100%;
    }
    .all-products-submit-wrap .all-products-btn {
        width: 100%;
    }
}

/* ===== BLOG SECTION ===== */
.blog-section {
    position: relative;
    padding: 70px 0 60px;
}

.blog-section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 44px;
    width: 100%;
}

.blog-section-heading {
    font-family: 'americantypewriter', serif;
    font-size: 38px;
    font-weight: 300;
    letter-spacing: 3px;
    margin: 0 0 14px;
    color: #fff;
    position: relative;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.blog-section-heading::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    margin: 12px auto 0;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
}

.blog-section-desc {
    max-width: 560px;
    margin: 0 auto;
    padding: 0 15px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.blog-grid {
    margin-bottom: 8px;
}

.blog-card {
    height: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.blog-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    border-color: rgba(201, 155, 43, 0.3);
}

.blog-card-img-link {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 22px 20px 24px;
}

.blog-card-date {
    display: block;
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.blog-card-title {
    font-family: 'americantypewriter', serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
    margin: 0 0 12px;
}

.blog-card-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card-title a:hover {
    color: var(--gold);
}

.blog-card-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 0 0 16px;
}

.blog-card-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.blog-card-link:hover {
    color: #bada55;
}

.blog-section-footer {
    text-align: center;
    margin-top: 36px;
}

.blog-btn-all {
    display: inline-block;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background: var(--charcoal);
    border: 2px solid var(--charcoal);
    border-radius: 30px;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.25s ease;
}

.blog-btn-all:hover {
    background: #bada55;
    color: #000;
    border-color: #bada55;
    transform: translateY(-2px);
}

/* ===== BLOG DETAIL PAGE ===== */
.blog-detail-page {
    padding: 40px 0 60px;
    min-height: 50vh;
    background: none;
}

.blog-detail {
    position: relative;
}

.blog-detail-inner {
    max-width: 780px;
    margin: 0 auto;
}

.blog-detail-back {
    display: inline-block;
    font-size: 15px;
    color: var(--gold);
    text-decoration: none;
    margin-bottom: 24px;
    font-weight: 600;
    transition: color 0.2s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.blog-detail-back:hover {
    color: #bada55;
}

.blog-detail-header {
    margin-bottom: 24px;
}

.blog-detail-date {
    display: block;
    font-size: 14px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.blog-detail-title {
    font-family: 'americantypewriter', serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.35;
    margin: 0;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.5);
}

.blog-detail-featured {
    margin-bottom: 28px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.blog-detail-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 400px;
}

.blog-detail-body {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.blog-detail-body p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.95);
}

.blog-detail-body p:last-child {
    margin-bottom: 0;
}

.blog-detail-body a {
    color: var(--gold);
    text-decoration: underline;
}

.blog-detail-body a:hover {
    color: #bada55;
}

@media (max-width: 767px) {
    .blog-detail-title {
        font-size: 24px;
    }
    .blog-detail-body {
        font-size: 16px;
    }
}

/* ===== CONTACT PAGE & FORM (exact match: dark bg, olive accent, underline inputs, pill button) ===== */
.contact-page {
    padding: 56px 0 80px;
    min-height: 60vh;
    /* background: #1a1a1a; */
    position: relative;
}

/* Subtle dark stone/brick texture overlay */


.contact-form-wrap {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-form-title {
    font-family: 'americantypewriter', serif;
    font-size: 36px;
    font-weight: 500;
    color: #a3c051;
    text-align: center;
    margin: 0 0 36px;
    letter-spacing: 2px;
}

.contact-form .row {
    margin-bottom: 0;
}

.contact-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #f0f0f0;
    margin-bottom: 8px;
    font-family: 'dinneuzeitgroteskltstd', sans-serif;
}

.contact-required {
    color: #f0f0f0;
}

.contact-input {
    display: block;
    width: 100%;
    padding: 12px 0 10px;
    font-size: 16px;
    color: #fff;
    background: #222222;
    border: 0;
    border-bottom: 2px solid #a3c051;
    border-radius: 0;
    font-family: 'dinneuzeitgroteskltstd', sans-serif;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-input:focus {
    outline: none;
    border-bottom-color: #a3c051;
    background: #282828;
}

.contact-textarea {
    min-height: 120px;
    resize: vertical;
    padding: 12px 0 10px;
}

.contact-submit-wrap {
    text-align: center;
    margin-top: 8px;
}

.contact-submit {
    display: inline-block;
    padding: 12px 40px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background: #000000;
    border: 2px solid #a3c051;
    border-radius: 999px;
    cursor: pointer;
    font-family: 'dinneuzeitgroteskltstd', sans-serif;
    letter-spacing: 1px;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.contact-submit:hover {
    background: #0d0d0d;
    color: #ffffff;
    border-color: #a3c051;
}

@media (max-width: 767px) {
    .contact-page {
        padding: 40px 0 60px;
    }
    .contact-form-title {
        font-size: 28px;
        margin-bottom: 28px;
    }
}

/* Contact page: map only + info card (no form) */
.contact-page.contact-map-only {
    padding: 36px 0 70px;
}

.lottery-header {
    text-align: center;
    margin: 0 auto 18px;
    max-width: 900px;
}

.lottery-title {
    font-family: 'americantypewriter', serif;
    font-size: 38px;
    font-weight: 400;
    letter-spacing: 2px;
    margin: 0 0 10px;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.lottery-crumb {
    position: relative;
    text-align: center;
    margin: 0 auto 22px;
    width: 100%;
    max-width: none;
    padding: 22px 18px 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.35));
    border: 1px solid rgba(198, 155, 83, 0.28);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}

.lottery-crumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(80% 70% at 50% 0%, rgba(198, 155, 83, 0.18), transparent 60%);
    pointer-events: none;
}

.lottery-breadcrumb {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin: 0 0 12px;
    font-family: 'dinneuzeitgroteskltstd', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 13px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
}

.lottery-breadcrumb-link {
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    border-bottom: 1px dashed rgba(255,255,255,0.35);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.lottery-breadcrumb-link:hover {
    color: #bada55;
    border-color: rgba(186, 218, 85, 0.75);
}

.lottery-breadcrumb-sep {
    opacity: 0.55;
}

.lottery-breadcrumb-current {
    color: #fff;
    opacity: 0.9;
}

.lottery-crumb-header {
    position: relative;
    z-index: 1;
}

.lottery-subtitle {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 767px) {
    .lottery-crumb {
        padding: 18px 14px 16px;
        border-radius: 16px;
    }
    .lottery-title {
        font-size: 30px;
        letter-spacing: 1.5px;
    }
    .lottery-breadcrumb {
        max-width: 100%;
        flex-wrap: nowrap;
        overflow: hidden;
    }
    .lottery-breadcrumb-current {
        display: inline-block;
        max-width: 44vw;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        vertical-align: bottom;
    }
}

.wine-products-section .lottery-header + .alert {
    margin-top: 10px;
}

.contact-map-header {
    text-align: center;
    margin: 0 auto 18px;
    max-width: 900px;
}

.contact-map-title {
    font-family: 'americantypewriter', serif;
    font-size: 38px;
    font-weight: 400;
    letter-spacing: 2px;
    margin: 0 0 10px;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.contact-map-subtitle {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
}

.contact-map-wrap {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    min-height: 620px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.contact-map-embed {
    width: 100%;
    height: 620px;
    border: 0;
    display: block;
}

.contact-info-card {
    position: absolute;
    left: 56px;
    top: 55%;
    transform: translateY(-50%);
    width: min(360px, calc(100% - 32px));
    background: rgba(245, 240, 230, 0.94);
    border: 1px solid rgba(198, 155, 83, 0.45);
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    z-index: 5;
}

.contact-info-header {
    padding: 16px 18px 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-info-title {
    display: inline-block;
    font-family: 'dinneuzeitgroteskltstd', sans-serif;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--espresso);
    font-size: 16px;
    position: relative;
}

.contact-info-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 110px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.contact-info-body {
    padding: 14px 18px 18px;
}

.contact-info-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: start;
    padding: 10px 0;
}

.contact-info-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--espresso);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 18px;
}

.contact-info-text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--espresso);
    font-family: 'dinneuzeitgroteskltstd', sans-serif;
}

.contact-info-link {
    color: inherit;
    text-decoration: none;
    font-weight: 700;
}

.contact-info-link:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-info-follow {
    margin-top: 8px;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-info-follow-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: rgba(45, 30, 22, 0.72);
    margin-bottom: 10px;
    font-family: 'dinneuzeitgroteskltstd', sans-serif;
}

.contact-info-socials {
    display: flex;
    gap: 10px;
}

.contact-social-btn {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--espresso);
    color: #fff;
    display: grid;
    place-items: center;
    text-decoration: none;
    font-size: 18px;
}

.contact-social-btn i {
    color: #fff;
}

.contact-social-btn:hover {
    background: #000;
    color: #fff;
}

@media (max-width: 991px) {
    .contact-map-wrap {
        display: flex;
        flex-direction: column;
        min-height: 0;
    }
    .contact-map-embed {
        order: 2;
        height: 520px;
    }
    .contact-info-card {
        order: 1;
        position: static;
        width: auto;
        margin: 16px;
        transform: none;
    }
    .contact-map-wrap {
        max-width: calc(100% - 32px);
    }
}

@media (max-width: 575px) {
    .contact-map-embed {
        order: 2;
        height: 440px;
    }
    .contact-info-card {
        order: 1;
        position: static;
        margin: 12px;
        width: auto;
        transform: none;
    }
    .contact-map-title {
        font-size: 28px;
    }
}

/* ===== SITE FOOTER (same to same design: curved top SVG, solid black, three groups) ===== */
.site-footer {
    position: relative;
    margin-top: 0;
    overflow: hidden;
    color: #fff;

    background-image: url(../images/download.svg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
    padding-top: 52px;
}

.footer-top {
    padding: 48px 24px 32px;
}

.footer-address {

    font-size: 30px;
    line-height: 1.5;
    color: #fff;
    font-family: 'americantypewriter', sans-serif !important;
}

.footer-directions {
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #c17d3a;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
    font-family: 'dinneuzeitgroteskltstd', sans-serif;
}

.footer-directions:hover {
    color: #d49250;
}

.footer-bottom {
    padding: 20px 24px 28px;
    min-height: 72px;
    display: flex;
    align-items: center;
}

.footer-one-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    gap: 20px 32px;
}

@media (min-width: 768px) {
    .footer-one-line {
        flex-wrap: nowrap;
    }
}

.footer-left-group {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.footer-center-group {
    flex: 0 1 auto;
    min-width: 0;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-center-group {
        text-align: center;
    }
}

.footer-right-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.footer-center-group .footer-copyright,
.footer-center-group .footer-credit {
    margin: 0;
}

.footer-logo-img {
    display: block;
    height: 75px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

.footer-hagerstown-img {
    display: block;
    width: 126px;
    height: 69px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-copyright {
    margin: 0 0 4px;
    font-size: 11px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'dinneuzeitgroteskltstd', sans-serif;
}

.footer-credit {
    margin: 0;
    font-size: 11px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.75);
    font-family: 'dinneuzeitgroteskltstd', sans-serif;
}

.footer-credit-link {
    color: #3b7bbf;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.footer-credit-link:hover {
    color: #5a9ad4;
}

.footer-right-group .footer-icon {
    flex-shrink: 0;
}

.footer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-icon:hover {
    opacity: 0.9;
}

.footer-icon-doordash {
    display: inline-flex;
    padding: 0;
    min-width: 42px;
    min-height: 42px;
    border-radius: 4px;
    overflow: hidden;
}

.footer-doordash-img {
    display: block;
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.footer-icon-insta svg,
.footer-icon-fb svg {
    display: block;
}

.footer-icon-insta,
.footer-icon-fb {
    width: 42px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.55);
    border-radius: 4px;
    color: #fff;
}

.footer-icon-insta svg,
.footer-icon-fb svg {
    color: #fff;
}

.footer-icon-insta:hover,
.footer-icon-fb:hover {
    border-color: rgba(255, 255, 255, 0.9);
}

/* ===== SPECIAL OFFER SECTION ===== */
.special-offer-section {
    position: relative;
    padding: 70px 0 60px;
    color: #fff;
    background: url(../images/bg4.png) no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

.special-offer-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(900px 340px at 50% 0%, rgba(198, 155, 83, 0.18) 0%, rgba(0, 0, 0, 0) 60%),
        rgba(0, 0, 0, 0.62);
    pointer-events: none;
}

.zigzag-divider-new-arrivals{
    content: "";
    position: absolute;
    /* top: -14px; */
    left: 0;
    width: 100%;
    height: 14px;
    /* Requested zigzag color */
    --brd: 255, 188, 153;      /* #ffbc99 */
    --brd-wine: 255, 188, 153; /* #ffbc99 */
    --alpha-brd: 1;
    background:
        /* linear-gradient(-45deg, transparent 10px, #ee9502 0) 0 0,
        linear-gradient(45deg, transparent 10px, #ee9502 0) 0 0; */
        linear-gradient(25deg, transparent var(--zigzagsize, 10px), 
        rgba(var(--brd, var(--color_15, color_15)), 
        var(--alpha-brd, 1)) var(--zigzagsize, 10px)), 
        linear-gradient(-25deg, transparent var(--zigzagsize, 10px), 
        rgba(var(--brd-wine, var(--color_15, color_15)), var(--alpha-brd, 1)) var(--zigzagsize, 10px));
    background-size: 20px 14px;
    background-repeat: repeat-x;
    z-index: 1;
}

.special-offer-section .container {
    position: relative;
    z-index: 1;
}

.special-offer-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 44px;
    width: 100%;
}

.special-offer-heading {
    font-family: 'americantypewriter', serif;
    font-size: 44px;
    font-weight: 300;
    letter-spacing: 3px;
    margin: 0 0 14px;
    color: #fff;
    position: relative;
    display: block;
}

.special-offer-heading::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.special-offer-desc {
    max-width: 520px;
    margin: 0 auto;
    padding: 0 15px;
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
}

.special-offer-grid {
    margin-bottom: 0;
}

.special-offer-card {
    text-align: center;
    padding: 32px 24px 36px;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.6) 0%, rgba(30, 25, 20, 0.5) 100%);
    border: 1px solid rgba(201, 155, 43, 0.4);
    border-radius: 16px;
    height: 100%;
    transition: border-color 0.3s, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
}

.special-offer-card:hover {
    border-color: rgba(201, 155, 43, 0.8);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.special-offer-badge {
    display: inline-block;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #000;
    background: var(--gold);
    border-radius: 30px;
    margin-bottom: 20px;
}

.special-offer-title {
    font-family: 'americantypewriter', serif;
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0 0 12px;
    color: #fff;
}

.special-offer-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 22px;
}

.special-offer-btn {
    display: inline-block;
    padding: 10px 28px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    color: #fff;
    border: 2px solid var(--gold);
    border-radius: 24px;
    background: transparent;
    transition: background 0.25s, color 0.25s, transform 0.2s;
}

.special-offer-btn:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-2px);
}

/* Banner responsive: tablet & below adjusted in global responsive block at end */

.banner-title {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
}

.banner-text {
    /* max-width: 700px; */
    margin: 0 auto;
    font-size: 18px;
    ;
}


/* Lamp Wrapper */
.lamp-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* padding-top: 40px; */
    z-index: 2;
}

/* Lamp Image */
.lamp-img {
    /* max-width: 140px; */
    width: 100%;
    height: auto;
}

/* ===== SIDE MENU ===== */
.side-menu {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
}

.side-menu ul li {
    margin-bottom: 15px;
}

.side-menu ul li a {
    display: block;
    width: 160px;
    padding: 10px 0;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    border-radius: 30px;
    border: 2px solid #f1b100;
    background: rgba(241, 177, 0, 0.2);
    transition: all 0.3s ease;
}

.side-menu ul li a:hover {
    background: #f1b100;
    color: #000;
}

.banner-content {
    position: relative;
    z-index: 2;
    padding-top: 350px;
    /* Space below lamps */
    padding-bottom: 100px;
}

.banner-title {
    font-size: 42px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.banner-text {
    font-size: 16px;
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 25px;
}

h2 {
    font-family: 'americantypewriter', serif;
}



/* ===== SANDWICH DESIGN FIXED ===== */

/* .banner-section{
    position: relative;
    overflow: hidden;
} */

/* Dark heading area */
.sandwich-dark {
    padding: 120px 0 0;
    position: relative;
}

/* Heading */
.sandwich-small {
    color: #c89b2b;
    font-size: 18px;
    letter-spacing: 2px;
}

.sandwich-big {
    font-size: 90px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
}

/* Sandwich Image */
.sandwich-image {
    position: absolute;
    right: 0;
    bottom: -80px;
    max-width: 520px;
    z-index: 5;
}



/* Golden Box */
.sandwich-box {
    border: 1px solid #c89b2b;
    padding: 60px;
    max-width: 800px;
    margin: auto;
    background: rgba(0, 0, 0, 0.45);
}

.sandwich-box h5 {
    color: #c89b2b;
    margin-bottom: 20px;
}

.sandwich-box h5 span {
    color: #fff;
}

.sandwich-box p {
    color: #ddd;
    line-height: 1.8;
}

/* Small Artisanal text */

/* Big SANDWICHES text */
.sandwich-big-text {
    font-size: 47px;
    font-weight: 500;
    color: #ffffff;
    /* line-height: 1; */
}


/* Small Artisanal text */
.sandwich-small-text {
    font-family: 'americantypewriter';
    color: #c89b2b;
    font-size: 24px;
    letter-spacing: 3px;
    /* margin-bottom: 10px; */
}


.sandwich-image {
    transition: transform 0.2s linear;
}

.sandwich-big-text {
    transition: transform 0.2s linear;
}





/* ===== WOOD SECTION UPDATED ===== */

/* ===== WOOD SECTION ===== */
/* ===== CLEAN RIGHT SIDE IMAGE SYSTEM ===== */

.sandwich-wood {
    background: url(../images/bg2.png) no-repeat center center;
    background-size: cover;
    padding: 75px 0 49px;
    position: relative;
    color: #fff;
}

/* Golden box remains same */
.sandwich-box {
    border: 1px solid #c89b2b;
    padding: 70px 80px;
    max-width: 760px;
    margin: auto;
    background: rgba(0, 0, 0, 0.45);
    position: relative;
    z-index: 2;
}

/* RIGHT IMAGE WRAPPER */
.wood-circles {
    position: absolute;
    right: 200px;
    top: 120px;
    z-index: 3;
}

/* Base circle */
.wood-circle {
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    position: relative;
}

.wood-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* TOP CIRCLE (smaller) */
.wood-circle-top {
    width: 150px;
    height: 150px;
    margin-left: 90px;
    z-index: 2;
}

/* BOTTOM CIRCLE (bigger and overlapping) */
.wood-circle-bottom {
    width: 211px;
    height: 211px;
    margin-top: -11px;
}

/* ===== HEADING EXACT STYLE ===== */

.sandwich-heading-line {
    font-family: 'americantypewriter', serif;
    font-size: 26px;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.gold-text {
    color: #c89b2b;
}

.white-text {
    color: #c89b2b;
    /* In screenshot all are gold */
}

.dot {
    color: #c89b2b;
    margin: 0 8px;
}


/* ===== EXACT BUTTON STYLE ===== */

.sandwich-btns {
    margin-top: 35px;
}

.sandwich-btns a {
    display: inline-block;
    padding: 12px 45px;
    margin: 0 12px;
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

/* LEFT BUTTON (Greenish Gold Border) */
.btn-outline-gold {
    border: 2px solid #8a9f35;
    /* olive green like screenshot */
    color: #ffffff;
    background: transparent;
}

.btn-outline-gold:hover {
    background: #8a9f35;
    color: #000;
}

/* RIGHT BUTTON (Grey Border) */
.btn-outline-white {
    border: 2px solid #777;
    color: #ffffff;
    background: transparent;
}

.btn-outline-white:hover {
    background: #ffffff;
    color: #000;
}

/* ===== EXACT YELLOW ZIGZAG DIVIDER ===== */

.zigzag-divider {
    position: relative;
    width: 100%;
    /* height: 14px; */
    /* background: #000; */
    /* background below */
}

.zigzag-divider::before {
    content: "";
    position: absolute;
    /* top: -14px; */
    left: 0;
    width: 100%;
    height: 14px;
    background:
        /* linear-gradient(-45deg, transparent 10px, #ee9502 0) 0 0,
        linear-gradient(45deg, transparent 10px, #ee9502 0) 0 0; */
        linear-gradient(25deg, transparent var(--zigzagsize, 10px), rgba(var(--brd, var(--color_15, color_15)), var(--alpha-brd, 1)) var(--zigzagsize, 10px)), linear-gradient(-25deg, transparent var(--zigzagsize, 10px), rgba(var(--brd, var(--color_15, color_15)), var(--alpha-brd, 1)) var(--zigzagsize, 10px));
    background-size: 20px 14px;
    background-repeat: repeat-x;
    z-index: 1;
}


.zigzag-divider-wine {
    position: relative;
    width: 100%;
    /* height: 14px; */
    /* background: #000; */
    /* background below */
}

.zigzag-divider-wine::before {
    content: "";
    position: absolute;
    /* top: -14px; */
    left: 0;
    width: 100%;
    height: 14px;
    background:
        /* linear-gradient(-45deg, transparent 10px, #ee9502 0) 0 0,
        linear-gradient(45deg, transparent 10px, #ee9502 0) 0 0; */
        linear-gradient(25deg, transparent var(--zigzagsize, 10px), rgba(var(--brd-wine, var(--color_15, color_15)), var(--alpha-brd, 1)) var(--zigzagsize, 10px)), linear-gradient(-25deg, transparent var(--zigzagsize, 10px), rgba(var(--brd-wine, var(--color_15, color_15)), var(--alpha-brd, 1)) var(--zigzagsize, 10px));
    background-size: 20px 14px;
    background-repeat: repeat-x;
    z-index: 1;
}


/* ============================= */
/*   WINE SECTION (wine bottles wood bg, left bottle, right special offer) */
/* ============================= */

.wine-section {
    position: relative;
    overflow: hidden;
    background: url(../images/bg5.png) no-repeat center center;
    margin-top: -14px;
    background-size: cover;
}

/* ============================= */
/*   TASTING EVENTS SECTION      */
/* ============================= */
#home-tasting-events {
    position: relative;
    overflow: hidden;
    padding: 70px 0 60px;
    color: #fff;
    background: transparent;
}

#home-tasting-events::before {
    content: "";
    position: absolute;
    inset: 0;
    /* keep subtle readability while letting site bg show */
    background: rgba(0, 0, 0, 0.18);
    pointer-events: none;
}

#home-tasting-events .container {
    position: relative;
    z-index: 1;
}

#home-tasting-events .title-area {
    margin-bottom: 28px;
}

#home-tasting-events .sec-title {
    font-family: 'americantypewriter', serif;
    font-size: 44px;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 10px 0 10px;
    color: #fff;
}

#home-tasting-events .sec-desc {
    margin: 0 auto;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.7;
}

/* Event details card */
#home-tasting-events .events-right-card {
    background: rgba(0, 0, 0, 0.32);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 155, 83, 0.35);
    border-radius: 14px;
    padding: 18px 18px 16px;
    color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

#home-tasting-events .events-right-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(198, 155, 83, 0.18);
    border: 1px solid rgba(198, 155, 83, 0.5);
    color: #fff;
}

#home-tasting-events .events-right-meta {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
}

#home-tasting-events .events-right-title {
    margin: 10px 0 12px;
    font-family: 'americantypewriter', serif;
    font-size: 28px;
    line-height: 1.2;
    color: #fff;
}

#home-tasting-events .events-right-list {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
}

#home-tasting-events .events-right-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.88);
}

#home-tasting-events .events-right-list i {
    margin-top: 3px;
    color: var(--gold);
    width: 18px;
    text-align: center;
}

#home-tasting-events .events-right-list a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

#home-tasting-events .vs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 2px solid rgba(198, 155, 83, 0.9);
    background: rgba(0, 0, 0, 0.25);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

#home-tasting-events .events-right-call {
    display: inline-block;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 700;
}

/* Event image slider */
#home-tasting-events .events-slide-img-wrap {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

#home-tasting-events .events-slider .carousel-control-prev,
#home-tasting-events .events-slider .carousel-control-next {
    width: 54px;
    height: 54px;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    opacity: 1;
    background: rgba(0, 0, 0, 0.55);
    border: 2px solid rgba(198, 155, 83, 0.95);
    border-radius: 50%;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35), 0 0 0 4px rgba(198, 155, 83, 0.16);
    z-index: 10;
}

#home-tasting-events .events-slider .carousel-control-prev:hover,
#home-tasting-events .events-slider .carousel-control-next:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.4), 0 0 0 5px rgba(198, 155, 83, 0.22);
}

#home-tasting-events .events-slider .carousel-control-prev {
    left: 10px;
}

#home-tasting-events .events-slider .carousel-control-next {
    right: 10px;
}

#home-tasting-events .events-slider .carousel-control-prev-icon,
#home-tasting-events .events-slider .carousel-control-next-icon {
    filter: invert(1);
    width: 22px;
    height: 22px;
    /* In case Bootstrap icon bg isn't present, draw our own arrows */
    background-image: none;
    position: relative;
}

#home-tasting-events .events-slider .carousel-control-prev-icon::before,
#home-tasting-events .events-slider .carousel-control-next-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 12px;
    height: 12px;
    border-top: 3px solid #0d6efd !important;
    border-right: 3px solid #0d6efd !important;
    border-radius: 2px;
    transform: rotate(225deg);
}

#home-tasting-events .events-slider .carousel-control-next-icon::before {
    transform: rotate(45deg);
}

#home-tasting-events .events-slider .carousel-control-prev:focus-visible,
#home-tasting-events .events-slider .carousel-control-next:focus-visible {
    outline: 2px solid rgba(198, 155, 83, 0.95);
    outline-offset: 3px;
}

.wine-section .container,
.wine-section .row {
    position: relative;
    z-index: 2;
}

/* Promo banner carousel: arrows work, indicators below content, content in front */
.promo-banner-section .container-promo-banner {
    position: relative;
    z-index: 2;
}
.promo-banner-carousel {
    position: relative;
    min-height: 280px;
}
.promo-banner-carousel .carousel-inner {
    position: relative;
    z-index: 1;
}
.promo-banner-carousel .carousel-item .row {
    position: relative;
    z-index: 2;
}
/* Arrows on top, always clickable */
.promo-banner-carousel .carousel-control-prev,
.promo-banner-carousel .carousel-control-next {
    z-index: 10;
    width: 48px;
    height: 48px;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    opacity: 0.9;
    background-color: rgb(255 246 246 / 67%);;
    border-radius: 50%;
    padding: 0;
    cursor: pointer;
    pointer-events: auto;
}
.promo-banner-carousel .carousel-control-prev:hover,
.promo-banner-carousel .carousel-control-next:hover {
    opacity: 1;
    background-color: rgb(255 246 246 / 67%);;
}
.promo-banner-carousel .carousel-control-prev {
    left: 8px;
}
.promo-banner-carousel .carousel-control-next {
    right: 8px;
}
.promo-banner-carousel .carousel-control-prev-icon,
.promo-banner-carousel .carousel-control-next-icon {
    width: 24px;
    height: 24px;
    filter: invert(1);
}
/* Indicators below content – no line over image/text */
.promo-banner-carousel .promo-banner-indicators {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    top: auto;
    margin: 0;
    z-index: 5;
}
.promo-banner-carousel .promo-banner-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 4px;
}
.promo-banner-carousel .promo-banner-indicators button.active {
    background-color: var(--gold, #c99b2b);
}

/* .wine-section .container {
    padding-top: 90px;
    padding-bottom: 80px;
    color: #fff;
} */

.wine-bottle-col {
    text-align: center;
}

.wine-bottle-img {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 12px 24px rgba(0,0,0,0.4));
}

.wine-offer-col {
    display: flex;
    align-items: center;
}

/* Open editorial layout – left accent line only */
.wine-offer-content {
    position: relative;
    padding-left: 24px;
    border-left: 3px solid var(--gold);
    max-width: 480px;
}

.wine-offer-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.wine-offer-heading {
    font-family: 'americantypewriter', serif;
    font-size: 40px;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 0 0 18px;
    color: #fff;
    line-height: 1.2;
}

.wine-offer-desc {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 24px;
}

.wine-offer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-bottom: 28px;
}

.wine-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #f5e6c8;
    padding: 6px 14px;
    background: rgba(201, 155, 43, 0.22);
    border-radius: 20px;
    border: 1px solid rgba(201, 155, 43, 0.5);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.wine-offer-btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    color: #fff;
    border: 2px solid var(--gold);
    border-radius: 28px;
    background: transparent;
    transition: background 0.25s, color 0.25s, transform 0.2s;
}

.wine-offer-btn:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-2px);
}

/* ===== WINE PRODUCTS SECTION: parallax; content light so it shows; products same as existing ===== */
.wine-products-section
 {
    position: relative;
    padding: 77px 0 60px;
    overflow: hidden;
}

.home-wine-products-section {
    position: relative;
    padding: 0px 0 60px;
    overflow: hidden;
}

.wine-products-section .container,
.home-wine-products-section .container {
    position: relative;
    z-index: 2;
}

.wine-products-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.wine-products-heading {
    font-family: 'americantypewriter', serif;
    font-size: 42px;
    font-weight: 400;
    letter-spacing: 2px;
    margin: 0 0 14px;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.wine-products-desc {
    max-width: 560px;
    margin: 0 auto;
    padding: 0 15px;
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.wine-products-carousel {
    /* max-width: 1140px; */
    margin: 0 auto;
    padding: 0 50px;
}

.wine-products-carousel .carousel-inner {
    padding: 10px 0 20px;
}

/* Wine Products: card content layout */
.wine-products-section .beer-bottle-card .product-card-body .wine-product-name,
.home-wine-products-section .beer-bottle-card .product-card-body .wine-product-name {
    color: #fff;
    margin: 0 0 10px;
    padding: 0;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.3px;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.wine-products-section .beer-bottle-card .product-card-body .wine-product-meta,
.home-wine-products-section .beer-bottle-card .product-card-body .wine-product-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 6px 10px;
    margin-bottom: 14px;
    padding: 8px 0;
    font-size: 15px;
    line-height: 1.4;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wine-products-section .beer-bottle-card .wine-product-meta .wine-product-size,
.home-wine-products-section .beer-bottle-card .wine-product-meta .wine-product-size {
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    letter-spacing: 0.3px;
    font-weight: 500;
}

.wine-products-section .beer-bottle-card .wine-product-meta .wine-product-tags,
.home-wine-products-section .beer-bottle-card .wine-product-meta .wine-product-tags {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wine-products-section .beer-bottle-card .wine-product-meta .wine-product-price,
.home-wine-products-section .beer-bottle-card .wine-product-meta .wine-product-price {
    margin-bottom: 0;
    /* Let parent flex layout decide alignment.
       Using margin-left:auto makes single-item price blocks stick right and look "empty" on the left. */
    margin-left: 0;
    font-size: 16px;
}

.wine-products-section .beer-bottle-card .wine-product-price,
.home-wine-products-section .beer-bottle-card .wine-product-price {
    color: var(--gold);
    margin-bottom: 16px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.wine-products-section .beer-bottle-card .wine-product-price .wine-product-price-old,
.home-wine-products-section .beer-bottle-card .wine-product-price .wine-product-price-old {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    margin-right: 8px;
}

.wine-products-section .beer-bottle-card .wine-product-price.has-sale .wine-product-price-old,
.home-wine-products-section .beer-bottle-card .wine-product-price.has-sale .wine-product-price-old {
    text-decoration: none;
}

.wine-products-section .beer-bottle-card .wine-product-price.has-sale .wine-product-price-old .price-value,
.home-wine-products-section .beer-bottle-card .wine-product-price.has-sale .wine-product-price-old .price-value,
.special-offer-section .beer-bottle-card .wine-product-price.has-sale .wine-product-price-old .price-value {
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: rgba(255, 255, 255, 0.55);
}

.wine-products-section .beer-bottle-card .wine-product-price .wine-product-price-sale,
.home-wine-products-section .beer-bottle-card .wine-product-price .wine-product-price-sale,
.special-offer-section .beer-bottle-card .wine-product-price .wine-product-price-sale {
    color: var(--gold);
    font-weight: 700;
}

/* Price labels (Retail / Club) */
.wine-products-section .beer-bottle-card .wine-product-price,
.home-wine-products-section .beer-bottle-card .wine-product-price,
.special-offer-section .beer-bottle-card .wine-product-price {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: 100%;
}

.wine-products-section .beer-bottle-card .wine-product-price .wine-product-price-old,
.wine-products-section .beer-bottle-card .wine-product-price .wine-product-price-sale,
.home-wine-products-section .beer-bottle-card .wine-product-price .wine-product-price-old,
.home-wine-products-section .beer-bottle-card .wine-product-price .wine-product-price-sale,
.special-offer-section .beer-bottle-card .wine-product-price .wine-product-price-old,
.special-offer-section .beer-bottle-card .wine-product-price .wine-product-price-sale {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    margin-right: 0;
    text-align: left;
}

.wine-products-section .beer-bottle-card .wine-product-price .price-label,
.home-wine-products-section .beer-bottle-card .wine-product-price .price-label,
.special-offer-section .beer-bottle-card .wine-product-price .price-label {
    font-size: 11px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    flex: 1 1 auto;
}

.wine-products-section .beer-bottle-card .wine-product-price .price-value,
.home-wine-products-section .beer-bottle-card .wine-product-price .price-value,
.special-offer-section .beer-bottle-card .wine-product-price .price-value {
    font-size: 16px;
    letter-spacing: 0.3px;
    flex: 0 0 auto;
    text-align: right;
}

.wine-products-section .beer-bottle-card .product-card-body .wine-product-link,
.home-wine-products-section .beer-bottle-card .product-card-body .wine-product-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gold);
    text-decoration: none;
    border: 1px solid rgba(201, 155, 43, 0.7);
    padding: 8px 20px;
    border-radius: 24px;
    margin-top: auto;
    flex-shrink: 0;
    transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}

.wine-products-section .beer-bottle-card .wine-product-link:hover,
.home-wine-products-section .beer-bottle-card .wine-product-link:hover {
    background: #bada55;
    color: #000;
    border-color: #bada55;
    transform: translateY(-2px);
}

/* Shared product name/price/link (banner, etc.) – wine section overrides above */
.wine-product-name {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 6px;
    line-height: 1.3;
}

.wine-product-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 10px;
    line-height: 1.3;
}

.wine-product-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s;
}

.wine-product-link:hover {
    color: #bada55;
}

.wine-products-carousel .carousel-control-prev-icon,
.wine-products-carousel .carousel-control-next-icon {
    filter: invert(0);
    width: 46px;
    height: 46px;
    background-color: rgba(0, 0, 0, 0.55);
    border-radius: 50%;
    background-size: 60% 60%;
}

.wine-products-carousel .carousel-control-prev,
.wine-products-carousel .carousel-control-next {
    width: 56px;
    opacity: 0.95;
}

.wine-products-carousel .carousel-control-prev:hover,
.wine-products-carousel .carousel-control-next:hover {
    opacity: 1;
}

/* Wine Products carousel: indicators properly positioned and styled */
.wine-products-carousel {
    position: relative;
}

.wine-products-carousel .carousel-indicators {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 0 8px;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.wine-products-carousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.25);
    text-indent: -9999px;
    overflow: hidden;
    flex-shrink: 0;
    transition: background-color 0.2s ease;
}

.wine-products-carousel .carousel-indicators button.active {
    background-color: var(--gold);
}

.wine-products-carousel .carousel-indicators button:not(.active):hover {
    background-color: rgba(0, 0, 0, 0.4);
}

/* Legacy wine text (if used elsewhere) */
.wine-text-area { padding-left: 40px; }
.wine-small-text { font-family: 'Cinzel', serif; font-size: 26px; color: #c89b2b; margin-bottom: 10px; }
.wine-big-text { font-family: 'Cinzel', serif; font-size: 110px; font-weight: 700; letter-spacing: 4px; }

/* ============================= */
/*   RESPONSIVE: MOBILE / TABLET / DESKTOP   */
/* ============================= */

/* ---------- TABLET (up to 991px) ---------- */
@media (max-width: 991px) {
    :root {
        --header-height: 88px;
        --logo-max-height: 42px;
        --logo-max-width: 240px;
        --nav-font-size: 14px;
        --nav-gap: 14px;
    }
    .header-section .header-logo-col .logo-img {
        max-height: var(--logo-max-height);
        max-width: var(--logo-max-width);
    }
    .banner-inner {
        padding: 36px 12px 50px;
    }
    .banner-lamps-row {
        margin-bottom: -40px;
    }
    .banner-lamps-row .lamp-img {
        max-width: 100px;
    }
    .banner-special-title {
        font-size: 36px;
        margin-bottom: 14px;
    }
    .special-carousel {
        padding: 24px 40px 36px;
        border-radius: 8px;
    }
    .wine-products-carousel,
    .beer-products-carousel {
        padding: 0 44px;
    }
    .special-bottle-img {
        max-height: 180px;
    }
    .bottle-card {
        padding: 0 4px 10px;
    }
    .bottle-name {
        font-size: 14px;
        margin-top: 8px;
    }
    .bottle-price {
        font-size: 14px;
    }
    .bottle-view-more {
        font-size: 12px;
        padding: 5px 12px;
    }
    .banner-short-desc {
        font-size: 15px;
        margin-top: 18px;
    }
    /* Wood / Sandwich section */
    .sandwich-wood {
        padding: 50px 15px 40px;
    }
    .sandwich-box {
        padding: 40px 30px;
        max-width: 100%;
    }
    .wood-circles {
        position: relative;
        right: auto;
        top: auto;
        margin-top: 24px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    .wood-circle-top,
    .wood-circle-bottom {
        margin-left: 0;
        margin-top: 0;
    }
    .wood-circle-top {
        width: 120px;
        height: 120px;
    }
    .wood-circle-bottom {
        width: 160px;
        height: 160px;
    }
    .sandwich-heading-line {
        font-size: 20px;
    }
    .sandwich-btns a {
        padding: 10px 28px;
        margin: 6px;
    }
    /* Wine section */
    .wine-section .container {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .wine-bottle-col {
        margin-bottom: 30px;
    }
    .wine-bottle-img {
        max-width: 260px;
    }
    .wine-offer-col {
        justify-content: center;
    }
    .wine-offer-content {
        padding-left: 20px;
        max-width: 100%;
    }
    .wine-offer-heading {
        font-size: 30px;
    }
    .wine-offer-tags {
        margin-bottom: 22px;
    }
    /* .wine-products-section {
        padding: 50px 0 50px;
    } */
    .wine-products-header {
        margin-bottom: 32px;
    }
    .wine-products-heading {
        font-size: 36px;
    }
    .wine-products-carousel {
        padding: 0 40px;
    }
    /* Beer section */
    .beer-section {
        padding: 50px 0 44px;
    }
    .spirit-section {
        padding: 50px 0 44px;
    }
    .beer-section-header {
        margin-bottom: 32px;
    }
    .spirit-section-header {
        margin-bottom: 32px;
    }
    .beer-section-badge {
        font-size: 10px;
        letter-spacing: 2px;
        padding: 5px 14px;
        margin-bottom: 12px;
    }
    .beer-section-heading {
        font-size: 34px;
        letter-spacing: 3px;
    }
    .beer-section-heading::after {
        width: 50px;
    }
    .spirit-section-heading {
        font-size: 34px;
        letter-spacing: 3px;
    }
    .spirit-section-heading::after {
        width: 50px;
    }
    .beer-section-desc {
        font-size: 15px;
        margin-bottom: 20px;
    }
    .spirit-section-desc {
        font-size: 15px;
        margin-bottom: 20px;
    }
    .beer-btn-all-products {
        padding: 10px 26px;
        font-size: 12px;
    }
    .beer-bottle-grid {
        margin-bottom: 28px;
    }
    .beer-bottle-img {
        max-height: 150px;
    }
    .beer-bottle-card {
        padding: 18px 12px 22px;
    }
    .beer-bottle-card:hover {
        transform: translateY(-4px) scale(1.01);
    }
    .special-offer-section {
        padding: 50px 0 44px;
    }
    .blog-section {
        padding: 56px 0 50px;
    }
    .blog-section-heading {
        font-size: 32px;
        letter-spacing: 2px;
    }
    .blog-section-desc {
        font-size: 15px;
    }
    .blog-card-body {
        padding: 18px 16px 20px;
    }
    .blog-card-title {
        font-size: 18px;
    }
    .special-offer-header {
        margin-bottom: 32px;
    }
    .special-offer-heading {
        font-size: 36px;
    }
    .special-offer-card {
        padding: 28px 20px 30px;
    }
}

/* ---------- MOBILE (up to 767px) ---------- */
@media (max-width: 767px) {
    :root {
        /* ≥ logo (62px) + vertical padding (20px); keeps body offset in sync on iOS */
        --header-height: 88px;
        --header-padding-y: 10px;
        --header-padding-x: 12px;
        --logo-max-height: 56px;
        --logo-max-width: 200px;
        --nav-font-size: 13px;
        --nav-gap: 12px;
    }
    .header-section .container {
        width: 100%;
        max-width: 100%;
    }
    .header-row {
        width: 100%;
        margin: 0;
        justify-content: space-between;
        align-items: center;
    }
    .header-section .header-nav-left {
        order: 2;
        flex: 0 0 0;
        max-width: 0;
        overflow: hidden;
        padding: 0;
    }
    .header-section .header-logo-col {
        order: 1;
        flex: 1 1 auto;
        min-width: 0;
        justify-content: flex-start;
        text-align: left;
    }
    .header-section .header-logo-col .logo-img {
        max-height: 62px;
        max-width: 220px;
        width: auto;
        height: auto;
        object-fit: contain;
    }
    .header-section .header-nav-right {
        order: 3;
        flex: 0 0 auto;
    }
    .header-row .col-4 {
        flex: 0 0 auto;
        max-width: none;
    }
    .header-nav-left .header-menu {
        justify-content: flex-start;
    }
    .header-nav-right .header-menu {
        justify-content: flex-end;
    }
    .header-nav-left .header-menu a,
    .header-nav-right .header-menu a {
        font-size: 12px;
        white-space: nowrap;
    }
    /* Mobile: show hamburger, hide desktop nav, show dropdown when open */
    .header-menu-desktop {
        display: none !important;
    }
    .header-mobile-toggle {
        display: flex;
    }
    .header-mobile-menu {
        display: block;
    }
    .banner-inner {
        padding: 28px 10px 40px;
    }
    .banner-lamps-row {
        margin-bottom: -30px;
    }
    .banner-lamps-row .lamp-img {
        max-width: 118px;
    }
    .banner-special-title {
        font-size: 28px;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }
    .special-carousel {
        padding: 16px 40px 28px;
        border-radius: 6px;
        min-height: 200px;
    }
    .special-carousel .carousel-inner .row .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .special-carousel .carousel-inner {
        min-height: 180px;
    }
    .special-carousel .carousel-control-prev,
    .special-carousel .carousel-control-next {
        width: 36px;
        opacity: 0.9;
    }
    .special-carousel .carousel-control-prev-icon,
    .special-carousel .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }
    .wine-products-carousel,
    .beer-products-carousel {
        padding: 0 36px;
    }
    .wine-products-carousel .carousel-control-prev,
    .wine-products-carousel .carousel-control-next,
    .beer-products-carousel .carousel-control-prev,
    .beer-products-carousel .carousel-control-next {
        width: 48px;
        opacity: 0.9;
    }
    .wine-products-carousel .carousel-control-prev-icon,
    .wine-products-carousel .carousel-control-next-icon,
    .beer-products-carousel .carousel-control-prev-icon,
    .beer-products-carousel .carousel-control-next-icon {
        width: 40px;
        height: 40px;
    }
    .special-bottle-img {
        max-height: 140px;
        min-height: 80px;
        object-fit: contain;
    }
    .bottle-card {
        padding: 0 0 14px;
        min-height: 1px;
    }
    .bottle-name {
        font-size: 15px;
    }
    .bottle-price {
        font-size: 14px;
    }
    .bottle-view-more {
        font-size: 12px;
        padding: 6px 14px;
    }
    .banner-short-desc {
        font-size: 14px;
        margin-top: 16px;
        padding: 0 8px;
    }
    /* Wood section */
    .sandwich-wood {
        padding: 36px 12px 32px;
    }
    .sandwich-box {
        padding: 28px 20px;
    }
    .sandwich-heading-line {
        font-size: 18px;
    }
    .sandwich-text {
        font-size: 15px;
    }
    .sandwich-btns {
        margin-top: 24px;
    }
    .sandwich-btns a {
        display: block;
        margin: 8px auto;
        text-align: center;
        max-width: 200px;
    }
    .wood-circle-top {
        width: 100px;
        height: 100px;
    }
    .wood-circle-bottom {
        width: 130px;
        height: 130px;
    }
    /* Wine section */
    .wine-section .container {
        padding-top: 50px;
        padding-bottom: 44px;
    }
    .wine-bottle-img {
        max-width: 200px;
    }
    .wine-offer-content {
        padding-left: 18px;
        border-left-width: 2px;
    }
    .wine-offer-heading {
        font-size: 26px;
    }
    .wine-offer-desc {
        font-size: 14px;
    }
    .wine-tag {
        font-size: 12px;
        padding: 5px 12px;
    }
    /* .wine-products-section {
        padding: 40px 0 40px;
    } */
    .wine-products-header {
        margin-bottom: 28px;
    }
    .wine-products-heading {
        font-size: 28px;
    }
    .wine-products-desc {
        font-size: 16px;
    }
    .wine-products-carousel {
        padding: 0 24px;
    }
    /* Beer section */
    .beer-section {
        padding: 40px 0 36px;
    }
    .spirit-section {
        padding: 40px 0 36px;
    }
    .beer-section-header {
        margin-bottom: 28px;
    }
    .spirit-section-header {
        margin-bottom: 28px;
    }
    .beer-section-badge {
        font-size: 9px;
        letter-spacing: 1.5px;
        padding: 4px 12px;
        margin-bottom: 10px;
    }
    .beer-section-heading {
        font-size: 28px;
        letter-spacing: 2px;
    }
    .beer-section-heading::after {
        width: 40px;
    }
    .spirit-section-heading {
        font-size: 28px;
        letter-spacing: 2px;
    }
    .spirit-section-heading::after {
        width: 40px;
    }
    .beer-section-desc {
        font-size: 14px;
        margin-bottom: 18px;
    }
    .spirit-section-desc {
        font-size: 14px;
        margin-bottom: 18px;
    }
    .beer-btn-all-products {
        padding: 10px 22px;
        font-size: 11px;
        letter-spacing: 1px;
    }
    .beer-bottle-grid {
        margin-bottom: 24px;
    }
    .beer-bottle-img {
        max-height: 130px;
    }
    .beer-bottle-card {
        padding: 14px 8px 18px;
    }
    .beer-bottle-card:hover {
        transform: translateY(-3px) scale(1.01);
    }
    .special-offer-section {
        padding: 40px 0 36px;
    }
    .blog-section {
        padding: 44px 0 40px;
    }
    .blog-section-heading {
        font-size: 26px;
        letter-spacing: 2px;
    }
    .blog-section-heading::after {
        width: 50px;
    }
    .blog-section-desc {
        font-size: 14px;
    }
    .blog-card-body {
        padding: 16px 14px 18px;
    }
    .blog-card-title {
        font-size: 17px;
    }
    .blog-card-excerpt {
        font-size: 14px;
    }
    .blog-btn-all {
        padding: 10px 24px;
        font-size: 12px;
    }
    .special-offer-header {
        margin-bottom: 28px;
    }
    .special-offer-heading {
        font-size: 28px;
    }
    .special-offer-card {
        padding: 24px 18px 28px;
    }
    .special-offer-title {
        font-size: 20px;
    }
    /* Footer – mobile: solid black bg, curved SVG scales properly */
    .site-footer {
        background-color: #000;
        background-size: 100% 90px;
        padding-top: 42px;
    }
    .footer-top {
        padding: 32px 16px 24px;
        text-align: center;
    }
    .footer-address {
        font-size: 20px;
        line-height: 1.5;
        margin-bottom: 12px;
    }
    .footer-directions {
        font-size: 16px;
        letter-spacing: 1px;
    }
    .footer-bottom {
        padding: 16px 12px 20px;
        min-height: auto;
    }
    .footer-one-line {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .footer-left-group {
        justify-content: center;
    }
    .footer-center-group {
        order: 2;
    }
    .footer-right-group {
        justify-content: center;
    }
    .footer-logo-img {
        height: 56px;
        max-width: 120px;
    }
    .footer-hagerstown-img {
        width: 100px;
        height: auto;
        max-height: 54px;
    }
    .footer-copyright,
    .footer-credit {
        font-size: 10px;
    }
}

/* ---------- SMALL MOBILE (up to 575px) ---------- */
@media (max-width: 575px) {
    :root {
        /* ≥ logo (58px) + padding (10px + 12px) */
        --header-height: 84px;
    }
    .header-section {
        min-height: calc(var(--header-height) + env(safe-area-inset-top, 0px));
        padding-top: calc(10px + env(safe-area-inset-top, 0px));
        padding-right: calc(10px + env(safe-area-inset-right, 0px));
        padding-bottom: 12px;
        padding-left: calc(10px + env(safe-area-inset-left, 0px));
    }
    .header-section .container {
        width: 100%;
        max-width: 100%;
    }
    .header-section .header-logo-col .logo-img {
        max-height: 58px;
        max-width: 200px;
    }
    .header-mobile-toggle {
        width: 40px;
        height: 40px;
    }
    .header-toggle-line {
        width: 20px;
    }
    .header-mobile-toggle[aria-expanded="true"] .header-toggle-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .header-mobile-toggle[aria-expanded="true"] .header-toggle-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    .header-mobile-nav a {
        padding: 12px 20px;
        font-size: 15px;
    }
    .banner-special-title {
        font-size: 24px;
    }
    .special-bottle-img {
        max-height: 140px;
    }
    .wine-big-text {
        font-size: 40px;
    }
    .beer-section-badge {
        font-size: 8px;
        padding: 4px 10px;
    }
    .beer-section-heading {
        font-size: 24px;
    }
    .beer-section-heading::after {
        width: 36px;
    }
    .beer-btn-all-products {
        padding: 8px 20px;
        font-size: 11px;
    }
    .beer-bottle-img {
        max-height: 110px;
    }
    .special-offer-heading {
        font-size: 24px;
    }
    .special-offer-badge {
        font-size: 11px;
        padding: 6px 16px;
    }
    /* Footer – small mobile */
    .site-footer {
        background-size: 100% 70px;
        padding-top: 36px;
    }
    .footer-top {
        padding: 24px 12px 20px;
    }
    .footer-address {
        font-size: 18px;
    }
    .footer-bottom {
        padding: 14px 10px 18px;
    }
    .footer-logo-img {
        height: 48px;
        max-width: 100px;
    }
    .footer-hagerstown-img {
        width: 86px;
        max-height: 48px;
    }
}

/* ---------- DESKTOP (992px and up) – ensure base values ---------- */
@media (min-width: 992px) {
    .special-carousel {
        max-width: 1170px;
    }
    .bottle-card {
        padding: 0 8px 12px;
    }
}


/* Special Feature Section START */
/* Fix card equal height */
.swiper-slide {
    height: auto;
}

.swiper-wrapper {
    align-items: stretch;
}

.beer-bottle-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wine-product-meta {
    flex: 1;
}

/* Fix product name to always take 2 lines space */
.wine-product-name {
    min-height: 2.8em;
    /* reserves space for 2 lines always */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* max 2 lines, then ellipsis */
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4em;
}

/* Push View More button to bottom always */
.wine-product-link {
    margin-top: auto;
    display: inline-block;
}

/* Give swiper extra bottom space for pagination */
.FeaturedSwiper,
.NewArrivalsSwiper,
.SpecialProductsSwiper {
    padding-bottom: 40px !important;
}

/* Pagination position */
.FeaturedSwiper .swiper-pagination,
.NewArrivalsSwiper .swiper-pagination,
.SpecialProductsSwiper .swiper-pagination {
    bottom: 0;
}

/* Inactive dot */
.FeaturedSwiper .swiper-pagination-bullet,
.NewArrivalsSwiper .swiper-pagination-bullet,
.SpecialProductsSwiper .swiper-pagination-bullet {
    background-color: #f5c518;
    opacity: 0.4;
    width: 10px;
    height: 10px;
}

/* Active dot */
.FeaturedSwiper .swiper-pagination-bullet-active,
.NewArrivalsSwiper .swiper-pagination-bullet-active,
.SpecialProductsSwiper .swiper-pagination-bullet-active {
    background-color: #f5c518;
    opacity: 1;
    width: 12px;
    height: 12px;
}

/* Special Feature Section END */

/* ===== Age Gate (frontend) ===== */
html.age-gate-open,
body.age-gate-open {
    overflow: hidden;
}

.age-gate[hidden] {
    display: none !important;
}

.age-gate {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: grid;
    place-items: center;
    padding: 16px;
}

.age-gate__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.90);
    backdrop-filter: blur(6px);
}

.age-gate__dialog {
    position: relative;
    width: min(1040px, 100%);
    background: #0f0f10;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 18px;
    padding: 90px 48px 90px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.60);
    text-align: center;
    color: rgba(255, 255, 255, 0.92);
}

.age-gate__brand {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.age-gate__logo {
    max-height: 100px;
    width: auto;
    height: auto;
}

.age-gate__title {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    margin: 8px 0 12px;
    font-size: clamp(26px, 3.4vw, 44px);
    line-height: 1.2;
}

.age-gate__subtitle {
    font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 600;
    margin: 0 0 16px;
    font-size: clamp(18px, 2.2vw, 24px);
    line-height: 1.4;
}

.age-gate__fineprint {
    margin: 0 auto 26px;
    max-width: 48ch;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.70);
    line-height: 1.55;
}

.age-gate__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 6px;
}

.age-gate__btn {
    appearance: none;
    border-radius: 10px;
    padding: 14px 22px;
    min-width: 230px;
    font-weight: 700;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.92);
    transition: transform 120ms ease, box-shadow 120ms ease, background-color 120ms ease;
}

.age-gate__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.age-gate__btn--primary {
    background: var(--bronze);
    border-color: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.age-gate__btn--primary:hover {
    background: #8c5f33;
}

.age-gate__btn--secondary {
    background: rgba(255, 255, 255, 0.08);
}

.age-gate__blocked {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

@media (max-width: 480px) {
    .age-gate__dialog {
        padding: 28px 18px;
    }
    .age-gate__logo {
        max-height: 56px;
    }
    .age-gate__btn {
        min-width: 100%;
    }
}

.age-gate__blocked-title {
    margin: 0;
    font-weight: 700;
}