/* ============================================
   ALD — Aimé Leon Dore  |  style.css
   ============================================ */

/* ─── Custom Fonts ─── */
@font-face {
  font-family: 'apotiq-serif';
  src: url('../fonts/SSCloverRegular.woff2') format('woff2'),
       url('../fonts/SSCloverRegular.woff') format('woff'),
       url('../fonts/SSCloverRegular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 10px; scroll-behavior: smooth; }

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.2rem;
  color: #181818;
  background: #fff;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font-family: inherit; font-size: inherit; color: inherit; }
img { display: block; width: 100%; height: auto; }
ul { list-style: none; }
input, textarea { font-family: inherit; }

/* ─── Variables ─── */
:root {
  --color-bg: #ffffff;
  --color-text: #181818;
  --color-muted: #757575;
  --color-border: #e8e8e8;
  --announcement-h: 30px;
  --header-h: 61px;
  --offset: calc(var(--announcement-h) + var(--header-h));
}

@media (min-width: 1025px) {
  :root {
    --announcement-h: 36px;
    --header-h: 61px;
  }
}

/* ─── Site Header — ALD: 헤더 먼저(top:0), announcement가 그 아래 ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0; right: 0;
  z-index: 102;
  height: var(--header-h);
  background: transparent;
  color: #fff;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, color 0.35s ease,
              border-color 0.35s ease, transform 0.3s ease;
}
.site-header.is-scrolled {
  background: #fff;
  color: #181818;
  border-bottom-color: var(--color-border);
}
.site-header.is-hidden { transform: translateY(-100%); }

/* ─── Announcement Bar — 헤더 아래(top: header-h) ─── */
.announcement-bar {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  z-index: 100;
  height: var(--announcement-h);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  letter-spacing: 0.07em;
  padding: 0 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: transparent;
  color: #fff;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, color 0.35s ease,
              border-color 0.35s ease, height 0.25s ease, opacity 0.25s ease;
}
.announcement-bar.is-scrolled {
  background: #fff;
  color: #181818;
  border-bottom-color: var(--color-border);
}
.announcement-bar.is-collapsed {
  height: 0;
  opacity: 0;
  pointer-events: none;
}

/* SVG strokes & hamburger inherit color */
.menu-btn span { background: currentColor; }
.header-icon svg circle,
.header-icon svg path,
.header-icon svg line { stroke: currentColor; }

/* page-inner: force opaque (no hero) */
body.page-inner .announcement-bar,
body.page-inner .site-header {
  background: #fff !important;
  color: #181818 !important;
  border-color: var(--color-border) !important;
}
body.page-inner main { padding-top: calc(var(--header-h) + var(--announcement-h)); }

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  padding: 0 20px;
}
@media (min-width: 1025px) { .header-inner { padding: 0 40px; } }

/* Left */
.header-left { display: flex; align-items: center; gap: 28px; }

/* Hamburger */
.menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
  height: 22px;
}
.menu-btn span {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: all 0.25s ease;
}
.menu-btn.is-active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-btn.is-active span:nth-child(2) { opacity: 0; }
.menu-btn.is-active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Desktop Nav */
.header-nav { display: none; }
@media (min-width: 1025px) {
  .header-nav {
    display: flex;
    align-items: center;
    gap: 22px;
  }
  .header-nav a {
    font-size: 1.1rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition: opacity 0.2s;
  }
  .header-nav a:hover { opacity: 0.5; }
}

/* Logo — SSClover font, two-line: APOTIQ + 1613 */
.site-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  line-height: 1;
  text-decoration: none;
  color: inherit;
}
.logo-main {
  font-family: 'apotiq-serif', sans-serif;
  font-size: 1.9rem;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
}
.logo-sub {
  font-family: 'apotiq-serif', sans-serif;
  font-size: 1.25rem;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0.7em;
  text-transform: uppercase;
  line-height: 1;
  margin-right: -0.5em; /* optical compensation for trailing letter-spacing */
}

/* Right */
.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.header-icon {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}
.header-icon:hover { opacity: 0.5; }

.header-icon svg { flex-shrink: 0; }

/* Sign-in: hide text on mobile */
.header-signin span { display: none; }
@media (min-width: 768px) { .header-signin span { display: inline; } }

