/* ══════════════════════════════════════════
   Men Are From Bars — Main Stylesheet
   ══════════════════════════════════════════ */

/* ── Anchor scroll offset (sticky header = ~96px) ─ */
.az-card, .beer-card, .cb-card, .wine-card, .sp-card, .bar-card,
.col-sm-6[id^="rc-"] { scroll-margin-top: 110px; }

/* ── Variables ────────────────────────── */
:root {
    --mafb-dark:   #001e46;
    --mafb-darker: #000d1f;
    --mafb-gold:   #c9a84c;
    --mafb-amber:  #b8860b;
    --mafb-text:   #f2e8d8;
    --mafb-muted:  rgba(242,232,216,.55);
    --mafb-light:  #1e1810;
    --mafb-border: rgba(255,255,255,.15);
}

/* ── Global ───────────────────────────── */
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--mafb-text);
    background: #100d08;
}

/* ── Top Header Bar ───────────────────── */
.mafb-header {
    background: #000;
    color: rgba(255,255,255,.88);
    font-size: 1.15rem;
    font-weight: 600;
    padding: 0;
    border-bottom: 2px solid #c9a84c;
}
.mafb-logo-wrap { display: flex; align-items: center; flex-shrink: 0; line-height: 0; }
.mafb-logo {
    /* Image is 1024x1024 square; logo text sits in the center third.
       object-fit:cover + explicit w/h crops into just the text band. */
    width: 380px;
    height: 92px;
    object-fit: cover;
    object-position: center 48%;
    mix-blend-mode: screen;
    display: block;
}
@media (max-width: 767px) { .mafb-logo { width: 260px; height: 76px; } }
@media (max-width: 400px) { .mafb-logo { width: 190px; height: 55px; } }
.mafb-header-links {
    display: flex; align-items: center; gap: 1.25rem;
    margin-left: auto; flex-shrink: 0;
}
.mafb-header-links a {
    color: rgba(255,255,255,.82); text-decoration: none;
    font-size: .95rem; font-weight: 600; letter-spacing: .3px;
    white-space: nowrap; transition: color .2s;
}
.mafb-header-links a:hover { color: #c9a84c; }
@media (max-width: 767px) { .mafb-header-links { display: none; } }

.mafb-search-form {
    display: flex; align-items: center; gap: .5rem;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50px;
    padding: .35rem .9rem;
    flex-shrink: 0;
    transition: border-color .2s, background .2s;
}
.mafb-search-form:focus-within { border-color: #c9a84c; background: rgba(255,255,255,.1); }
.mafb-search-icon { font-size: 1.2rem; line-height: 1; flex-shrink: 0; }
.mafb-search-label {
    color: rgba(255,255,255,.82); font-size: .95rem; font-weight: 600;
    white-space: nowrap; flex-shrink: 0;
}
.mafb-search-input {
    background: none; border: none; outline: none;
    color: rgba(255,255,255,.82); font-size: .95rem; width: 180px;
    min-width: 0; font-weight: 600;
}
.mafb-search-input::placeholder { color: rgba(255,255,255,.45); }
@media (max-width: 991px) { .mafb-search-label, .mafb-search-input { display: none; } .mafb-search-form { padding: .35rem .6rem; } }
@media (max-width: 767px) { .mafb-search-form { display: none; } }

/* ── Global Search Overlay ─────────────── */
#ss-overlay {
    display: none; position: fixed; inset: 0; z-index: 3000;
    background: rgba(20,14,8,.95); backdrop-filter: blur(10px);
    padding: 8vh 1rem 2rem;
    flex-direction: column; align-items: center;
}
#ss-overlay.open { display: flex; }
.ss-box { width: 100%; max-width: 620px; position: relative; }
.ss-close {
    position: fixed; top: 1.2rem; right: 1.5rem;
    background: none; border: none; color: rgba(242,232,216,.45);
    font-size: 1.6rem; cursor: pointer; line-height: 1;
}
.ss-close:hover { color: #f2e8d8; }
.ss-input-wrap { position: relative; margin-bottom: 1.2rem; }
.ss-input-wrap i { position: absolute; left: 1.1rem; top: 50%; transform: translateY(-50%); color: rgba(242,232,216,.35); font-size: 1rem; }
.ss-input {
    width: 100%; background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.18); border-radius: 14px;
    color: #f2e8d8; padding: .9rem 1.1rem .9rem 3rem;
    font-size: 1.1rem; outline: none;
}
.ss-input:focus { border-color: #c9a84c; }
.ss-input::placeholder { color: rgba(242,232,216,.28); }
.ss-results { max-height: 58vh; overflow-y: auto; }
.ss-result {
    display: flex; align-items: flex-start; gap: .8rem;
    padding: .7rem .9rem; border-radius: 10px;
    text-decoration: none; transition: background .15s;
}
.ss-result:hover { background: rgba(255,255,255,.07); }
.ss-result-icon { font-size: 1.35rem; flex-shrink: 0; margin-top: .05rem; }
.ss-result-title { font-size: .95rem; font-weight: 700; color: #f2e8d8; margin-bottom: .12rem; display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.ss-result-cat { font-size: .65rem; font-weight: 600; letter-spacing: .4px; text-transform: uppercase; background: rgba(201,168,76,.18); color: #c9a84c; border-radius: 3px; padding: .1rem .4rem; flex-shrink: 0; }
.ss-result-desc { font-size: .78rem; color: rgba(242,232,216,.48); }
.ss-empty { text-align: center; color: rgba(242,232,216,.3); padding: 2.5rem 1rem; font-size: .9rem; }
.ss-hint { text-align: center; color: rgba(242,232,216,.2); font-size: .78rem; margin-top: 1.5rem; }

/* ── Search Page ───────────────────────── */
.sr-filters { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.sr-filter { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.55); padding: .35rem 1rem; border-radius: 20px; font-size: .8rem; cursor: pointer; transition: all .2s; }
.sr-filter:hover, .sr-filter.active { background: var(--mafb-gold); border-color: var(--mafb-gold); color: #fff; }
.sr-meta { color: rgba(255,255,255,.35); font-size: .82rem; margin-bottom: 1rem; }
.sr-card { display: flex; align-items: center; gap: 1rem; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); border-radius: 10px; padding: 1rem 1.2rem; text-decoration: none; transition: all .2s; min-height: 80px; }
.sr-card:hover { background: rgba(201,168,76,.1); border-color: var(--mafb-gold); transform: translateY(-1px); }
.sr-card-icon { font-size: 1.9rem; flex-shrink: 0; line-height: 1; }
.sr-card-body { min-width: 0; }
.sr-card-title { font-weight: 700; color: #f2e8d8; font-size: .93rem; display: flex; align-items: center; gap: .45rem; flex-wrap: wrap; margin-bottom: .2rem; }
.sr-card-cat { font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; background: rgba(201,168,76,.18); color: var(--mafb-gold); border-radius: 4px; padding: .1rem .4rem; flex-shrink: 0; }
.sr-card-desc { font-size: .78rem; color: rgba(242,232,216,.42); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sr-empty { text-align: center; padding: 4rem 1rem; color: rgba(255,255,255,.28); }
.sr-empty i { font-size: 2.8rem; margin-bottom: 1rem; display: block; opacity: .4; }
.sr-empty p { margin: 0 0 .5rem; font-size: .95rem; }

/* ── Nested dropdown submenu ───────────── */
.dropdown-submenu { position: relative; }
.dropdown-submenu-toggle { display: flex; align-items: center; justify-content: space-between; }
.dropdown-submenu-toggle .fa-chevron-right { opacity: .5; font-size: .65rem; }
.dropdown-submenu-menu {
    display: none;
    position: absolute;
    top: 0; left: 100%;
    min-width: 200px;
    margin-left: 2px;
}
/* Desktop: show on hover */
@media (min-width: 992px) {
    .dropdown-submenu:hover > .dropdown-submenu-menu { display: block; }
}
/* Mobile: show on .open class (toggled by JS click) */
@media (max-width: 991px) {
    .dropdown-submenu-menu { position: static; margin-left: 1rem; box-shadow: none; border: none; background: transparent; }
    .dropdown-submenu.open > .dropdown-submenu-menu { display: block; }
}

/* ── Navbar ───────────────────────────── */
.mafb-nav {
    background: #111;
    border-bottom: 1px solid rgba(201,168,76,.25);
}
.mafb-nav .navbar { min-height: 72px; }

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,.82);
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 1.35rem .85rem;
    transition: color .2s;
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active { color: var(--mafb-gold); }

.navbar-brand {
    color: var(--mafb-gold) !important;
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: 1px;
}

/* ── Dropdowns ────────────────────────── */
.dropdown-menu {
    background: var(--mafb-dark);
    border: none;
    border-top: 2px solid var(--mafb-gold);
    border-radius: 0;
    margin-top: 0;
    min-width: 190px;
}
.dropdown-item {
    color: rgba(255,255,255,.78);
    font-size: .85rem;
    padding: .45rem 1.2rem;
    transition: background .15s, color .15s;
}
.dropdown-item:hover { background: var(--mafb-gold); color: #fff; }

/* ── Section Headers ──────────────────── */
.section-hdr {
    color: #f2e8d8;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: .85rem;
}
.section-hdr::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 55px; height: 3px;
    background: var(--mafb-gold);
}

/* ── Top Rank Badge ───────────────────── */
.top-rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--mafb-dark);
    color: var(--mafb-gold);
    font-weight: 800;
    font-size: .95rem;
    width: 34px; height: 34px;
    border-radius: 50%;
    margin: .5rem 0;
    flex-shrink: 0;
}

/* ── Card Overrides ───────────────────── */
.card-override {
    border: none;
    background: #1e1810;
    color: #f2e8d8;
    box-shadow: 0 2px 14px rgba(0,0,0,.35);
    transition: transform .2s, box-shadow .2s;
    border-radius: .4rem;
    overflow: hidden;
}
.card-override:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,30,70,.2);
}
.card-clr { color: #f2e8d8; font-weight: 600; font-size: .95rem; }
.goog-font { font-size: 1rem; font-weight: 700; color: #f2e8d8; margin-top: .3rem; }
.goog-font-small { font-size: .82rem; color: var(--mafb-muted); }
.text-link { text-decoration: none; color: #f2e8d8; display: block; }
.text-link:hover { color: var(--mafb-gold); }

/* ── Cocktail Carousel ────────────────── */
.cocktail-carousel-wrap { background: var(--mafb-light); padding: 2.5rem 0 3rem; }
#recipeCarousel .card { max-width: 360px; margin: 0 auto; }
#recipeCarousel .card-img-top { height: 280px; object-fit: cover; }
.carousel-control-prev, .carousel-control-next { width: 6%; }
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--mafb-dark);
    border-radius: 50%;
    padding: 1.1rem;
    background-size: 50%;
}

/* ── About Us ─────────────────────────── */
.about-section {
    border-left: 5px solid var(--mafb-gold);
    padding: 2rem 2.5rem;
    background: #1e1810;
    border-radius: 0 .4rem .4rem 0;
    box-shadow: 0 2px 12px rgba(0,0,0,.3);
    line-height: 1.85;
    color: #f2e8d8;
}
.about-section p:last-child { margin-bottom: 0; }

/* ── Top Bars ─────────────────────────── */
.top-bar-section { background: var(--mafb-light); }

/* ── Continent tabs ───────────────────── */
#continentTabs .nav-link {
    color: rgba(242,232,216,.7);
    font-weight: 600;
    border-radius: 0;
    border-bottom: 3px solid transparent;
    background: transparent;
    transition: color .2s, border-color .2s;
}
#continentTabs .nav-link:hover  { color: var(--mafb-gold); }
#continentTabs .nav-link.active { color: var(--mafb-gold); border-bottom-color: var(--mafb-gold); background: transparent; }

