/* ============================================================
   HIGH ON CHAPEL — Static Site Styles
   Exact match to Shopify theme (Dawn + HOC customisations)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@400;500;600;700;800;900&family=Barlow+Condensed:wght@400;500;600;700;800&display=swap');

/* ── Reset & Tokens ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

:root {
  /* Palette — pulled from settings_data.json */
  --hoc-void:        #050508;
  --hoc-dark:        #0b0f14;
  --hoc-darker:      #070a0f;
  --hoc-black:       #000000;
  --hoc-navy:        #192236;
  --hoc-card-bg:     #1d2123;
  --hoc-neon:        rgba(20, 230, 255, 0.90);
  --hoc-neon-soft:   rgba(20, 230, 255, 0.28);
  --hoc-neon-faint:  rgba(20, 230, 255, 0.12);
  --hoc-blue:        #44a8f7;
  --hoc-soft-blue:   #9DC4FF;
  --hoc-cyan:        #c1f9f9;
  --hoc-white:       #ffffff;
  --hoc-text:        rgba(255,255,255,0.92);
  --hoc-muted:       rgba(255,255,255,0.72);
  --hoc-dim:         rgba(255,255,255,0.45);

  /* Typography — match theme settings */
  --font-heading:    'Bebas Neue', sans-serif;
  --font-body:       'Barlow', sans-serif;
  --font-condensed:  'Barlow Condensed', var(--font-body);

  /* Layout */
  --page-width:      1200px;
  --radius:          16px;
  --radius-pill:     999px;

  /* Header height for sticky offsets */
  --header-height:   80px;
  --subnav-height:   38px;
}

html {
  font-size: 62.5%;
  height: 100%;
  scroll-behavior: smooth;
}

/* Fluid rem scale on desktop — matches the Shopify theme */
@media screen and (min-width: 990px) {
  html { font-size: clamp(9px, 0.76vw, 11px); }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.06rem;
  color: var(--hoc-text);
  background: var(--hoc-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (min-width: 750px) {
  body { font-size: 1.6rem; }
}

a   { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
p   { margin: 0 0 0; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); margin: 0; font-weight: 400; }

.page-width {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 24px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}


/* ══════════════════════════════════════════════════════════════
   ANNOUNCEMENT BAR
   ══════════════════════════════════════════════════════════════ */
.announcement-bar {
  background: var(--hoc-navy);
  color: var(--hoc-white);
  text-align: center;
  padding: 8px 16px;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.announcement-bar__message {
  margin: 0;
  text-decoration: underline;
}


/* ══════════════════════════════════════════════════════════════
   HEADER  (sticky, dark)
   ══════════════════════════════════════════════════════════════ */
.site-header {
  background: var(--hoc-black);
  color: #daffff;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: none;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  position: relative;
  min-height: var(--header-height);
}

/* Left group (hamburger) */
.site-header__left {
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
}

/* Right group (search, account, cart) */
.site-header__right {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Icon buttons */
.site-header__icon-btn {
  background: none;
  border: none;
  color: var(--hoc-white);
  cursor: pointer;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: color 0.2s;
}

.site-header__icon-btn:hover {
  color: var(--hoc-blue);
}

/* Logo */
.site-header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header__logo img {
  width: 220px;
  height: auto;
}

@media screen and (min-width: 750px) {
  .site-header__logo img { width: 360px; }
}

@media screen and (min-width: 990px) {
  .site-header__logo img { width: 500px; }
}

/* Shrink logo on scroll */
.site-header.is-scrolled .site-header__logo img {
  width: 160px;
  transition: width 0.3s ease;
}

@media screen and (min-width: 990px) {
  .site-header.is-scrolled .site-header__logo img { width: 375px; }
}


/* ══════════════════════════════════════════════════════════════
   SUB-NAVIGATION BAR
   ══════════════════════════════════════════════════════════════ */
.sub-nav {
  background: #cfe2f3;
  text-align: center;
  position: sticky;
  top: var(--header-height);
  z-index: 49;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.sub-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
}

.sub-nav__link {
  display: block;
  padding: 8px 14px;
  color: #121212;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

@media screen and (min-width: 750px) {
  .sub-nav__link {
    padding: 8px 18px;
    font-size: 1.5rem;
  }
}

.sub-nav__link:hover {
  color: var(--hoc-blue);
}


/* ══════════════════════════════════════════════════════════════
   MOBILE MENU DRAWER
   ══════════════════════════════════════════════════════════════ */
.menu-drawer {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 200;
  display: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.menu-drawer.is-open { display: flex; }

.menu-drawer__panel {
  width: 320px;
  max-width: 85vw;
  background: var(--hoc-dark);
  height: 100%;
  padding: 24px;
  overflow-y: auto;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.menu-drawer__close {
  background: none;
  border: none;
  color: var(--hoc-white);
  cursor: pointer;
  padding: 8px;
  margin-bottom: 24px;
}

.menu-drawer__nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-drawer__nav li {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.menu-drawer__nav a {
  display: block;
  padding: 16px 0;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--hoc-text);
}

.menu-drawer__nav a:hover { color: var(--hoc-neon); }

.menu-drawer__overlay {
  flex: 1;
  cursor: pointer;
}


/* ══════════════════════════════════════════════════════════════
   HERO SECTION  (video bg + "MADE FOR MIDNIGHT" neon heading)
   ══════════════════════════════════════════════════════════════ */
.hoc-hero {
  position: relative;
  background: var(--hoc-dark);
  color: var(--hoc-text);
}

.hoc-hero__media {
  position: relative;
  overflow: hidden;
  background: var(--hoc-dark);
  min-height: 88vh;
}

@media (max-width: 749px) {
  .hoc-hero__media { min-height: 75vh; }
}

.hoc-hero__video,
.hoc-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
}

.hoc-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    rgba(255,255,255,0.25),
    radial-gradient(circle at 50% 40%, rgba(0,0,0,0.10), rgba(0,0,0,0.70)),
    rgba(0,0,0,0.35);
  pointer-events: none;
}

.hoc-hero__content {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(28px, 4vw, 64px);
}

.hoc-hero__inner {
  max-width: 1000px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hoc-hero__heading {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 0.90;
  font-weight: 400;
  font-family: var(--font-heading);
  font-size: clamp(60px, 12vw, 160px);
  color: #eaf7ff;
  -webkit-text-stroke: 1px rgba(170, 240, 255, 0.35);
  text-shadow:
    0 0 8px rgba(120, 220, 255, 0.60),
    0 0 22px rgba(20, 230, 255, 0.40),
    0 0 44px rgba(20, 230, 255, 0.22);
}

.hoc-hero__heading-line {
  display: block;
}

.hoc-hero__cta {
  margin-top: 60px;
}

@media (min-width: 750px) {
  .hoc-hero__cta { margin-top: 180px; }
}


/* ── Buttons ───────────────────────────────────────────────── */

/* Neon pill (cyan glow border) — "SHOP NOW" */
.btn-neon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--hoc-neon);
  background: rgba(0,0,0,0.35);
  color: #eaf7ff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-weight: 800;
  font-size: 1.3rem;
  font-family: var(--font-body);
  cursor: pointer;
  box-shadow:
    0 0 0 2px rgba(0,0,0,0.25) inset,
    0 0 18px var(--hoc-neon-soft);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn-neon:hover,
.btn-neon:focus-visible {
  box-shadow:
    0 0 0 2px rgba(0,0,0,0.25) inset,
    0 0 28px rgba(20,230,255,0.35);
  outline: none;
}

/* Outline white pill — "VISIT" button on neon sign image */
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
  color: var(--hoc-white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-weight: 700;
  font-size: 1.4rem;
  font-family: var(--font-body);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: all 0.25s ease;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--hoc-white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}


/* ══════════════════════════════════════════════════════════════
   DIVIDERS  (black lines between sections)
   ══════════════════════════════════════════════════════════════ */
.hoc-divider {
  height: 5px;
  background: var(--hoc-black);
  width: 100%;
}


/* ══════════════════════════════════════════════════════════════
   IMAGE BANNERS  (full-bleed photo + overlaid text)
   ══════════════════════════════════════════════════════════════ */
.image-banner {
  position: relative;
  overflow: hidden;
}

.image-banner__media {
  position: relative;
  min-height: 420px;
}

@media (min-width: 750px) {
  .image-banner__media { min-height: 520px; }
}

/* Full-image variant (neon sign) — image dictates height */
.image-banner__media--full {
  min-height: 0;
}

.image-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* When media is --full, the image is flow-positioned */
.image-banner__media--full .image-banner__bg {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}

.image-banner__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.image-banner__overlay--30 { background: rgba(0,0,0,0.30); }
.image-banner__overlay--50 { background: rgba(0,0,0,0.50); }
.image-banner__overlay--70 { background: rgba(0,0,0,0.70); }

.image-banner__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  padding: clamp(28px, 4vw, 64px);
}

.image-banner__content--left   { place-items: center start; text-align: left; }
.image-banner__content--center { place-items: center;       text-align: center; }
.image-banner__content--right  { place-items: center end;   text-align: right; }

.image-banner__heading {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--hoc-white);
  max-width: 650px;
  text-transform: uppercase;
}

.image-banner__heading strong {
  font-weight: 700;
}

.image-banner__actions {
  /* vertically/horizontally centered by grid parent */
}


/* ══════════════════════════════════════════════════════════════
   MAP & CONTACT SECTION
   (store interior as BG, info text left, Google Map right)
   ══════════════════════════════════════════════════════════════ */
.hoc-map-section {
  position: relative;
  overflow: hidden;
}

.hoc-map-section__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hoc-map-section__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.58);
  z-index: 1;
}

.hoc-map-section__inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 70%;
  margin: 0 auto;
  padding: 50px 24px;
}