/* ─── Search Overlay ─── */
.search-overlay {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: #fff;
  z-index: 200;
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--color-border);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}
.search-overlay.is-open { transform: translateY(0); }
.search-overlay input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: transparent;
}
.search-overlay input::placeholder { color: #bbb; }
.search-close { font-size: 1.8rem; line-height: 1; color: #181818; opacity: 0.5; }
.search-close:hover { opacity: 1; }

/* ─── Menu Drawer (Full-Screen Dark Overlay, ALD style) ─── */
.menu-overlay { display: none; } /* overlay is the drawer itself */

.menu-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(22, 22, 22, 0.94);
  color: #fff;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  -webkit-overflow-scrolling: touch;
}
.menu-drawer.is-open {
  opacity: 1;
  pointer-events: all;
}

/* ── Drawer top row (mirrors header: close | logo | icons) ── */
.drawer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-h);
  padding: 0 20px;
  flex-shrink: 0;
}
@media (min-width: 1025px) { .drawer-top { padding: 0 40px; } }

.drawer-close {
  justify-self: start;
  color: #fff;
  opacity: 0.75;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  transition: opacity 0.2s;
}
.drawer-close:hover { opacity: 1; }

.drawer-top .site-logo {
  color: #fff;
}
.drawer-top .logo-main,
.drawer-top .logo-sub {
  color: #fff;
}