.bar-city-hdr {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--mafb-gold);
    text-align: center;
    border-bottom: 2px solid var(--mafb-gold);
    padding-bottom: .4rem;
    margin: 2.5rem 0 .75rem;
}

/* ── Centre-align bar card rows & content ── */
.tab-pane .row { justify-content: center; }
.tab-pane .card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ── Google Maps link in bar cards ──────── */
.map-link {
    color: var(--mafb-muted);
    text-decoration: none;
    font-size: .82rem;
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    transition: color .2s;
}
.map-link:hover { color: var(--mafb-gold); text-decoration: underline; }
.map-link i { color: var(--mafb-gold); }

/* ── Cocktail 2025 badge ──────────────── */
.badge-2025 {
    display: inline-block;
    font-size: .58rem;
    font-weight: 700;
    background: var(--mafb-gold);
    color: #fff;
    border-radius: 3px;
    padding: .1rem .3rem;
    vertical-align: middle;
    margin-left: .35rem;
    letter-spacing: .03em;
}

/* ── Craft Beer Teaser (home) ─────────── */
.craft-beer-section {
    background: #1e1810;
    color: white;
    padding: 4rem 0;
}
.craft-beer-section .section-hdr { color: var(--mafb-gold); }
.craft-beer-section .section-hdr::after { background: rgba(201,168,76,.4); }
.beer-style-card {
    background: rgba(255,255,255,.06);
    border-left: 4px solid var(--mafb-gold);
    padding: 1.4rem;
    border-radius: .25rem;
    height: 100%;
    color: rgba(255,255,255,.88);
    transition: background .2s;
}
.beer-style-card:hover { background: rgba(255,255,255,.1); }
.beer-icon { font-size: 2rem; color: var(--mafb-gold); margin-bottom: .6rem; }
.beer-style-card h6 { color: var(--mafb-gold); font-weight: 700; font-size: .95rem; margin: .5rem 0 .4rem; }
.beer-style-card p { font-size: .85rem; color: rgba(255,255,255,.65); margin: 0; }

