/* ============================================================
   GSM ALHAJI — E-commerce styles
   (loaded after styles.css)
   ============================================================ */

/* ---- Header icon actions ---- */
.icon-actions { display: flex; align-items: center; gap: 6px; }
.icon-btn { position: relative; width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: var(--elev); border: 1px solid var(--border); color: var(--text); transition: .2s ease; }
.icon-btn:hover { border-color: var(--blue); background: rgba(30,134,255,.1); transform: translateY(-2px); }
.icon-btn svg { width: 21px; height: 21px; }
.badge { position: absolute; top: -6px; right: -6px; min-width: 19px; height: 19px; padding: 0 5px; border-radius: 100px; background: var(--grad-brand); color: #04121f; font-family: var(--font-head); font-weight: 700; font-size: .68rem; display: none; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,.4); }
.badge.show { display: flex; }
.mnav-shop { display: flex; flex-direction: column; gap: 6px; margin: 8px 0; }
.mnav-shop a { font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; padding: 12px 8px; border-bottom: 1px solid var(--border); color: var(--silver); }

/* ---- Updated product cards ---- */
.card-body h3 a { color: inherit; transition: color .2s ease; }
.card-body h3 a:hover { color: var(--green); }
.card-media > a:not(.card-view) { display: block; height: 100%; }
.wish-toggle { position: absolute; top: 12px; right: 12px; width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(7,11,20,.72); backdrop-filter: blur(6px); border: 1px solid var(--border-strong); color: #fff; transition: .2s ease; z-index: 2; }
.wish-toggle svg { width: 18px; height: 18px; }
.wish-toggle:hover { transform: scale(1.1); border-color: #ff5a7a; }
.wish-toggle.on { color: #ff5a7a; border-color: #ff5a7a; background: rgba(255,90,122,.15); }
.card-view { position: absolute; left: 12px; right: 12px; bottom: 12px; display: flex; align-items: center; justify-content: center; gap: 7px; padding: 10px; border-radius: 10px; background: rgba(7,11,20,.82); backdrop-filter: blur(6px); border: 1px solid var(--border-strong); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .84rem; opacity: 0; transform: translateY(10px); transition: .25s ease; }
.card-view svg { width: 16px; height: 16px; }
.card:hover .card-view { opacity: 1; transform: none; }
.card-actions { margin-top: 14px; }
.card-actions .btn { padding: 12px; font-size: .9rem; gap: 8px; }
.card-actions .btn svg { width: 18px; height: 18px; }
.card-price { margin: auto 0 0; }
@media (hover: none) { .card-view { display: none; } }

/* ---- Sort select ---- */
.shop-tools { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.sort-wrap { display: flex; align-items: center; gap: 10px; }
.sort-wrap label { font-size: .85rem; color: var(--muted); font-family: var(--font-head); font-weight: 500; white-space: nowrap; }
.sort-wrap select { padding: 11px 14px; border-radius: 100px; background: var(--input-bg); border: 1px solid var(--border); color: var(--text); font-family: var(--font-body); font-size: .9rem; outline: none; cursor: pointer; }
.sort-wrap select:focus { border-color: var(--blue); }

/* ---- Cart drawer ---- */
.drawer-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(3,6,12,.6); backdrop-filter: blur(3px); opacity: 0; visibility: hidden; transition: .3s ease; }
.cart-drawer { position: fixed; top: 0; right: 0; bottom: 0; z-index: 201; width: 400px; max-width: 92vw; background: var(--bg-2); border-left: 1px solid var(--border-strong); display: flex; flex-direction: column; transform: translateX(100%); transition: transform .34s cubic-bezier(.4,0,.2,1); box-shadow: -20px 0 50px rgba(0,0,0,.5); }
body.drawer-open { overflow: hidden; }
body.drawer-open .drawer-overlay { opacity: 1; visibility: visible; }
body.drawer-open .cart-drawer { transform: none; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--border); }
.drawer-head h3 { margin: 0; font-size: 1.2rem; display: flex; align-items: center; gap: 10px; }
.drawer-count { min-width: 24px; height: 24px; padding: 0 7px; border-radius: 100px; background: var(--grad-brand); color: #04121f; font-size: .78rem; display: inline-flex; align-items: center; justify-content: center; }
.drawer-close { width: 38px; height: 38px; border-radius: 10px; background: var(--elev-2); border: 1px solid var(--border); color: var(--text); display: flex; align-items: center; justify-content: center; }
.drawer-close:hover { border-color: var(--blue); }
.drawer-close svg { width: 18px; height: 18px; }
.drawer-body { flex: 1; overflow-y: auto; padding: 12px 22px; }
.drawer-item { display: grid; grid-template-columns: 62px 1fr auto; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--border); align-items: center; }
.di-img { width: 62px; height: 78px; border-radius: 9px; overflow: hidden; background: #fff; }
.di-img img { width: 100%; height: 100%; object-fit: cover; }
.di-name { font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--text); display: block; line-height: 1.25; }
.di-price { color: var(--green); font-size: .85rem; font-weight: 600; margin: 3px 0 8px; }
.di-remove { align-self: flex-start; width: 30px; height: 30px; border-radius: 8px; background: none; border: none; color: var(--muted-2); display: flex; align-items: center; justify-content: center; }
.di-remove:hover { color: #ff5a7a; }
.di-remove svg { width: 17px; height: 17px; }
.qty { display: inline-flex; align-items: center; gap: 2px; border: 1px solid var(--border-strong); border-radius: 100px; padding: 3px; }
.qty span { min-width: 30px; text-align: center; font-family: var(--font-head); font-weight: 600; font-size: .9rem; }
.qty-btn { width: 28px; height: 28px; border-radius: 50%; background: var(--elev-2); border: none; color: var(--text); display: flex; align-items: center; justify-content: center; transition: .2s ease; }
.qty-btn:hover { background: var(--blue); color: #fff; }
.qty-btn svg { width: 15px; height: 15px; }
.drawer-empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.drawer-empty svg { width: 46px; height: 46px; color: var(--muted-2); margin-bottom: 14px; }
.drawer-empty .btn { margin-top: 16px; }
.drawer-foot { padding: 20px 22px; border-top: 1px solid var(--border); background: var(--surface); }
.drawer-sub { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.drawer-sub b { font-family: var(--font-head); font-size: 1.3rem; }
.drawer-note { font-size: .8rem; color: var(--muted); margin: 0 0 14px; }
.drawer-foot .btn { margin-bottom: 9px; }

/* ---- Toasts ---- */
.toast-wrap { position: fixed; bottom: 90px; right: 22px; z-index: 300; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.toast { display: flex; align-items: center; gap: 11px; padding: 13px 18px; border-radius: 12px; background: var(--surface-2); border: 1px solid var(--border-strong); box-shadow: var(--shadow-md); color: var(--text); font-size: .9rem; font-weight: 500; transform: translateX(120%); opacity: 0; transition: .3s cubic-bezier(.4,0,.2,1); max-width: 320px; }
.toast.in { transform: none; opacity: 1; }
.toast-ic { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--grad-brand); color: #04121f; flex-shrink: 0; }
.toast-ic svg { width: 17px; height: 17px; }

/* ---- Product detail ---- */
.pd-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: start; }
.pd-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-strong); background: #fff; box-shadow: var(--shadow-md); }
.pd-media img { width: 100%; display: block; transition: transform .5s ease; }
.pd-media:hover img { transform: scale(1.03); }
.pd-cat { position: absolute; top: 16px; left: 16px; z-index: 2; font-size: .7rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; padding: 6px 13px; border-radius: 100px; background: rgba(7,11,20,.78); backdrop-filter: blur(6px); color: #fff; border: 1px solid var(--border-strong); }
.pd-brand { font-family: var(--font-head); font-weight: 600; color: var(--green); text-transform: uppercase; letter-spacing: .05em; font-size: .84rem; margin-bottom: 8px; }
.pd-info h1 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 14px; }
.pd-price { font-family: var(--font-head); font-weight: 800; font-size: 2.2rem; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 16px; }
.pd-price .poa { font-size: 1.3rem; color: var(--yellow); -webkit-text-fill-color: var(--yellow); }
.pd-desc { color: var(--muted); font-size: 1.03rem; margin-bottom: 18px; }
.pd-stock { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 600; color: var(--green); margin-bottom: 26px; }
.dot-in { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.pd-buy { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 18px; }
.pd-qty { padding: 5px; }
.pd-qty .qty-btn { width: 34px; height: 34px; }
.pd-sub-actions { display: flex; gap: 22px; flex-wrap: wrap; margin-bottom: 30px; }
.linkbtn { display: inline-flex; align-items: center; gap: 8px; background: none; border: none; color: var(--muted); font-family: var(--font-head); font-weight: 500; font-size: .92rem; cursor: pointer; transition: color .2s ease; }
.linkbtn svg { width: 19px; height: 19px; }
.linkbtn:hover { color: var(--text); }
.linkbtn.on { color: #ff5a7a; }
.pd-trust { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 22px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); margin-bottom: 24px; }
.pd-trust-item { display: flex; align-items: center; gap: 11px; font-size: .88rem; color: var(--silver); font-weight: 500; }
.pd-trust-item svg { width: 22px; height: 22px; color: var(--blue); flex-shrink: 0; }
.pd-specs { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.spec { display: flex; justify-content: space-between; padding: 13px 18px; border-bottom: 1px solid var(--border); font-size: .92rem; }
.spec:last-child { border-bottom: none; }
.spec span { color: var(--muted); }
.spec b { font-family: var(--font-head); font-weight: 600; }

/* ---- Cart page ---- */
.cart-layout { display: grid; grid-template-columns: 1fr 350px; gap: 32px; align-items: start; }
.cart-row { display: grid; grid-template-columns: 84px 1fr auto auto auto; gap: 18px; align-items: center; padding: 18px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); margin-bottom: 14px; }
.cr-img { width: 84px; height: 104px; border-radius: 10px; overflow: hidden; background: #fff; }
.cr-img img { width: 100%; height: 100%; object-fit: cover; }
.cr-brand { font-size: .74rem; color: var(--green); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.cr-name { font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--text); display: block; margin: 3px 0 5px; }
.cr-unit { font-size: .85rem; color: var(--muted); }
.cr-total { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; min-width: 90px; text-align: right; }
.cr-remove { width: 36px; height: 36px; border-radius: 9px; background: var(--elev); border: 1px solid var(--border); color: var(--muted-2); display: flex; align-items: center; justify-content: center; }
.cr-remove:hover { color: #ff5a7a; border-color: #ff5a7a; }
.cr-remove svg { width: 18px; height: 18px; }
.cart-summary, .checkout-summary { padding: 26px; border: 1px solid var(--border); border-radius: var(--radius); background: linear-gradient(180deg, var(--surface), var(--bg-2)); position: sticky; top: 96px; }
.cart-summary h3, .checkout-summary h3 { font-size: 1.25rem; margin-top: 0; }
.sum-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; font-size: .95rem; }
.sum-row.muted span { color: var(--muted); }
.sum-row.total { border-top: 1px solid var(--border); margin-top: 6px; padding-top: 16px; font-size: 1.05rem; }
.sum-row.total b { font-family: var(--font-head); font-size: 1.5rem; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.cart-summary .btn, .checkout-summary .btn { margin-top: 12px; }
.empty-state { text-align: center; padding: 70px 20px; }
.empty-state .es-ico { width: 80px; height: 80px; margin: 0 auto 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--surface); border: 1px solid var(--border); }
.empty-state .es-ico svg { width: 36px; height: 36px; color: var(--muted-2); }
.empty-state h2 { font-size: 1.6rem; }
.empty-state p { color: var(--muted); margin-bottom: 24px; }

/* ---- Checkout ---- */
.checkout-layout { display: grid; grid-template-columns: 1.2fr 380px; gap: 32px; align-items: start; }
.co-items { margin-bottom: 16px; max-height: 320px; overflow-y: auto; }
.co-item { display: grid; grid-template-columns: 52px 1fr auto; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); }
.co-item img { width: 52px; height: 64px; border-radius: 8px; object-fit: cover; background: #fff; }
.co-item-name { display: block; font-family: var(--font-head); font-weight: 600; font-size: .88rem; line-height: 1.25; }
.co-item-meta { font-size: .8rem; color: var(--muted); }
.co-item b { font-family: var(--font-head); font-size: .95rem; }
.co-fineprint { font-size: .8rem; color: var(--muted); margin: 14px 0 0; text-align: center; }

/* ---- Order confirmation ---- */
.order-done { text-align: center; padding: 60px 30px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: linear-gradient(180deg, var(--surface), var(--bg-2)); }
.od-check { width: 84px; height: 84px; margin: 0 auto 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--grad-brand); box-shadow: 0 12px 34px -8px rgba(55,224,106,.5); }
.od-check svg { width: 40px; height: 40px; color: #04121f; }
.order-done h1 { font-size: 2rem; }
.od-ref { display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; letter-spacing: .04em; padding: 12px 24px; margin: 6px 0 14px; border-radius: 12px; background: rgba(30,134,255,.1); border: 1px dashed var(--blue); color: var(--blue); }
.od-total { font-size: 1.05rem; margin-bottom: 20px; }
.od-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .pd-grid { grid-template-columns: 1fr; gap: 28px; }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .cart-summary, .checkout-summary { position: static; }
}
@media (max-width: 620px) {
  .cart-row { grid-template-columns: 64px 1fr auto; row-gap: 12px; }
  .cr-img { width: 64px; height: 80px; }
  .cart-row .qty { grid-column: 2; }
  .cr-total { grid-column: 3; grid-row: 2; text-align: right; }
  .cr-remove { grid-column: 3; grid-row: 1; justify-self: end; }
  .pd-trust { grid-template-columns: 1fr; }
  .cart-drawer { width: 100%; }
  .toast-wrap { left: 16px; right: 16px; align-items: stretch; }
  .toast { max-width: none; }
}

/* ============================================================
   BOOKING (repair booking + code)
   ============================================================ */
.nav-book { color: var(--green) !important; }
.nav-book.active { background: rgba(55,224,106,.08); }
.hdr-book { padding: 11px 18px !important; font-size: .9rem !important; }
.mnav-book { color: var(--green) !important; }
.pd-hint { font-size: .84rem; color: var(--muted); max-width: 320px; }

.booking-box {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,.05);
}
.booking-box .bk-head { margin-bottom: 20px; }
.booking-box .bk-head h3 { font-size: 1.5rem; margin: 0 0 6px; display: flex; align-items: center; gap: 10px; }
.booking-box .bk-head h3 svg { width: 24px; height: 24px; color: var(--green); }
.booking-box .bk-head p { color: var(--muted); font-size: .95rem; margin: 0; }
.booking-form .field { margin-bottom: 14px; }
.booking-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.booking-form .btn { margin-top: 6px; }
.booking-form .bk-terms { font-size: .78rem; color: var(--muted-2); text-align: center; margin: 12px 0 0; }

.booking-result { }
.bk-done { text-align: center; }
.bk-check { width: 72px; height: 72px; margin: 0 auto 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--grad-brand); box-shadow: 0 12px 34px -8px rgba(55,224,106,.5); }
.bk-check svg { width: 34px; height: 34px; color: #04121f; }
.bk-done h3 { font-size: 1.5rem; margin: 0 0 6px; }
.bk-done > p { color: var(--muted); margin: 0 0 14px; }
.bk-code { display: inline-block; font-family: var(--font-head); font-weight: 800; font-size: 1.7rem; letter-spacing: .1em; padding: 14px 28px; margin-bottom: 18px; border-radius: 14px; background: rgba(30,134,255,.1); border: 1px dashed var(--blue); color: var(--blue); }
.bk-recap { text-align: left; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 16px; }
.bk-recap li { display: flex; justify-content: space-between; gap: 14px; padding: 11px 16px; border-bottom: 1px solid var(--border); font-size: .9rem; }
.bk-recap li:last-child { border-bottom: none; }
.bk-recap span { color: var(--muted); }
.bk-recap b { font-family: var(--font-head); font-weight: 600; text-align: right; }
.bk-note { font-size: .84rem; color: var(--muted); margin: 0 0 16px; }
.booking-again { margin-top: 10px; }

/* booking form inside the hero */
.hero-visual .booking-box { width: 100%; }
@media (max-width: 620px) {
  .booking-box { padding: 22px; }
  .booking-form .field-row { grid-template-columns: 1fr; gap: 0; }
}

/* ============================================================
   HEADER REFINEMENT — spacing & de-clutter
   ============================================================ */
.header-inner { gap: 22px; }
.brand { flex-shrink: 0; }
.nav { margin: 0 auto; }
.header-cta { flex-shrink: 0; gap: 10px; }
.header-cta .btn { padding: 11px 18px; font-size: .9rem; }
.hdr-book { padding: 11px 18px !important; font-size: .9rem !important; }
.hdr-book.active { filter: brightness(1.06); box-shadow: 0 0 0 2px rgba(255,255,255,.18) inset, 0 8px 24px -6px var(--blue-glow); }
.icon-btn { flex-shrink: 0; }

/* switch to the mobile menu a little earlier so the top bar never crowds */
@media (max-width: 1040px) {
  .site-header .nav { display: none; }
  .site-header .header-cta .btn { display: none; }
  .site-header .burger { display: flex; }
}

/* ============================================================
   PROMO / ANNOUNCEMENT BAR (10% off booking)
   ============================================================ */
.promo-bar {
  position: sticky; top: 0; z-index: 101;
  height: var(--promo-h);
  display: flex; align-items: center; justify-content: center;
  text-align: center; background: var(--grad-brand); color: #04121f;
  font-family: var(--font-head); font-weight: 600; font-size: .88rem;
  padding: 0 14px; overflow: hidden; white-space: nowrap;
  transition: filter .2s ease;
}
.promo-bar b { font-weight: 800; }
.promo-bar:hover { filter: brightness(1.05); }
.promo-mini { display: none; }

/* booking discount pill on the confirmation card */
.bk-discount {
  display: inline-block; margin-bottom: 16px;
  padding: 9px 16px; border-radius: 100px;
  background: rgba(55,224,106,.12); border: 1px solid var(--green);
  color: var(--green); font-family: var(--font-head); font-weight: 700; font-size: .92rem;
}

/* ============================================================
   MOBILE OPTIMISATION
   ============================================================ */
@media (max-width: 560px) {
  :root { --header-h: 64px; --promo-h: 36px; }
  /* prevent iOS auto-zoom on focus (needs >=16px) */
  .field input, .field textarea, .field select,
  .search-box input, .sort-wrap select { font-size: 16px; }
  .container { padding: 0 16px; }
  .header-inner { padding: 0 16px; gap: 10px; }
  .section { padding: 52px 0; }
  .section--tight { padding: 40px 0; }
  .hero { padding: 30px 0 46px; }
  .hero-copy h1 { font-size: clamp(2rem, 8.5vw, 2.6rem); }
  .booking-box { padding: 20px; }
  .icon-btn { width: 40px; height: 40px; }
  .icon-btn svg { width: 20px; height: 20px; }
  .wa-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .wa-float svg { width: 26px; height: 26px; }
  .promo-full { display: none; }
  .promo-mini { display: inline; }
  .promo-bar { font-size: .8rem; }
  .section-head { margin-bottom: 40px; }
  .cta-band { padding: 34px 22px; }
  .pd-buy { gap: 10px; }
  .pd-buy .btn-lg { flex: 1; }
}

/* ============================================================
   YOUTUBE CTA + GOOGLE MAP
   ============================================================ */
.btn-yt { background: #FF0000; color: #fff; border-color: transparent; }
.btn-yt:hover { background: #e60000; color: #fff; transform: translateY(-2px); box-shadow: 0 12px 28px -8px rgba(255,0,0,.5); }
.btn-yt svg { width: 20px; height: 20px; }

.yt-footer-btn { display: inline-flex; align-items: center; gap: 9px; margin-top: 16px; padding: 10px 18px; border-radius: 100px; font-family: var(--font-head); font-weight: 600; font-size: .9rem; }

.yt-band {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center;
  padding: clamp(28px,4vw,44px) clamp(24px,4vw,46px);
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, #2b0b0b 0%, #17131f 72%);
  border: 1px solid var(--border-strong); box-shadow: var(--shadow-md);
}
.yt-band::before { content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(255,0,0,.4), transparent 65%); top: -150px; right: -80px; filter: blur(40px); }
.yt-band > * { position: relative; z-index: 1; }
.yt-ico { width: 72px; height: 72px; border-radius: 18px; display: flex; align-items: center; justify-content: center; background: #FF0000; box-shadow: 0 12px 30px -8px rgba(255,0,0,.55); flex-shrink: 0; }
.yt-ico svg { width: 42px; height: 42px; color: #fff; }
.yt-band h2 { margin: 0 0 5px; font-size: clamp(1.4rem,3vw,2rem); color: #fff; }
.yt-band p { margin: 0; color: rgba(255,255,255,.78); font-size: 1rem; }
.yt-band .btn { white-space: nowrap; }
@media (max-width: 760px) { .yt-band { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 18px; } }

.map-embed { border: 1px solid var(--border-strong); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); line-height: 0; }
.map-embed iframe { width: 100%; height: 400px; border: 0; display: block; }
@media (max-width: 620px) { .map-embed iframe { height: 300px; } }