@media (max-width: 989px) {
  .hoc-map-section__inner { width: 100%; }
}

.hoc-map-section__grid {
  display: grid;
  gap: 30px;
}

@media (min-width: 750px) {
  .hoc-map-section__grid {
    grid-template-columns: 40fr 60fr;
    gap: 40px;
    align-items: start;
  }
}

/* Info column — right-aligned text */
.hoc-map-section__info {
  text-align: right;
  padding: 14px 0;
}

.hoc-map-section__title {
  font-family: var(--font-condensed);
  font-size: 4.8rem;
  font-weight: 400;
  color: var(--hoc-cyan);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  line-height: 1;
}

.hoc-map-section__details {
  font-family: var(--font-condensed);
  font-size: 2rem;
  font-weight: 400;
  color: var(--hoc-cyan);
  line-height: 1.8;
}

.hoc-map-section__details p {
  margin: 0;
}

.hoc-map-section__details a {
  color: var(--hoc-cyan);
  text-decoration: none;
}

.hoc-map-section__details a:hover {
  text-decoration: underline;
}

/* Map */
.hoc-map-section__map {
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: auto;
}

.hoc-map-section__map iframe {
  display: block;
  width: 100%;
  height: 440px;
  border: 0;
}

@media (max-width: 749px) {
  .hoc-map-section__map iframe { height: 300px; }
}


/* ══════════════════════════════════════════════════════════════
   GRADIENT DIVIDER  (navy band above brand logos)
   ══════════════════════════════════════════════════════════════ */
.gradient-divider {
  height: 20px;
  background: #0d1930;
}


/* ══════════════════════════════════════════════════════════════
   BRAND LOGOS MARQUEE
   ══════════════════════════════════════════════════════════════ */
.brand-logos {
  background: linear-gradient(89deg, rgba(25, 92, 128, 1), rgba(26, 51, 87, 1) 100%);
  padding: 30px 0 40px;
  overflow: hidden;
}

.brand-logos__heading {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 400;
  color: var(--hoc-white);
  margin: 0 0 24px;
  letter-spacing: 0.04em;
}

