/* =========================================================
   Itasha Core — main stylesheet
   Light, photo-first, Liberty Walk-inspired.
   Tokens in style.css :root
   ========================================================= */

*,
*::before,
*::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.drawer-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease, opacity .2s ease; }

h1, h2, h3, h4 { line-height: 1.05; color: var(--fg); margin: 0; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.muted { color: var(--fg-mute); }

.screen-reader-text {
  position: absolute !important; clip: rect(1px,1px,1px,1px);
  width: 1px; height: 1px; overflow: hidden;
}
.skip-link { position: absolute; left: -999px; top: 0; background: #fff; padding: 10px 16px; z-index: 1000; }
.skip-link:focus { left: 10px; }

/* Display headings = bold condensed uppercase */
.section__title, .hero__title, .fblock__label, .page-head__title,
.single-post__title, .site-footer__logo, .site-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .01em;
  font-weight: 400;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 36px; font-weight: 700; font-size: 12px;
  letter-spacing: .16em; text-transform: uppercase; cursor: pointer;
  border: 1.5px solid var(--fg); background: var(--fg); color: #fff;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { background: transparent; color: var(--fg); }
.btn--ghost { background: transparent; color: var(--fg); }
.btn--ghost:hover { background: var(--fg); color: #fff; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(1.3) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; gap: 28px;
  max-width: var(--container); margin-inline: auto;
  padding: 0 var(--gutter); min-height: 76px;
}
.site-branding { flex: 0 0 auto; }
.custom-logo { height: 44px; width: auto; }
.site-title { font-size: 26px; letter-spacing: .03em; color: var(--fg); }

.site-nav { flex: 1 1 auto; display: flex; justify-content: center; }
.site-nav__menu { display: flex; gap: 2px; list-style: none; margin: 0; padding: 0; }
.site-nav__menu a {
  display: block; padding: 8px 14px; font-size: 12.5px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--fg-dim);
}
.site-nav__menu a:hover, .site-nav__menu .current-menu-item > a { color: var(--fg); }

.site-header__actions { flex: 0 0 auto; display: flex; align-items: center; gap: 18px; }
.lang-switch { font-size: 12px; font-weight: 700; letter-spacing: .1em; color: var(--fg-mute); }
.header-cart {
  font-size: 12px; font-weight: 700; letter-spacing: .1em; color: var(--fg);
  display: inline-flex; gap: 5px; align-items: center;
}
.header-cart__count {
  background: var(--sakura-500); color: #fff; font-size: 11px;
  min-width: 18px; height: 18px; padding: 0 5px; border-radius: 999px;
  display: grid; place-items: center;
}

.menu-toggle {
  display: inline-flex; align-items: center; gap: 9px;
  background: none; border: 0; cursor: pointer; padding: 6px 2px;
  font-size: 12px; font-weight: 700; letter-spacing: .14em; color: var(--fg);
}
.menu-toggle__bars { display: inline-flex; flex-direction: column; gap: 4px; }
.menu-toggle__bars span { width: 22px; height: 2px; background: var(--fg); }

/* =========================================================
   Drawer
   ========================================================= */
.drawer { position: fixed; inset: 0; z-index: 200; visibility: hidden; }
.drawer.is-open { visibility: visible; }
.drawer__scrim {
  position: absolute; inset: 0; background: rgba(0,0,0,.5);
  opacity: 0; transition: opacity .3s ease;
}
.drawer.is-open .drawer__scrim { opacity: 1; }
.drawer__panel {
  position: absolute; top: 0; right: 0; height: 100%;
  width: min(420px, 86vw); background: var(--bg-dark); color: var(--on-dark);
  padding: 80px 40px 40px; overflow-y: auto;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__close {
  position: absolute; top: 22px; right: 28px; background: none; border: 0;
  color: #fff; font-size: 34px; line-height: 1; cursor: pointer;
}
.drawer__menu { list-style: none; margin: 0; padding: 0; }
.drawer__menu li { border-bottom: 1px solid var(--line-dark); }
.drawer__menu a {
  display: block; padding: 18px 0; color: var(--on-dark);
  font-family: var(--font-display); text-transform: uppercase;
  font-size: 24px; letter-spacing: .03em;
}
.drawer__menu a:hover { color: var(--sakura-400); }
.drawer__foot { margin-top: 30px; }

/* =========================================================
   Hero banner (one large photo)
   ========================================================= */
.hero-banner { width: 100%; background: var(--bg-soft); }
.hero-banner__link {
  display: block; width: 100%;
  aspect-ratio: 1920 / 920;             /* matches a wide banner photo */
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero-banner__empty {
  width: 100%; height: 100%; min-height: 360px;
  display: grid; place-items: center; text-align: center; padding: 24px;
  color: var(--fg-mute); font-size: 14px; letter-spacing: .04em;
  background: repeating-linear-gradient(45deg, #f4f4f5, #f4f4f5 18px, #efeff0 18px, #efeff0 36px);
}

/* =========================================================
   Top categories (unified minimal cards — Shopify-like)
   ========================================================= */
.cat-strip { padding: 56px 0 16px; }
.cat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cat-tile { display: block; }
.cat-tile__media {
  display: block; aspect-ratio: 4 / 3; background: var(--bg-soft);
  background-size: cover; background-position: center;
  border: 1px solid var(--line); transition: border-color .2s ease;
}
.cat-tile:hover .cat-tile__media { border-color: var(--fg); }
.cat-tile__label {
  display: block; margin-top: 12px; text-align: center;
  font-family: var(--font-display); text-transform: uppercase;
  font-size: 18px; letter-spacing: .04em; color: var(--fg);
}

/* =========================================================
   World Gallery (Swiper)
   ========================================================= */
.world-gallery { width: 100%; padding-inline: var(--gutter); }
.world-gallery .swiper-slide.gslide {
  width: clamp(260px, 34vw, 460px); aspect-ratio: 3 / 2;
  position: relative; overflow: hidden; background: var(--bg-soft); display: block;
}
.gslide img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gslide:hover img { transform: scale(1.05); }
.gslide__title {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 16px;
  color: #fff; font-size: 14px; font-weight: 600;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.78));
}
.world-gallery__cta { margin-top: 32px; text-align: center; }

/* =========================================================
   Online Store banner (one big block)
   ========================================================= */
.store-banner { width: 100%; }
.store-banner__link {
  position: relative; display: flex; min-height: clamp(360px, 46vw, 560px);
  background-size: cover; background-position: center; overflow: hidden;
  background-color: #121214;
}
.store-banner__link::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.6));
}
.store-banner__inner {
  position: relative; z-index: 2; margin: auto; text-align: center;
  color: #fff; display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 24px;
}
.store-banner__title { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(34px, 6vw, 80px); }
.store-banner__sub { font-size: 16px; color: rgba(255,255,255,.85); letter-spacing: .04em; }
.store-banner__cta {
  margin-top: 14px; font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  border: 1.5px solid #fff; padding: 14px 30px; transition: background .2s ease, color .2s ease;
}
.store-banner__link:hover .store-banner__cta { background: #fff; color: #111; }

/* =========================================================
   Sections
   ========================================================= */
.section { padding: 84px 0; }
.section--soft { background: var(--bg-soft); }
.section__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 16px; margin-bottom: 36px; padding-bottom: 18px;
  border-bottom: 2px solid var(--fg);
}
.section__title { font-size: clamp(28px, 5vw, 56px); }
.section__more {
  font-weight: 700; white-space: nowrap; text-transform: uppercase;
  letter-spacing: .12em; font-size: 12px; color: var(--fg-dim);
}
.section__more:hover { color: var(--sakura-500); }

/* =========================================================
   Gallery grid
   ========================================================= */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gtile { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--bg-soft); display: block; }