/* ── Blog Teaser (home) ───────────────── */
.blog-teaser-section { background: #100d08; padding: 4rem 0; }
.blog-card img { height: 200px; object-fit: cover; }
.blog-card .badge-cat {
    background: rgba(201,168,76,.15);
    color: var(--mafb-gold);
    font-size: .72rem;
    letter-spacing: .5px;
    padding: .3rem .7rem;
    border-radius: .2rem;
}
.blog-card .card-title a {
    color: #f2e8d8;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
}
.blog-card .card-title a:hover { color: var(--mafb-gold); }
.blog-card .author-line { font-size: .8rem; color: var(--mafb-muted); }
.blog-card .card-override { border-top: 3px solid var(--mafb-gold); }

/* ── Page Hero (sub-pages) ────────────── */
.page-hero {
    background: radial-gradient(ellipse 70% 100% at 50% 100%, rgba(201,168,76,.16) 0%, transparent 70%), linear-gradient(160deg, #100d08 0%, #080604 100%);
    border-bottom: 1px solid rgba(201,168,76,.25);
    padding: 1.6rem 0 1.2rem;
    color: white;
    text-align: center;
}
.page-hero h1 {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 2.2rem;
    color: var(--mafb-gold);
    margin-bottom: .3rem;
}
.page-hero .lead { color: rgba(242,232,216,.65); font-size: .92rem; max-width: 600px; margin: 0 auto; }

/* ── Blog Page ────────────────────────── */
.category-pill {
    display: inline-block;
    padding: .35rem .9rem;
    border: 1px solid var(--mafb-gold);
    color: var(--mafb-gold);
    border-radius: 2rem;
    font-size: .8rem;
    text-decoration: none;
    margin: .2rem;
    transition: all .2s;
}
.category-pill:hover, .category-pill.active { background: var(--mafb-gold); color: white; }
.blog-list-card img { height: 220px; object-fit: cover; }
.write-review-section {
    background: var(--mafb-light);
    border: 1px solid rgba(201,168,76,.2);
    border-radius: .5rem;
    padding: 2rem;
}
.star-rating { color: var(--mafb-gold); font-size: 1.1rem; }

/* ── Craft Beer Page ──────────────────── */
.beer-style-full {
    background: #1e1810;
    border-radius: .4rem;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0,30,70,.08);
    height: 100%;
    border-top: 4px solid var(--mafb-gold);
}
.beer-style-full h5 { color: #f2e8d8; font-weight: 700; }
.abv-badge {
    background: rgba(201,168,76,.15);
    color: var(--mafb-gold);
    font-size: .72rem;
    padding: .2rem .55rem;
    border-radius: 2rem;
    font-weight: 600;
}
.brewery-card {
    background: #1e1810;
    border-radius: .4rem;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,30,70,.07);
    border-left: 4px solid var(--mafb-gold);
    height: 100%;
}
.brewery-card h6 { color: #f2e8d8; font-weight: 700; }

/* ── Spirits / Recipes / Beer-Wine Pages ─ */
.hub-card {
    background: #1e1810;
    border-radius: .4rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 12px rgba(0,30,70,.08);
    text-align: center;
    height: 100%;
    transition: transform .2s, box-shadow .2s;
    border-bottom: 3px solid transparent;
}
.hub-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,30,70,.14);
    border-bottom-color: var(--mafb-gold);
}
.hub-card i { font-size: 2.5rem; color: var(--mafb-gold); margin-bottom: 1rem; }
.hub-card h5 { color: #f2e8d8; font-weight: 700; }
.hub-card p { font-size: .88rem; color: var(--mafb-muted); margin: 0; }
.hub-card a { text-decoration: none; color: inherit; }

/* ── Contact Page ─────────────────────── */
.contact-card {
    background: #1e1810;
    border-radius: .4rem;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,.3);
    color: #f2e8d8;
}