.brand-logos__track-wrapper {
  overflow: hidden;
  padding: 0 0;
}

.brand-logos__track {
  display: flex;
  gap: 40px;
  animation: marquee 40s linear infinite;
  width: max-content;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.brand-logos__item {
  flex: 0 0 auto;
  width: 110px;
  height: 110px;
  border-radius: 24px;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.brand-logos__item:hover {
  transform: scale(1.06);
}

.brand-logos__item img {
  width: 82%;
  height: 82%;
  object-fit: contain;
}


/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--hoc-black);
  color: #daffff;
  padding: 36px 0;
}

.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  justify-content: center;
}

.site-footer__links a {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.site-footer__links a:hover {
  color: var(--hoc-blue);
}

.site-footer__bottom {
  text-align: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.site-footer__bottom p {
  margin: 0;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.35);
}


/* ══════════════════════════════════════════════════════════════
   SCROLL-REVEAL ANIMATION
   ══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ══════════════════════════════════════════════════════════════
   CART DRAWER  (slides from right)
   ══════════════════════════════════════════════════════════════ */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: none;
}

.cart-drawer.is-open { display: flex; }

.cart-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}

.cart-drawer__panel {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 420px;
  max-width: 90vw;
  background: var(--hoc-white);
  color: #121212;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.cart-drawer.is-open .cart-drawer__panel {
  transform: translateX(0);
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #e5e5e5;
}

.cart-drawer__title {
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin: 0;
  color: #121212;
}

.cart-drawer__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #121212;
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}

.cart-drawer__body--empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
}

.cart-drawer__continue-btn {
  display: inline-block;
  padding: 14px 32px;
  border: 2px solid #121212;
  color: #121212;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: none;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.cart-drawer__continue-btn:hover {
  background: #121212;
  color: var(--hoc-white);
}

.cart-drawer__account {
  margin-top: 32px;
  font-size: 1.3rem;
  color: #666;
}

.cart-drawer__account-heading {
  font-weight: 700;
  color: #121212;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.cart-drawer__login-link {
  color: #121212;
  text-decoration: underline;
}

/* Cart drawer — product column header */
.cart-drawer__col-header {
  display: flex;
  justify-content: space-between;
  padding: 10px 24px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #999;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid #e5e5e5;
}

/* Cart drawer — item row */
.cart-drawer__item {
  display: flex;
  gap: 14px;
  padding: 18px 24px;
  border-bottom: 1px solid #f0f0f0;
  align-items: flex-start;
}

.cart-drawer__item-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  flex-shrink: 0;
  background: #f8f8f8;
}

.cart-drawer__item-details {
  flex: 1;
  min-width: 0;
}

.cart-drawer__item-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: #121212;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}

.cart-drawer__item-price {
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 10px;
}

.cart-drawer__item-total {
  font-size: 1.4rem;
  font-weight: 600;
  color: #121212;
  white-space: nowrap;
  text-align: right;
  padding-top: 2px;
}

/* Quantity controls */
.cart-drawer__qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
}

.cart-drawer__qty-btn {
  width: 34px;
  height: 34px;
  border: none;
  background: none;
  color: #121212;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.cart-drawer__qty-btn:hover {
  background: #f0f0f0;
}

.cart-drawer__qty-val {
  width: 34px;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 500;
  color: #121212;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  line-height: 34px;
}

.cart-drawer__remove-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
  padding: 4px;
  margin-left: 8px;
  transition: color 0.15s;
}

.cart-drawer__remove-btn:hover {
  color: #e74c3c;
}

.cart-drawer__qty-row {
  display: flex;
  align-items: center;
}

/* Cart drawer — footer with estimated total */
.cart-drawer__footer {
  padding: 16px 24px 24px;
  border-top: 1px solid #e5e5e5;
}

.cart-drawer__total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}

.cart-drawer__total-label {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  color: #121212;
  letter-spacing: 0.02em;
}

.cart-drawer__total-amount {
  font-size: 1.6rem;
  font-weight: 600;
  color: #121212;
}

.cart-drawer__total-currency {
  font-size: 1.1rem;
  font-weight: 400;
  color: #666;
  margin-right: 4px;
}

.cart-drawer__tax-note {
  font-size: 1.1rem;
  color: #999;
  margin-bottom: 16px;
}

.cart-drawer__checkout-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: #5c6ac4;
  color: var(--hoc-white);
  border: none;
  font-size: 1.5rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s;
}

.cart-drawer__checkout-btn:hover {
  background: #4959bd;
}

/* Cart badge on header icon */
.site-header__cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--hoc-blue);
  color: var(--hoc-white);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}


/* ══════════════════════════════════════════════════════════════
   CHECKOUT PAGE
   ══════════════════════════════════════════════════════════════ */
.checkout-page {
  background: #e8ecf1;
  min-height: 100vh;
}

.checkout-page__header {
  background: var(--hoc-white);
  padding: 20px 0;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.checkout-page__logo img {
  height: 60px;
  width: auto;
}

.checkout-page__breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px 0;
  font-size: 1.2rem;
  color: #999;
}

.checkout-page__breadcrumb a {
  color: var(--hoc-blue);
  text-decoration: none;
}

.checkout-page__breadcrumb a:hover {
  text-decoration: underline;
}

.checkout-page__breadcrumb span { color: #ccc; }

.checkout-page__layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  padding: 32px 24px 60px;
  align-items: start;
}

@media (max-width: 849px) {
  .checkout-page__layout {
    grid-template-columns: 1fr;
  }
}

/* Left column — forms */
.checkout-form {
  background: var(--hoc-white);
  border-radius: 8px;
  padding: 32px;
}

.checkout-form__section {
  margin-bottom: 28px;
}

.checkout-form__section:last-child {
  margin-bottom: 0;
}

.checkout-form__section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.checkout-form__section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 400;
  color: #121212;
  letter-spacing: 0.02em;
}