.gtile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gtile:hover img { transform: scale(1.06); }
.gtile__title {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 14px;
  color: #fff; font-size: 13px; font-weight: 600;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.75));
  opacity: 0; transition: opacity .25s ease;
}
.gtile:hover .gtile__title { opacity: 1; }
.gtile__placeholder { width: 100%; height: 100%; display: grid; place-items: center; font-size: 40px; }

/* Full gallery page (builds archive) */
.gallery-head { padding: 64px 0 36px; }
.gallery-head__title { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(34px, 7vw, 72px); }
.gallery-head__desc { color: var(--fg-mute); margin-top: 8px; }
.gallery-grid--page { gap: 14px; padding-bottom: 24px; }
@media (min-width: 1100px) { .gallery-grid--page { grid-template-columns: repeat(4, 1fr); } }

/* =========================================================
   News list (What's New)
   ========================================================= */
.news-list { display: flex; flex-direction: column; }
.news-row {
  display: grid; grid-template-columns: 120px 130px 1fr; align-items: center;
  gap: 16px; padding: 20px 4px; border-bottom: 1px solid var(--line);
}
.news-row:hover { background: var(--bg-soft); }
.news-row__date { font-weight: 700; color: var(--fg-mute); font-size: 14px; letter-spacing: .04em; }
.news-row__cat {
  justify-self: start; font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--fg); border: 1px solid var(--fg);
  padding: 3px 10px;
}
.news-row__title { font-weight: 600; }
.news-row:hover .news-row__title { color: var(--sakura-600); }