/* ── Footer ───────────────────────────── */
.footer.site {
    background: #0d0b07;
    color: rgba(255,255,255,.75);
    padding: 3rem 0 1.5rem;
}
.footer.site h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    padding-bottom: .75rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,.15) !important;
}
.footer.site .pnav {
    color: var(--mafb-gold) !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: .75rem;
    font-weight: 700;
}
.footer.site ul { list-style: none; padding: 0; margin: 0; }
.footer.site ul li a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    font-size: .85rem;
    line-height: 2;
}
.footer.site ul li a:hover { color: var(--mafb-gold); }
.columned { column-count: 6; column-gap: 1.5rem; }

/* ── Responsive ───────────────────────── */
@media (max-width: 991.98px) {
    .columned { column-count: 3; }
    .mafb-nav .dropdown-menu { border-top: none; background: rgba(0,13,31,.9); }
}
@media (max-width: 575.98px) {
    .columned { column-count: 2; }
    .section-hdr { font-size: 1.15rem; }
    .page-hero { padding: 1.2rem 0 1rem; }
    .page-hero h1 { font-size: 1.7rem; }
}

/* ═══════════════════════════════════════════════════
   Top 10 Cocktails Banner Carousel
   ═══════════════════════════════════════════════════ */
.ctail-banner {
    background: linear-gradient(180deg, #100d08 0%, #16110a 100%);
    border-bottom: 1px solid rgba(201,168,76,.15);
    padding: 2.5rem 0 2rem;
}
.ctail-header { text-align: center; margin-bottom: 1.8rem; }
.ctail-header h2 { font-family: 'Jost', sans-serif; font-weight: 300; text-transform: uppercase; letter-spacing: .12em; color: var(--mafb-gold); font-size: 2.2rem; margin-bottom: .4rem; }
.ctail-header p  { color: rgba(242,232,216,.55); font-size: .9rem; margin: 0; }

/* Stage: arrows + window */
.ctail-stage { display: flex; align-items: center; gap: .75rem; }
.ctail-window { flex: 1; overflow: hidden; }
.ctail-track  {
    display: flex;
    gap: 1rem;
    transition: transform .4s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}

/* Arrow buttons */
.ctail-arrow {
    flex-shrink: 0;
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,.35);
    background: rgba(201,168,76,.08);
    color: var(--mafb-gold);
    font-size: .9rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background .2s, border-color .2s;
}
.ctail-arrow:hover  { background: rgba(201,168,76,.25); border-color: var(--mafb-gold); }
.ctail-arrow:disabled { opacity: .3; cursor: default; }