.checkout-form__section-link {
  font-size: 1.2rem;
  color: var(--hoc-blue);
  text-decoration: none;
}

.checkout-form__row {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.checkout-form__field {
  flex: 1;
  position: relative;
}

.checkout-form__input {
  width: 100%;
  padding: 14px 14px 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1.4rem;
  font-family: var(--font-body);
  color: #121212;
  background: var(--hoc-white);
  transition: border-color 0.2s;
}

.checkout-form__input:focus {
  outline: none;
  border-color: var(--hoc-blue);
}

.checkout-form__input-label {
  position: absolute;
  top: 4px;
  left: 14px;
  font-size: 1rem;
  color: #999;
  pointer-events: none;
}

.checkout-form__select {
  width: 100%;
  padding: 14px 14px 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1.4rem;
  font-family: var(--font-body);
  color: #121212;
  background: var(--hoc-white);
  appearance: auto;
}

.checkout-form__checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 14px;
}

.checkout-form__checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--hoc-blue);
}

/* Delivery method toggles */
.checkout-form__delivery-methods {
  display: flex;
  gap: 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 14px;
}

.checkout-form__delivery-btn {
  flex: 1;
  padding: 14px;
  background: var(--hoc-white);
  border: none;
  border-right: 1px solid #ccc;
  font-size: 1.3rem;
  font-family: var(--font-body);
  font-weight: 500;
  color: #666;
  cursor: pointer;
  text-align: center;
  transition: background 0.15s;
}

.checkout-form__delivery-btn:last-child {
  border-right: none;
}

.checkout-form__delivery-btn--active {
  background: #f0f4f8;
  color: #121212;
  font-weight: 600;
}

/* Pickup location card */
.checkout-form__pickup-card {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 14px;
}

.checkout-form__pickup-name {
  font-weight: 600;
  color: #121212;
  margin-bottom: 2px;
}

.checkout-form__pickup-address {
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 2px;
}

.checkout-form__pickup-time {
  font-size: 1.1rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.checkout-form__pickup-free {
  float: right;
  font-weight: 600;
  color: #121212;
}

/* Payment section — Till iframe */
.checkout-form__payment-info {
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 16px;
}

.checkout-form__till-container {
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
  min-height: 300px;
  background: #fafafa;
}

.checkout-form__till-container iframe {
  width: 100%;
  min-height: 400px;
  border: none;
}

.checkout-form__till-label {
  padding: 14px 16px;
  font-weight: 600;
  color: #121212;
  border-bottom: 1px solid #e5e5e5;
  font-size: 1.4rem;
}

.checkout-form__till-body {
  padding: 20px 16px;
  font-size: 1.3rem;
  color: #666;
}

/* Billing address section */
.checkout-form__billing-note {
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 16px;
}

/* Footer actions */
.checkout-form__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #e5e5e5;
}

.checkout-form__return {
  font-size: 1.3rem;
  color: var(--hoc-blue);
  text-decoration: none;
}

.checkout-form__return:hover {
  text-decoration: underline;
}

.checkout-form__submit {
  padding: 16px 32px;
  background: #5c6ac4;
  color: var(--hoc-white);
  border: none;
  border-radius: 6px;
  font-size: 1.5rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.2s;
}

.checkout-form__submit:hover {
  background: #4959bd;
}

/* Right column — order summary */
.checkout-summary {
  background: #dfe4ea;
  border-radius: 8px;
  padding: 28px;
  position: sticky;
  top: 24px;
}

.checkout-summary__item {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
}

.checkout-summary__item-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: var(--hoc-white);
  position: relative;
  flex-shrink: 0;
}

.checkout-summary__item-qty {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #666;
  color: var(--hoc-white);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout-summary__item-name {
  flex: 1;
  font-size: 1.3rem;
  color: #121212;
}

.checkout-summary__item-price {
  font-size: 1.3rem;
  font-weight: 600;
  color: #121212;
}

.checkout-summary__line {
  display: flex;
  justify-content: space-between;
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 8px;
}

.checkout-summary__line--total {
  font-size: 1.6rem;
  font-weight: 700;
  color: #121212;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #bbb;
}

.checkout-summary__tax-note {
  font-size: 1.1rem;
  color: #999;
  margin-top: 2px;
}

.checkout-footer {
  max-width: 700px;
  margin: 0 auto;
  padding: 24px 24px 40px;
  text-align: center;
}

.checkout-footer a {
  font-size: 1.2rem;
  color: var(--hoc-blue);
  text-decoration: none;
  margin: 0 10px;
}

.checkout-footer a:hover {
  text-decoration: underline;
}


/* ══════════════════════════════════════════════════════════════
   SUB-NAV — Active state
   ══════════════════════════════════════════════════════════════ */
.sub-nav__link--active {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}


/* ══════════════════════════════════════════════════════════════
   SHOP PAGE — Category sidebar + image tile grid
   ══════════════════════════════════════════════════════════════ */
.shop-layout {
  display: flex;
  min-height: 70vh;
}

.shop-sidebar {
  width: 260px;
  flex-shrink: 0;
  background: var(--hoc-white);
  color: #121212;
  border-right: 1px solid #e5e5e5;
  padding: 24px 0;
}

.shop-sidebar__nav {
  display: flex;
  flex-direction: column;
}

.shop-sidebar__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  font-size: 1.4rem;
  font-weight: 400;
  color: #121212;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.15s;
}

.shop-sidebar__link:hover {
  background: #f5f5f5;
}

.shop-sidebar__arrow {
  font-size: 1.2rem;
  color: #999;
}

.shop-grid {
  flex: 1;
  background: var(--hoc-white);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.shop-grid__tile {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid #e5e5e5;
}

.shop-grid__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.shop-grid__tile:hover img {
  transform: scale(1.05);
}

.shop-grid__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.65);
  color: var(--hoc-white);
  padding: 10px 14px;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}

@media (max-width: 989px) {
  .shop-layout {
    flex-direction: column;
  }
  .shop-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e5e5e5;
  }
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 549px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }
}