/* =========================================================
   Generic card grid (archives)
   ========================================================= */
.post-grid { display: grid; gap: 28px; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.post-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card { background: var(--bg); border: 1px solid var(--line); display: flex; flex-direction: column; transition: border-color .2s ease; }
.card:hover { border-color: var(--fg); }
.card__thumb { display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--bg-soft); }
.card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card__thumb img { transform: scale(1.05); }
.card__thumb-placeholder { width: 100%; height: 100%; display: grid; place-items: center; font-size: 40px; }
.card__body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card__tag {
  align-self: flex-start; font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--fg); border: 1px solid var(--line); padding: 3px 10px;
}
.card__title { font-size: 19px; line-height: 1.2; }
.card__title a:hover { color: var(--sakura-600); }
.card__excerpt { margin: 0; color: var(--fg-mute); font-size: 14px; flex: 1; }
.card__meta { font-size: 12px; color: var(--fg-mute); letter-spacing: .04em; }

/* =========================================================
   Layout: content + sidebar
   ========================================================= */
.layout-with-sidebar { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: 48px; padding-block: 64px; }
.main--page { max-width: 820px; margin-inline: auto; padding-block: 64px; }
.page-head { margin-bottom: 36px; padding-bottom: 20px; border-bottom: 2px solid var(--fg); }
.page-head__title { font-size: clamp(32px, 6vw, 64px); margin-bottom: 8px; }
.page-head__desc { color: var(--fg-mute); }

/* Single post */
.single-post__title { font-size: clamp(32px, 6vw, 68px); line-height: .98; margin-bottom: 16px; }
.single-post__meta { display: flex; gap: 10px; flex-wrap: wrap; color: var(--fg-mute); font-size: 13px; margin-bottom: 28px; text-transform: uppercase; letter-spacing: .06em; }
.single-post__cover { margin: 0 0 36px; overflow: hidden; }
.entry-content { font-size: 17px; color: var(--fg-dim); }
.entry-content > * + * { margin-top: 1.3em; }
.entry-content h2, .entry-content h3 { color: var(--fg); margin-top: 1.8em; }
.entry-content a { color: var(--sakura-600); text-decoration: underline; text-underline-offset: 3px; }
.entry-content blockquote { border-left: 3px solid var(--sakura-500); background: var(--bg-soft); margin: 1.6em 0; padding: 16px 22px; }
.single-post__tags { margin-top: 36px; display: flex; gap: 8px; flex-wrap: wrap; }
.single-post__tags a { border: 1px solid var(--line); padding: 6px 14px; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; }