.drawer-top-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}
.drawer-top-right .header-icon { color: #fff; }
.drawer-top-right .header-icon svg circle,
.drawer-top-right .header-icon svg path,
.drawer-top-right .header-icon svg line { stroke: #fff; }

/* ── Date/location row ── */
.drawer-date-row {
  text-align: center;
  font-size: 1.0rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
  padding: 8px 20px 24px;
  flex-shrink: 0;
}

/* ── Nav links (large uppercase, no borders) ── */
.drawer-nav {
  padding: 16px 20px 28px;
  flex: 1;
}
@media (min-width: 1025px) { .drawer-nav { padding: 20px 40px 28px; } }

.drawer-link {
  display: block;
  padding: 0;
  margin-bottom: 1.6rem;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: none;
  border: none;
  transition: opacity 0.15s;
  line-height: 2.0;
}
@media (min-width: 1025px) { .drawer-link { font-size: 1.6rem; margin-bottom: 1.6rem; } }
.drawer-link:hover { opacity: 0.4; }

/* ── Newsletter ── */
.drawer-newsletter {
  padding: 24px 28px 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}
@media (min-width: 1025px) { .drawer-newsletter { padding: 24px 48px 18px; } }

.drawer-email-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 8px;
  margin-bottom: 10px;
  gap: 12px;
}
.drawer-email-row input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}
.drawer-email-row input::placeholder { color: rgba(255,255,255,0.3); }
.drawer-email-row button {
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  opacity: 0.65;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.drawer-email-row button:hover { opacity: 1; }

.drawer-privacy {
  font-size: 1.0rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.03em;
  line-height: 1.6;
}
.drawer-privacy a {
  color: rgba(255,255,255,0.45);
  text-decoration: underline;
}

/* ── Footer links ── */
.drawer-footer {
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 1025px) { .drawer-footer { padding: 20px 48px; } }

.drawer-footer a {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: #fff;
  transition: opacity 0.15s;
  opacity: 0.75;
}
.drawer-footer a:hover { opacity: 1; }

/* ── Shipping row ── */
.drawer-shipping-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
  flex-shrink: 0;
  cursor: pointer;
  transition: color 0.15s;
}
@media (min-width: 1025px) { .drawer-shipping-row { padding: 16px 48px; } }
.drawer-shipping-row:hover { color: #fff; }
.drawer-ship-arrow { font-size: 1.5rem; opacity: 0.5; }

/* ─── Hero — 화면의 2/3 높이 ─── */
.hero {
  height: 66.67vh;
  min-height: 340px;
  overflow: hidden;
  position: relative;
  background: #000;
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* YouTube iframe — 2/3vh 기준 cover */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-video-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* 16:9 기준: 가로 우선 */
  width: 100vw;
  height: 56.25vw;
  /* 세로가 hero 높이(66.67vh)보다 짧아질 때 세로 채움 */
  min-height: 66.67vh;
  min-width: 118.52vh; /* 66.67vh × (16/9) */
  border: 0;
}
.hero__content {
  position: absolute;
  bottom: 40px;
  left: 24px;
  color: #fff;
}
.hero__eyebrow {
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hero__title {
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* ─── Coming Soon / ALD Golf Section ─── */
.section-module {
  padding: 80px 24px 100px;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}
@media (min-width: 1025px) { .section-module { padding: 120px 40px 140px; } }

.section-eyebrow {
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 12px;
}
.section-heading {
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
@media (min-width: 1025px) { .section-heading { font-size: 2.8rem; } }

/* ─── Forms (newsletter / email) ─── */
.input-row {
  display: flex;
  border: 1px solid #ccc;
  max-width: 380px;
  margin: 0 auto 14px;
}
.input-row input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  outline: none;
  font-size: 1.2rem;
  background: transparent;
}
.input-row input::placeholder { color: #bbb; }
.input-row button {
  padding: 12px 20px;
  background: #181818;
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.input-row button:hover { opacity: 0.75; }

.form-caption {
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--color-muted);
}

/* ─── Footer ─── */
.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 40px 24px 28px;
}
@media (min-width: 1025px) { .site-footer { padding: 50px 40px 32px; } }

.footer-inner { max-width: 1440px; margin: 0 auto; }

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer-newsletter .input-row { margin: 0; max-width: 320px; }
.footer-newsletter .input-row input { padding: 10px 14px; }
.footer-newsletter .input-row button { padding: 10px 16px; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: flex-start;
}
.footer-links a {
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--color-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--color-text); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--color-muted);
}

/* ─── Collection Header ─── */
.collection-header {
  padding: 20px 20px 0;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.collection-title {
  font-size: 1.0rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #181818;
}
.collection-count {
  font-size: 1.0rem;
  letter-spacing: 0.07em;
  color: #aaa;
}

/* ─── Filters Bar ─── */
.filters-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 20px;
  border-bottom: 0.8px solid var(--color-border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.filters-bar::-webkit-scrollbar { display: none; }

.filter-chip {
  flex-shrink: 0;
  padding: 5px 12px;
  border: 0.8px solid var(--color-border);
  font-size: 1.0rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
  color: #181818;
  background: transparent;
}
.filter-chip:hover { border-color: #181818; }
.filter-chip.is-active { background: #181818; color: #fff; border-color: #181818; }

.filter-count {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 1.0rem;
  letter-spacing: 0.07em;
  color: #aaa;
  white-space: nowrap;
}

/* ─── Product Grid ─── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 7px;
  row-gap: 0;
  padding: 0 0 50px;
}
@media (min-width: 768px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }

/* Product Card */
.product-card { background: #fff; cursor: pointer; padding-bottom: 30px; }

.product-card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #f5f5f5;
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.product-card:hover .product-card__img img { transform: scale(1.04); }

.product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #181818;
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
}

.product-card__body { padding: 16px 20px 10px; }
.product-card__name {
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  line-height: 1.41;
  margin-bottom: 1.0rem;
  color: #181818;
}
.product-card__price {
  font-size: 1.0rem;
  line-height: 1.45;
  color: #181818;
}

/* ─── Product Detail ─── */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .product-detail-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* Images */
.product-images { display: grid; grid-template-columns: 1fr; gap: 2px; }
.product-image-item { aspect-ratio: 4/5; overflow: hidden; background: #f5f5f5; }
.product-image-item img { width: 100%; height: 100%; object-fit: cover; }

/* Info Panel */
.product-info {
  padding: 20px 24px 0;
  padding-bottom: 88px; /* space for fixed ATC button on mobile */
}
@media (min-width: 768px) {
  .product-info {
    padding: 28px 40px 80px;
    position: sticky;
    top: var(--header-h);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
}

/* Delivery / collection tag */
.product-info__delivery {
  font-size: 1.0rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 11px;
}

/* Title — ALD uses very small h1 (10px) for minimalist style */
.product-info__name {
  font-size: 1.0rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  line-height: 1.4;
  margin-bottom: 4px;
}

/* Price — full dark, 14px matches ALD */
.product-info__price {
  font-size: 1.4rem;
  color: #181818;
  letter-spacing: 0.07em;
  line-height: 1.0;
  margin-bottom: 24px;
}

/* Size label */
.option-label {
  display: block;
  font-size: 1.0rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #181818;
}

/* Size grid */
.size-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.size-btn {
  min-width: 40px;
  height: 38px;
  padding: 0 10px;
  border: 0.8px solid var(--color-border);
  font-size: 1.0rem;
  letter-spacing: 0.04em;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.size-btn:hover:not(.is-soldout) { border-color: #181818; }
.size-btn.is-selected { background: #181818; color: #fff; border-color: #181818; }
.size-btn.is-soldout {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Add to Bag — 40px height, uppercase, matches ALD btn--bag */
.add-to-bag {
  width: 100%;
  height: 40px;
  padding: 0 20px;
  background: #181818;
  color: #fff;
  font-size: 1.0rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.add-to-bag:hover { opacity: 0.8; }
.add-to-bag:disabled { opacity: 0.4; cursor: not-allowed; }

/* ── Accordion panels (Product Details / Care) ── */
.product-panel { }

/* Toggle — ALD: border-bottom #181818, ::before CSS chevron */
.product-panel__toggle {
  position: relative;
  width: 100%;
  padding: 13px 24px 13px 0;
  font-size: 1.0rem;
  letter-spacing: 0.07em;
  color: #181818;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  border-bottom: 1px solid #181818;
  font-family: inherit;
  display: block;
}

/* Chevron — closed: points down (rotate 45deg) */
.product-panel__toggle::before {
  content: '';
  position: absolute;
  right: 3px;
  top: 14px;
  padding: 4px;
  border-style: solid;
  border-color: #181818;
  border-width: 0 1.5px 1.5px 0;
  display: inline-block;
  transform: rotate(45deg);
  transition: transform 0.3s ease, top 0.3s ease;
}

/* Chevron — open: points up (rotate -135deg) */
.product-panel.is-open .product-panel__toggle::before {
  transform: rotate(-135deg);
  top: 20px;
}

.product-panel__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.product-panel.is-open .product-panel__body {
  max-height: 600px;
}
.product-panel__content {
  font-size: 1.0rem;
  line-height: 1.41;
  letter-spacing: 0.07em;
  color: #181818;
  padding: 12px 0 16px;
}
.product-panel__content p { margin: 0; }
.product-panel__content li {
  padding: 2px 0;
  list-style: none;
}
.product-panel__content li::before { content: '• '; }

/* ── Add to Bag wrap — fixed at viewport bottom (mobile) ── */
.add-to-bag-wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 10px 20px 16px;
  z-index: 50;
  border-top: 0.8px solid #e0e0e0;
}

/* Bar info row: name + price — mobile only */
.atc-bar-info {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 8px;
}
.atc-bar-name {
  font-size: 1.0rem;
  letter-spacing: 0.05em;
  color: #181818;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 65%;
}
.atc-bar-price {
  font-size: 1.0rem;
  letter-spacing: 0.05em;
  color: #181818;
  white-space: nowrap;
}

@media (min-width: 768px) {
  /* Desktop: panel is already sticky, so ATC sits naturally within it */
  .add-to-bag-wrap {
    position: static;
    padding: 0;
    border-top: none;
    background: none;
  }
  .atc-bar-info {
    display: none;
  }
}

/* ─── Cart Toast ─── */
.cart-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #181818;
  color: #fff;
  padding: 14px 22px;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  z-index: 500;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.cart-toast.is-visible { opacity: 1; transform: translateY(0); }

/* ─── States / Loading ─── */
.state-loading,
.state-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* ─── Breadcrumb ─── */
.breadcrumb {
  padding: 14px 20px;
  font-size: 1.0rem;
  letter-spacing: 0.07em;
  color: #aaa;
  border-bottom: 0.8px solid var(--color-border);
}
.breadcrumb a { color: #aaa; }
.breadcrumb a:hover { color: #181818; }
.breadcrumb span { margin: 0 5px; }

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #ddd; }

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