/* ══════════════════════════════════════════════════════════════
   COLLECTION / NEW ARRIVALS PAGE
   ══════════════════════════════════════════════════════════════ */
.collection-page {
  background: #f5f5f5;
  color: #121212;
  min-height: 70vh;
  padding-bottom: 60px;
}

.collection-page__header {
  padding: 40px 24px 0;
  text-align: center;
}

.collection-page__title {
  font-family: var(--font-heading);
  font-size: 4.8rem;
  font-weight: 400;
  color: #121212;
  letter-spacing: 0.04em;
}

/* Filter bar */
.collection-page__filters {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 24px 24px 0;
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ddd;
}

.filter-bar__group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-bar__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: none;
  border: 1px solid #bbb;
  color: #121212;
  font-size: 1.3rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: border-color 0.2s;
}

.filter-bar__btn:hover {
  border-color: #666;
}

.filter-bar__btn svg {
  stroke: #121212;
}

.filter-bar__sort {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-bar__sort-label {
  font-size: 1.3rem;
  color: #666;
}

.filter-bar__sort-select {
  padding: 6px 10px;
  background: transparent;
  border: 1px solid #bbb;
  color: #121212;
  font-size: 1.3rem;
  font-family: var(--font-body);
  cursor: pointer;
}

.filter-bar__count {
  padding-top: 12px;
  font-size: 1.2rem;
  color: #666;
}

/* Product grid */
.product-grid {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 989px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 749px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

.product-card {
  background: var(--hoc-white);
  border: 1px solid #e5e5e5;
  overflow: hidden;
  transition: box-shadow 0.25s;
}

.product-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.product-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-card__media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f8f8f8;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: transform 0.3s;
}

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

.product-card__badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #e74c3c;
  color: var(--hoc-white);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

.product-card__info {
  padding: 14px 16px 6px;
}

.product-card__title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  color: #121212;
  margin: 0 0 4px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.product-card__price {
  font-size: 1.4rem;
  font-weight: 500;
  color: #121212;
  margin: 0;
}

.product-card__actions {
  padding: 10px 16px 16px;
}

.product-card__add-btn {
  display: block;
  width: 100%;
  padding: 12px;
  border: 1px solid #121212;
  background: var(--hoc-white);
  color: #121212;
  font-size: 1.3rem;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s;
}

.product-card__add-btn:hover {
  background: #121212;
  color: var(--hoc-white);
}

.product-card__add-btn--sold-out {
  border-color: #ccc;
  color: #999;
  cursor: not-allowed;
}

.product-card__add-btn--sold-out:hover {
  background: var(--hoc-white);
  color: #999;
}


/* ══════════════════════════════════════════════════════════════
   VISIT PAGE — Simple centered contact info
   ══════════════════════════════════════════════════════════════ */
.visit-page {
  background: var(--hoc-white);
  color: #121212;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}

.visit-page__content {
  text-align: center;
  max-width: 500px;
}

.visit-page__title {
  font-family: var(--font-heading);
  font-size: 5.6rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 2px;
  color: #121212;
}

.visit-page__details {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.8;
  color: #121212;
}

.visit-page__details p {
  margin: 0;
}

.visit-page__details a {
  color: #121212;
  text-decoration: none;
}

.visit-page__details a:hover {
  text-decoration: underline;
}

.visit-page__hours {
  margin-top: 20px;
}


/* ══════════════════════════════════════════════════════════════
   ACCOUNT PAGE — Sign in form
   ══════════════════════════════════════════════════════════════ */
.account-page {
  background: var(--hoc-white);
  color: #121212;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}

.account-page__card {
  width: 100%;
  max-width: 420px;
}

.account-page__title {
  font-family: var(--font-heading);
  font-size: 4.2rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 28px;
  color: #121212;
}

.account-page__form {
  display: flex;
  flex-direction: column;
}

.account-page__field {
  margin-bottom: 18px;
}

.account-page__label {
  display: block;
  font-size: 1.3rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 6px;
}

.account-page__input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1.4rem;
  font-family: var(--font-body);
  color: #121212;
  background: var(--hoc-white);
  transition: border-color 0.2s;
}

.account-page__input:focus {
  outline: none;
  border-color: #121212;
}

.account-page__forgot {
  font-size: 1.2rem;
  color: #666;
  text-decoration: underline;
  margin-bottom: 24px;
  align-self: flex-start;
}

.account-page__submit {
  width: 100%;
  padding: 14px;
  background: #121212;
  color: var(--hoc-white);
  border: none;
  font-size: 1.4rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 16px;
}

.account-page__submit:hover {
  background: #333;
}

.account-page__create {
  text-align: center;
  font-size: 1.3rem;
  color: #666;
  text-decoration: underline;
}

/* ============================================================
   PRODUCT PAGE
   ============================================================ */

.product-page {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 24px 20px 60px;
}

.product-page__breadcrumb {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 24px;
  font-family: var(--font-body);
}

.product-page__breadcrumb a {
  color: #666;
  text-decoration: none;
}

.product-page__breadcrumb a:hover {
  text-decoration: underline;
}

.product-page__breadcrumb span {
  margin: 0 6px;
}

.product-page__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 768px) {
  .product-page__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.product-page__gallery {
  position: sticky;
  top: calc(var(--header-height) + var(--subnav-height) + 20px);
}

.product-page__main-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #f5f5f5;
  border-radius: 4px;
  margin-bottom: 12px;
}

.product-page__thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.product-page__thumb {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: #f5f5f5;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.15s;
}

.product-page__thumb:hover,
.product-page__thumb--active {
  border-color: #121212;
}

.product-page__info {
  padding-top: 4px;
}

.product-page__vendor {
  font-size: 1.2rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.product-page__title {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  color: #121212;
  margin: 0 0 12px;
  line-height: 1.1;
}

.product-page__price {
  font-size: 2rem;
  font-weight: 600;
  color: #121212;
  margin-bottom: 4px;
}

.product-page__price .compare {
  text-decoration: line-through;
  color: #999;
  font-weight: 400;
  margin-right: 8px;
}

.product-page__tax-note {
  font-size: 1.1rem;
  color: #999;
  margin-bottom: 20px;
}

.product-page__variants {
  margin-bottom: 20px;
}

.product-page__variant-label {
  font-size: 1.3rem;
  font-weight: 600;
  color: #121212;
  margin-bottom: 8px;
  display: block;
}

.product-page__variant-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.product-page__variant-btn {
  padding: 8px 18px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  font-size: 1.3rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  color: #121212;
}

.product-page__variant-btn:hover {
  border-color: #666;
}

.product-page__variant-btn--active {
  border-color: #121212;
  background: #121212;
  color: #fff;
}

.product-page__variant-btn--unavailable {
  color: #ccc;
  text-decoration: line-through;
  cursor: not-allowed;
}

.product-page__qty-row {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  align-items: stretch;
}

.product-page__qty {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.product-page__qty button {
  width: 40px;
  height: 44px;
  border: none;
  background: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #121212;
}

.product-page__qty button:hover {
  background: #f5f5f5;
}

.product-page__qty span {
  width: 40px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
}

.product-page__add-btn {
  flex: 1;
  padding: 0 32px;
  height: 44px;
  background: #121212;
  color: #fff;
  border: none;
  font-size: 1.4rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s;
}

.product-page__add-btn:hover {
  background: #333;
}

.product-page__add-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.product-page__pickup {
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 14px 16px;
  margin-bottom: 20px;
  font-size: 1.3rem;
  color: #121212;
}

.product-page__pickup-icon {
  margin-right: 6px;
}

.product-page__description {
  border-top: 1px solid #e5e5e5;
  padding-top: 20px;
  margin-top: 8px;
}

.product-page__description h3 {
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 600;
  color: #121212;
  margin-bottom: 8px;
  cursor: pointer;
}

.product-page__description p,
.product-page__description li {
  font-size: 1.3rem;
  color: #666;
  line-height: 1.7;
}

.product-page__related {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #e5e5e5;
}

.product-page__related-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: #121212;
  text-align: center;
  margin-bottom: 28px;
}

.product-page__related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .product-page__related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   SEARCH
   ============================================================ */

.search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
}

.search-overlay.is-open {
  display: block;
}

.search-drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 9999;
  padding: 20px 20px 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

.search-drawer.is-open {
  display: block;
}

.search-drawer__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: var(--page-width);
  margin: 0 auto;
}