/* Sidebar / widgets */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.widget { border: 1px solid var(--line); padding: 24px; }
.widget__title { font-family: var(--font-display); text-transform: uppercase; font-size: 16px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.widget ul { list-style: none; margin: 0; padding: 0; }
.widget li { padding: 9px 0; border-bottom: 1px solid var(--line); }
.widget li:last-child { border-bottom: 0; }
.widget a:hover { color: var(--sakura-600); }

/* Search */
.search-form { display: flex; gap: 8px; }
.search-form__field { flex: 1; padding: 13px 16px; border: 1px solid var(--line); font-size: 15px; background: #fff; color: var(--fg); }
.search-form__field:focus { outline: 2px solid var(--sakura-400); border-color: transparent; }
.search-form__submit { border: 0; background: var(--fg); color: #fff; padding: 0 20px; cursor: pointer; font-size: 16px; }
.drawer .search-form__field { background: rgba(255,255,255,.08); border-color: var(--line-dark); color: #fff; }

/* Pagination */
.pagination { margin-top: 48px; display: flex; justify-content: center; }
.pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.pagination a, .pagination span { padding: 11px 17px; border: 1px solid var(--line); font-weight: 700; }
.pagination a:hover { border-color: var(--fg); }
.pagination .current { background: var(--fg); color: #fff; border-color: var(--fg); }

/* No results */
.no-results { text-align: center; padding: 90px 20px; }
.no-results__icon { font-size: 48px; display: block; margin-bottom: 16px; }
.no-results h1, .no-results h2 { font-family: var(--font-display); text-transform: uppercase; }

/* =========================================================
   WooCommerce — clean, minimal (Shopify-like)
   ========================================================= */
.shop-wrap { padding-block: 64px; }

/* Product grid cards: thin border, calm type, image-forward */
.woocommerce ul.products,
.woocommerce-page ul.products { gap: 24px 18px; }
.woocommerce ul.products li.product {
  margin: 0 !important; width: auto !important;
  text-align: left; padding-bottom: 6px;
}
.woocommerce ul.products li.product a img {
  margin: 0 0 14px !important; border: 1px solid var(--line);
  aspect-ratio: 1 / 1; object-fit: cover; width: 100%;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 15px !important; font-weight: 500 !important; padding: 0 !important;
  color: var(--fg); line-height: 1.4;
}
.woocommerce ul.products li.product .price {
  color: var(--fg) !important; font-weight: 600; font-size: 15px; margin-top: 4px; display: block;
}
.woocommerce ul.products li.product .price del { color: var(--fg-mute) !important; font-weight: 400; }

/* Buttons: solid black, square — Shopify checkout feel */
.woocommerce ul.products li.product .button,
.woocommerce a.button, .woocommerce button.button, .woocommerce #respond input#submit,
.woocommerce a.button.alt, .woocommerce button.button.alt {
  background: var(--fg) !important; color: #fff !important; border-radius: 0 !important;
  font-weight: 600 !important; text-transform: uppercase !important; letter-spacing: .08em !important;
  padding: 12px 22px !important; font-size: 12px !important;
}
.woocommerce ul.products li.product .button { margin-top: 12px !important; }
.woocommerce ul.products li.product .button:hover,
.woocommerce a.button:hover, .woocommerce button.button:hover { background: var(--sakura-500) !important; }
.woocommerce span.onsale {
  background: var(--fg) !important; color: #fff !important; border-radius: 0 !important;
  min-height: auto; line-height: 1; padding: 6px 10px; font-size: 11px; font-weight: 600;
}
.woocommerce div.product p.price { color: var(--fg) !important; font-weight: 600; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--bg-dark); color: var(--on-dark); }
.site-footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; padding-block: 72px 52px; }
.site-footer__logo { font-size: 30px; color: #fff; }
.site-footer__desc { color: rgba(255,255,255,.55); margin-top: 12px; max-width: 360px; }
.site-footer__h { font-family: var(--font-display); text-transform: uppercase; font-size: 15px; letter-spacing: .08em; margin-bottom: 18px; color: #fff; }
.site-footer a { color: rgba(255,255,255,.72); }
.site-footer a:hover { color: var(--sakura-400); }
.site-footer__menu, .site-footer__social-menu { list-style: none; margin: 0; padding: 0; }
.site-footer__menu li { padding: 8px 0; border-bottom: 1px solid var(--line-dark); text-transform: uppercase; letter-spacing: .06em; font-size: 13px; }
.site-footer__social-menu { display: flex; gap: 18px; margin-top: 22px; flex-wrap: wrap; text-transform: uppercase; letter-spacing: .06em; font-size: 12px; font-weight: 600; }
.site-footer__bottom { border-top: 1px solid var(--line-dark); }
.site-footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-block: 22px; }
.site-footer__bottom p { margin: 0; color: rgba(255,255,255,.45); font-size: 13px; }
.site-footer__totop { font-size: 12px; font-weight: 700; letter-spacing: .12em; color: rgba(255,255,255,.72); }

/* =========================================================
   LIBERTY WALK-faithful homepage blocks
   ========================================================= */

/* Top utility bar */
.topbar { background: var(--bg-dark); color: #fff; }
.topbar__inner {
  max-width: var(--container); margin-inline: auto; padding: 7px var(--gutter);
  display: flex; align-items: center; justify-content: flex-end; gap: 22px;
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
}
.topbar a { color: rgba(255,255,255,.8); }
.topbar a:hover { color: #fff; }
.topbar__sep { color: rgba(255,255,255,.3); }

/* Hero slider (Swiper) — full width */
.hero-swiper { width: 100%; height: clamp(480px, 90vh, 920px); background: var(--bg-soft); }
.hero-swiper .swiper-slide {
  background-size: cover; background-position: center; background-repeat: no-repeat;
  display: flex; align-items: flex-end;
}
.hero-swiper .swiper-slide__cap {
  color: #fff; font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(22px, 3vw, 44px); padding: 44px var(--gutter); width: 100%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.55));
}
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev { color: #fff; }
.hero-swiper .swiper-pagination-bullet { background: #fff; opacity: .55; }
.hero-swiper .swiper-pagination-bullet-active { opacity: 1; }

/* Big banner blocks (the LW signature) */
.banner-grid { display: grid; grid-template-columns: 1fr 1fr; }
.banner { position: relative; display: block; }
.banner--full { grid-column: 1 / -1; }
.banner__link {
  position: relative; display: flex; min-height: 380px;
  background-size: cover; background-position: center; overflow: hidden;
  background-color: #121214;
}
.banner--full .banner__link { min-height: clamp(360px, 40vw, 520px); }
.banner__link::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.6));
  transition: background .3s ease;
}
.banner__link:hover::before { background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.5)); }
.banner__inner {
  position: relative; z-index: 2; margin: auto; text-align: center; color: #fff;
  display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 28px;
}
.banner__label { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(30px, 4.4vw, 66px); line-height: 1; }
.banner__sub { font-size: 14px; color: rgba(255,255,255,.85); letter-spacing: .05em; }
.banner__cta {
  margin-top: 14px; font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  border: 1.5px solid #fff; padding: 13px 26px; transition: background .2s ease, color .2s ease;
}
.banner__link:hover .banner__cta { background: #fff; color: #111; }

/* Store / location cards */
.store-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.store-card { display: block; border: 1px solid var(--line); }
.store-card__media { aspect-ratio: 16 / 10; background: var(--bg-soft) center/cover; }
.store-card__body { padding: 16px 18px; }
.store-card__city { font-family: var(--font-display); text-transform: uppercase; font-size: 20px; letter-spacing: .03em; }
.store-card__addr { color: var(--fg-mute); font-size: 13px; margin-top: 4px; }

/* Partner logos */
.partners { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 40px; }
.partner { height: 46px; filter: grayscale(1); opacity: .65; transition: opacity .2s ease, filter .2s ease; }
.partner:hover { filter: grayscale(0); opacity: 1; }

/* Open hours + international band */
.hours-band { background: var(--bg-dark); color: var(--on-dark); }
.hours-band__inner {
  max-width: var(--container); margin-inline: auto; padding: 64px var(--gutter);
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.hours-band h3 { font-family: var(--font-display); text-transform: uppercase; color: #fff; font-size: 24px; margin-bottom: 18px; }
.hours-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.hours-table td { padding: 9px 0; border-bottom: 1px solid var(--line-dark); color: rgba(255,255,255,.8); }
.hours-table td:last-child { text-align: right; }
.hours-band__cta p { color: rgba(255,255,255,.7); margin-bottom: 18px; }
.hours-band .btn { background: #fff; color: #111; border-color: #fff; }
.hours-band .btn:hover { background: transparent; color: #fff; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .post-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .site-nav { display: none; } /* rely on MENU drawer */
  .store-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .layout-with-sidebar { grid-template-columns: 1fr; }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
  .news-row { grid-template-columns: 100px 1fr; }
  .news-row__cat { display: none; }
  .banner-grid { grid-template-columns: 1fr; }
  .hours-band__inner { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .cat-row { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .post-grid--3 { grid-template-columns: 1fr; }
  .store-cards { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
}
@media (max-width: 560px) {
  .site-footer__top { grid-template-columns: 1fr; }
  .header-cart, .lang-switch { display: none; }
  .site-footer__bottom-inner { flex-direction: column; align-items: flex-start; }
}
