/* ============================================================
   CUSTOM.CSS — Minimal overrides for Roll-n-Beer
   Most styles moved to style.css. Only unique items remain here.
   ============================================================ */

/* ---- Closed popup ---- */

#we_are_closed {
    max-width: 420px;
    min-width: 0;
    width: calc(100vw - 24px);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0,0,0,.15);
}

.lev2 {display: none !important;}

/* ---- Discount date range info ---- */
.info_discount {
    margin-top: 25px;
    border: 1px solid #ed0000;
    padding: 20px 18px 14px;
    font-size: 14px;
    position: relative;
    border-radius: var(--radius-md);
}
.info_discount::before {
    content: "";
    position: absolute;
    bottom: 12px;
    width: 48px;
    height: 64px;
    right: 12px;
}
.info_discount .h5 {
    color: #ed0000;
    margin-bottom: 15px;
}
.info_discount p {
    margin-bottom: 7px;
    opacity: .7;
}

/* ---- Hashtags ---- */
.hashtag { float: left; text-transform: uppercase; }
.hashtag a { color: #fff !important; margin-right: 7px; font-size: 13px; }
.hashtag a:hover { color: var(--primary) !important; }

@media (max-width: 1400px) { .hashtag a { margin-right: 8px; font-size: 12px; } }
@media (max-width: 1320px) { .hashtag a { margin-right: 5px; font-size: 14px; } .subhash-2 { display: none; } }
@media (max-width: 1270px) { .subhash-1 { display: none; } .hashtag a { margin-right: 7px; font-size: 13px; } }
@media (max-width: 1080px) { .hashtag { display: none; } }

/* ---- Promo pics (header icons) ---- */
.promo_pics img { width: 24px; height: 24px; float: left; }
.promo_pics > div {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    margin-left: 30px;
    color: #5d5d5d;
    font-weight: 600;
    text-align: left;
}
.promo_pics > span { margin-left: 30px; text-align: left; display: block; }

.main_promo > p >img {max-width: 186px;}
.main_promo > p {line-height: 22px;}
.coupon > input {max-width: 300px;}
/* ---- Fix grey gap between footer and bottom bar on mobile ---- */
@media (max-width: 1024px) {
    .footer-new { padding-bottom: 88px; margin-bottom: -64px; }
}

@media (min-width: 680px) {
    .captcha .input_captcha {width: 100%;}
}