.search-drawer__input {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1.6rem;
  font-family: var(--font-body);
  outline: none;
}

.search-drawer__input:focus {
  border-color: #121212;
}

.search-drawer__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.search-drawer__results {
  max-width: var(--page-width);
  margin: 16px auto 0;
  max-height: 60vh;
  overflow-y: auto;
}

.search-drawer__group-title {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #999;
  margin: 16px 0 8px;
}

.search-drawer__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 4px;
  text-decoration: none;
  color: #121212;
  border-radius: 4px;
  transition: background 0.1s;
}

.search-drawer__item:hover {
  background: #f5f5f5;
}

.search-drawer__item-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: #f5f5f5;
  border-radius: 4px;
  flex-shrink: 0;
}

.search-drawer__item-title {
  font-size: 1.3rem;
  font-weight: 500;
}

.search-drawer__item-price {
  font-size: 1.2rem;
  color: #666;
}

.search-drawer__item-meta {
  font-size: 1.1rem;
  color: #999;
}

.search-drawer__no-results {
  text-align: center;
  padding: 24px;
  font-size: 1.3rem;
  color: #999;
}

/* Search results page */
.search-results-page {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 32px 20px 60px;
}

.search-results-page__title {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  color: #121212;
  margin-bottom: 8px;
}

.search-results-page__count {
  font-size: 1.3rem;
  color: #999;
  margin-bottom: 24px;
}

.search-results-page__form {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.search-results-page__input {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1.6rem;
  font-family: var(--font-body);
}

.search-results-page__btn {
  padding: 10px 24px;
  background: #121212;
  color: #fff;
  border: none;
  font-size: 1.4rem;
  font-family: var(--font-body);
  cursor: pointer;
}

/* ============================================================
   FULL CART PAGE
   ============================================================ */

.cart-page {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 32px 20px 60px;
}

.cart-page__title {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  color: #121212;
  margin-bottom: 4px;
}

.cart-page__count {
  font-size: 1.3rem;
  color: #999;
  margin-bottom: 28px;
}

.cart-page__continue {
  font-size: 1.3rem;
  color: #121212;
  text-decoration: underline;
}

.cart-page__table {
  width: 100%;
  border-collapse: collapse;
}

.cart-page__table thead th {
  font-size: 1.1rem;
  font-weight: 500;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: left;
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e5;
}

.cart-page__table thead th:last-child {
  text-align: right;
}

.cart-page__item-row {
  border-bottom: 1px solid #e5e5e5;
}

.cart-page__item-row td {
  padding: 16px 0;
  vertical-align: middle;
}

.cart-page__item-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-page__item-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: #f5f5f5;
  border-radius: 4px;
}

.cart-page__item-title {
  font-size: 1.4rem;
  font-weight: 500;
  color: #121212;
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
}

.cart-page__item-title:hover {
  text-decoration: underline;
}

.cart-page__item-price {
  font-size: 1.3rem;
  color: #666;
}

.cart-page__item-remove {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #999;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  margin-top: 6px;
  display: block;
}

.cart-page__item-remove:hover {
  color: #e74c3c;
}

.cart-page__item-total {
  text-align: right;
  font-size: 1.4rem;
  font-weight: 500;
  color: #121212;
}

.cart-page__footer {
  display: flex;
  justify-content: flex-end;
  padding-top: 24px;
}

.cart-page__summary {
  text-align: right;
  max-width: 360px;
  width: 100%;
}