/* Individual card */
.ctail-card {
    flex: 0 0 calc(33.333% - .67rem);
    background: #1e1810;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color .2s, transform .2s;
}
.ctail-card:hover { border-color: rgba(201,168,76,.35); transform: translateY(-3px); }

.ctail-img-wrap { position: relative; }
.ctail-img-wrap img {
    width: 100%; height: 220px;
    object-fit: cover; display: block;
}
.ctail-rank {
    position: absolute; top: 10px; left: 10px;
    background: var(--mafb-gold);
    color: #100d08;
    font-size: .72rem; font-weight: 800;
    padding: .2rem .55rem;
    border-radius: 50px;
    letter-spacing: .03em;
}

.ctail-body { padding: 1rem; }
.ctail-body h5 { color: #f2e8d8; font-size: .95rem; font-weight: 700; margin-bottom: .4rem; }
.ctail-ing { color: rgba(242,232,216,.5); font-size: .78rem; margin-bottom: .75rem; }

/* Recipe button */
.ctail-recipe-btn {
    background: transparent;
    border: 1px solid rgba(201,168,76,.4);
    color: var(--mafb-gold);
    font-size: .78rem; font-weight: 600;
    padding: .3rem .85rem;
    border-radius: 50px;
    cursor: pointer;
    transition: background .2s;
    margin-bottom: 0;
}
.ctail-recipe-btn:hover { background: rgba(201,168,76,.15); }
.ctail-recipe-btn.open  { background: rgba(201,168,76,.15); }

/* Inline recipe panel */
.ctail-recipe-panel {
    display: none;
    margin-top: .85rem;
    padding: .85rem;
    background: rgba(255,255,255,.04);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.07);
    color: rgba(242,232,216,.8);
    font-size: .8rem;
    line-height: 1.65;
}
.ctail-recipe-panel.open { display: block; }
.ctail-recipe-panel strong { color: var(--mafb-gold); }

/* Dot indicators */
.ctail-dots {
    display: flex; justify-content: center; gap: .5rem;
    margin-top: 1.25rem;
}
.ctail-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    cursor: pointer;
    transition: background .2s, transform .2s;
    border: none;
    padding: 0;
}
.ctail-dot.active { background: var(--mafb-gold); transform: scale(1.3); }

/* Responsive */
@media (max-width: 991px) {
    .ctail-card { flex: 0 0 calc(50% - .5rem); }
}
@media (max-width: 575px) {
    .ctail-card { flex: 0 0 calc(100% - 0rem); }
    .ctail-img-wrap img { height: 200px; }
}