.cart-page__subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 1.6rem;
  font-weight: 600;
  color: #121212;
  margin-bottom: 6px;
}

.cart-page__tax-note {
  font-size: 1.2rem;
  color: #999;
  margin-bottom: 20px;
}

.cart-page__checkout-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: #121212;
  color: #fff;
  border: none;
  font-size: 1.4rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s;
}

.cart-page__checkout-btn:hover {
  background: #333;
}

.cart-page__empty {
  text-align: center;
  padding: 60px 20px;
}

.cart-page__empty h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: #121212;
  margin-bottom: 16px;
}

.cart-page__empty a {
  display: inline-block;
  padding: 12px 28px;
  background: #121212;
  color: #fff;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 12px;
}

/* ============================================================
   COLLECTION PAGE
   ============================================================ */

.collection-page {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 32px 20px 60px;
}

.collection-page__header {
  text-align: center;
  margin-bottom: 32px;
}

.collection-page__title {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: #121212;
  margin: 0 0 8px;
}

.collection-page__description {
  font-size: 1.4rem;
  color: #666;
}

.collection-page__toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e5e5;
}

.collection-page__filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.collection-page__filter-select {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1.3rem;
  font-family: var(--font-body);
  background: #fff;
  cursor: pointer;
  color: #121212;
}

.collection-page__count {
  font-size: 1.2rem;
  color: #999;
}

.collection-page__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .collection-page__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .collection-page__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.collection-page__empty {
  text-align: center;
  padding: 40px;
  font-size: 1.4rem;
  color: #999;
  grid-column: 1 / -1;
}

.collection-page__pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.collection-page__page-btn {
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  font-size: 1.3rem;
  font-family: var(--font-body);
  cursor: pointer;
  color: #121212;
  text-decoration: none;
}

.collection-page__page-btn:hover {
  border-color: #666;
}

.collection-page__page-btn--active {
  background: #121212;
  color: #fff;
  border-color: #121212;
}

/* ============================================================
   BLOG
   ============================================================ */

.blog-page {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 32px 20px 60px;
}

.blog-page__title {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: #121212;
  text-align: center;
  margin-bottom: 32px;
}

.blog-page__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 768px) {
  .blog-page__grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.blog-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.blog-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.blog-card__body {
  padding: 20px;
}

.blog-card__date {
  font-size: 1.1rem;
  color: #999;
  margin-bottom: 8px;
}

.blog-card__title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: #121212;
  margin: 0 0 8px;
  line-height: 1.2;
}

.blog-card__title a {
  color: inherit;
  text-decoration: none;
}

.blog-card__title a:hover {
  text-decoration: underline;
}

.blog-card__excerpt {
  font-size: 1.3rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 12px;
}

.blog-card__read-more {
  font-size: 1.3rem;
  color: #121212;
  font-weight: 500;
  text-decoration: underline;
}

/* Article */
.article-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 20px 60px;
}

.article-page__back {
  font-size: 1.2rem;
  color: #666;
  text-decoration: none;
  margin-bottom: 20px;
  display: inline-block;
}

.article-page__back:hover {
  text-decoration: underline;
}

.article-page__title {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: #121212;
  margin: 0 0 8px;
  line-height: 1.1;
}

.article-page__meta {
  font-size: 1.2rem;
  color: #999;
  margin-bottom: 24px;
}

.article-page__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 28px;
}

.article-page__content {
  font-size: 1.5rem;
  color: #333;
  line-height: 1.8;
}

.article-page__content h3 {
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 600;
  color: #121212;
  margin: 28px 0 12px;
}

.article-page__content p {
  margin-bottom: 16px;
}

.article-page__content ul,
.article-page__content ol {
  margin: 0 0 16px 20px;
}

.article-page__content li {
  margin-bottom: 6px;
}

.article-page__content a {
  color: #2563eb;
}

.article-page__share {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  gap: 12px;
}

.article-page__share-label {
  font-size: 1.3rem;
  font-weight: 600;
  color: #121212;
}

.article-page__share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #ccc;
  border-radius: 50%;
  background: none;
  cursor: pointer;
  transition: border-color 0.15s;
}

.article-page__share-btn:hover {
  border-color: #121212;
}

/* ============================================================
   POLICY / INFO PAGES
   ============================================================ */

.policy-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 20px 60px;
}

.policy-page__title {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  color: #121212;
  margin: 0 0 24px;
}

.policy-page__content {
  font-size: 1.4rem;
  color: #333;
  line-height: 1.8;
}

.policy-page__content h2 {
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 600;
  color: #121212;
  margin: 32px 0 12px;
}

.policy-page__content h3 {
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 600;
  color: #121212;
  margin: 24px 0 8px;
}

.policy-page__content p {
  margin-bottom: 14px;
}

.policy-page__content ul,
.policy-page__content ol {
  margin: 0 0 14px 20px;
}

.policy-page__content li {
  margin-bottom: 4px;
}

.policy-page__content a {
  color: #2563eb;
}

.policy-page__updated {
  font-size: 1.2rem;
  color: #999;
  margin-top: 40px;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */

.contact-form {
  max-width: 500px;
  margin: 32px auto 0;
}

.contact-form__field {
  margin-bottom: 16px;
}

.contact-form__label {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  color: #121212;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1.4rem;
  font-family: var(--font-body);
  color: #121212;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: #121212;
}

.contact-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__submit {
  width: 100%;
  padding: 14px;
  background: #121212;
  color: #fff;
  border: none;
  font-size: 1.4rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  letter-spacing: 0.02em;
  margin-top: 8px;
  transition: background 0.2s;
}

.contact-form__submit:hover {
  background: #333;
}

.contact-form__success {
  text-align: center;
  padding: 24px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 4px;
  font-size: 1.4rem;
  color: #166534;
  margin-top: 16px;
  display: none;
}

/* ============================================================
   404 PAGE
   ============================================================ */

.error-page {
  text-align: center;
  padding: 80px 20px;
  max-width: 600px;
  margin: 0 auto;
}

.error-page__code {
  font-family: var(--font-heading);
  font-size: 12rem;
  color: #e5e5e5;
  line-height: 1;
  margin-bottom: 0;
}

.error-page__title {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: #121212;
  margin: 0 0 12px;
}

.error-page__text {
  font-size: 1.4rem;
  color: #666;
  margin-bottom: 28px;
}

.error-page__search {
  display: flex;
  gap: 8px;
  max-width: 400px;
  margin: 0 auto 24px;
}

.error-page__search input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1.4rem;
  font-family: var(--font-body);
}

.error-page__search button {
  padding: 10px 20px;
  background: #121212;
  color: #fff;
  border: none;
  font-size: 1.3rem;
  font-family: var(--font-body);
  cursor: pointer;
}

.error-page__link {
  display: inline-block;
  font-size: 1.3rem;
  color: #121212;
  text-decoration: underline;
}

/* ============================================================
   FOOTER (expanded)
   ============================================================ */

.site-footer__columns {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .site-footer__columns {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

.site-footer__col-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--hoc-white);
  margin-bottom: 12px;
}

.site-footer__newsletter-text {
  font-size: 1.2rem;
  color: var(--hoc-muted);
  margin-bottom: 12px;
  line-height: 1.6;
}

.site-footer__newsletter-form {
  display: flex;
  gap: 8px;
}

.site-footer__newsletter-input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 1.3rem;
  font-family: var(--font-body);
}

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

.site-footer__newsletter-btn {
  padding: 8px 16px;
  border: 1px solid var(--hoc-blue);
  border-radius: 4px;
  background: var(--hoc-blue);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.2s;
}

.site-footer__newsletter-btn:hover {
  background: #3a95dd;
}

.site-footer__newsletter-msg {
  font-size: 1.1rem;
  color: var(--hoc-neon);
  margin-top: 6px;
  display: none;
}

.site-footer__col-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__col-links li {
  margin-bottom: 8px;
}

.site-footer__col-links a {
  font-size: 1.2rem;
  color: var(--hoc-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.site-footer__col-links a:hover {
  color: var(--hoc-white);
}

.site-footer__social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.site-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: var(--hoc-muted);
  transition: border-color 0.15s, color 0.15s;
}

.site-footer__social-link:hover {
  border-color: var(--hoc-white);
  color: var(--hoc-white);
}

.site-footer__payment {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
}

.site-footer__payment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 28px;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--hoc-muted);
  letter-spacing: 0.02em;
}

/* White-bg pages footer override */
body:not(.dark-page) .site-footer {
  background: var(--hoc-void);
}

/* ============================================================
   REGISTER / RESET PASSWORD
   ============================================================ */

.register-page,
.reset-page {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 20px 80px;
  min-height: 50vh;
  background: #fff;
}

.register-page__card,
.reset-page__card {
  max-width: 440px;
  width: 100%;
}

.register-page__title,
.reset-page__title {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  color: #121212;
  margin: 0 0 8px;
  text-align: center;
}

.register-page__subtitle,
.reset-page__subtitle {
  font-size: 1.3rem;
  color: #666;
  text-align: center;
  margin-bottom: 28px;
}

/* ============================================================
   ORDERS / ADDRESSES (account pages)
   ============================================================ */

.orders-page,
.addresses-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px 20px 60px;
}

.orders-page__title,
.addresses-page__title {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  color: #121212;
  margin: 0 0 8px;
}

.orders-page__back,
.addresses-page__back {
  font-size: 1.2rem;
  color: #666;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 24px;
}

.orders-page__back:hover,
.addresses-page__back:hover {
  text-decoration: underline;
}

.orders-page__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.3rem;
}

.orders-page__table th {
  text-align: left;
  font-weight: 600;
  color: #121212;
  padding: 10px 0;
  border-bottom: 2px solid #e5e5e5;
}

.orders-page__table td {
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e5;
  color: #333;
}

.orders-page__empty,
.addresses-page__empty {
  text-align: center;
  padding: 40px;
  font-size: 1.4rem;
  color: #999;
}

.addresses-page__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 600px) {
  .addresses-page__list {
    grid-template-columns: 1fr;
  }
}

.address-card {
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 16px;
  position: relative;
}

.address-card__default {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #2563eb;
  margin-bottom: 8px;
}

.address-card__line {
  font-size: 1.3rem;
  color: #333;
  line-height: 1.6;
}

.address-card__actions {
  margin-top: 12px;
  display: flex;
  gap: 12px;
}

.address-card__btn {
  font-size: 1.2rem;
  color: #2563eb;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}

.addresses-page__add-btn {
  display: inline-block;
  padding: 10px 24px;
  background: #121212;
  color: #fff;
  border: none;
  font-size: 1.3rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  margin-bottom: 24px;
  text-decoration: none;
}

/* Address form modal */
.address-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.address-modal.is-open {
  display: flex;
}

.address-modal__card {
  background: #fff;
  border-radius: 8px;
  padding: 28px;
  max-width: 480px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

.address-modal__title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: #121212;
  margin: 0 0 16px;
}

/* Reuse checkout form field styles for address modal */
.address-modal .checkout-form__field { margin-bottom: 12px; }
.address-modal .checkout-form__input { font-size: 1.3rem; }

.address-modal__actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.address-modal__save {
  flex: 1;
  padding: 12px;
  background: #121212;
  color: #fff;
  border: none;
  font-size: 1.3rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
}

.address-modal__cancel {
  padding: 12px 20px;
  background: none;
  border: 1px solid #ccc;
  font-size: 1.3rem;
  font-family: var(--font-body);
  cursor: pointer;
  color: #666;
}

/* ============================================================
   PRODUCT CARD — compare price variant
   ============================================================ */

.product-card__compare {
  text-decoration: line-through;
  color: #999;
  font-weight: 400;
  margin-right: 4px;
  font-size: 1.2rem;
}
