/* ================================================================
   SIAMO Apparel — Main Stylesheet
   Palette: #0a0a0a / #f5f5f5 / #1a1a1a / #2e2e2e / #888888
   Fonts:   Barlow Condensed (headings) + Inter (body)
   ================================================================ */

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

/* ----------------------------------------------------------------
   Custom Properties
   ---------------------------------------------------------------- */
:root {
  --black:      #0a0a0a;
  --white:      #f5f5f5;
  --grey-dark:  #1a1a1a;
  --grey-mid:   #2e2e2e;
  --grey:       #888888;
  --font-head:  'Barlow Condensed', Arial Narrow, sans-serif;
  --font-body:  'Inter', system-ui, sans-serif;
  --transition: 0.18s ease;
  --radius:     2px;
  --container:  1280px;
  --header-h:   64px;
}

/* ----------------------------------------------------------------
   Reset
   ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font: inherit; }
input, textarea, select { font: inherit; }

/* ----------------------------------------------------------------
   Typography
   ---------------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.05;
}
h1 { font-size: clamp(3rem, 8vw, 7rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }
p { line-height: 1.7; }

/* ----------------------------------------------------------------
   Layout
   ---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}
.section { padding-block: clamp(4rem, 8vw, 7rem); }
.section--tight { padding-block: clamp(2rem, 4vw, 3.5rem); }

/* ----------------------------------------------------------------
   Buttons
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 2rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn:disabled { opacity: .45; pointer-events: none; }

.btn--primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn--primary:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--grey);
  border-color: var(--grey-mid);
  font-size: .85rem;
}
.btn--ghost:hover { color: var(--white); border-color: var(--white); }

.btn--danger {
  background: transparent;
  color: #c0392b;
  border-color: #c0392b;
  font-size: .85rem;
}
.btn--danger:hover { background: #c0392b; color: var(--white); }

.btn--full { width: 100%; }
.btn--sm { padding: .5rem 1.25rem; font-size: .85rem; }
.btn--lg { padding: 1rem 2.5rem; font-size: 1.1rem; }

/* ----------------------------------------------------------------
   Forms
   ---------------------------------------------------------------- */
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--grey-dark);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  color: var(--white);
  padding: .75rem 1rem;
  font-size: .95rem;
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--grey-dark); }

.form-error { font-size: .8rem; color: #e74c3c; margin-top: .2rem; }
.field-error { border-color: #e74c3c !important; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

.form-check {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  color: var(--grey);
  cursor: pointer;
}
.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border: 1px solid var(--grey-mid);
  background: var(--grey-dark);
  border-radius: 2px;
  accent-color: var(--white);
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   Flash messages
   ---------------------------------------------------------------- */
.flash-stack { position: fixed; top: 80px; right: 1.5rem; z-index: 900; display: flex; flex-direction: column; gap: .6rem; max-width: 340px; }
.flash {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .9rem 1.2rem;
  border-left: 3px solid;
  font-size: .9rem;
  font-weight: 500;
  background: var(--grey-dark);
  animation: flashIn .25s ease;
}
.flash--success { border-color: #27ae60; }
.flash--error   { border-color: #e74c3c; }
.flash__close { margin-left: auto; cursor: pointer; opacity: .6; font-size: 1.1rem; line-height: 1; }
.flash__close:hover { opacity: 1; }
@keyframes flashIn { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: none; } }

/* ----------------------------------------------------------------
   Header / Nav
   ---------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 800;
  height: var(--header-h);
  background: var(--black);
  border-bottom: 1px solid var(--grey-mid);
  display: flex;
  align-items: center;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header-logo img {
  height: 36px;
  width: auto;
  transition: opacity var(--transition);
}
.header-logo:hover img { opacity: .75; }

.header-nav { display: flex; align-items: center; gap: 2.5rem; }
.header-nav a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  position: relative;
  transition: color var(--transition);
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width var(--transition);
}
.header-nav a:hover,
.header-nav a.active { color: var(--white); }
.header-nav a:hover::after,
.header-nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 1rem; }

.cart-btn {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .9rem;
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  transition: all var(--transition);
}
.cart-btn:hover { border-color: var(--white); color: var(--white); }
.cart-count {
  background: var(--white);
  color: var(--black);
  font-size: .7rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform .28s ease, opacity .2s ease;
  transform-origin: center;
}
/* X morph */
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .header-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--grey-dark);
    border-bottom: 1px solid var(--grey-mid);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1rem 0;
  }
  .header-nav.open { display: flex; }
  .header-nav a {
    width: 100%;
    padding: .9rem 1.5rem;
    font-size: 1rem;
  }
  .header-nav a::after { display: none; }
}

/* ----------------------------------------------------------------
   Hero
   ---------------------------------------------------------------- */
.hero {
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--grey-mid);
}
.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
}
.hero__logo-btn {
  display: inline-block;
  opacity: 0;
  animation: fadeUp .7s ease .05s forwards;
  transition: opacity .2s ease;
}
.hero__logo-btn:hover { opacity: .8 !important; }
.hero__eyebrow {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey);
}
.hero__title {
  font-size: clamp(4.5rem, 12vw, 9rem);
  line-height: .95;
}
.hero__title em {
  font-style: normal;
  display: block;
  -webkit-text-stroke: 1.5px var(--white);
  color: transparent;
}
.hero__body {
  font-size: 1.05rem;
  color: var(--grey);
  max-width: 480px;
  line-height: 1.7;
}
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: .22;
}
.hero .container { position: relative; z-index: 1; }
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-size: .75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.hero__scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: var(--grey-mid);
  animation: scrollPulse 1.8s ease infinite;
}
@keyframes scrollPulse { 0%, 100% { opacity: .3; } 50% { opacity: 1; } }

/* ----------------------------------------------------------------
   Featured / Product Grid
   ---------------------------------------------------------------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--grey-mid);
  border: 1px solid var(--grey-mid);
}

.product-card {
  background: var(--black);
  display: flex;
  flex-direction: column;
  transition: background var(--transition);
  position: relative;
}
.product-card:hover { background: var(--grey-dark); }

.product-card__media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
  background: var(--grey-dark);
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-card__media img { transform: scale(1.03); }

/* Placeholder when no image */
.product-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  background: var(--grey-dark);
}
.product-card__placeholder span {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--grey-mid);
  line-height: 1.1;
}

.product-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--black);
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  padding: .25rem .6rem;
}

.product-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1;
}
.product-card__category {
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
}
.product-card__name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
  transition: color var(--transition);
}
.product-card:hover .product-card__name { color: var(--white); }

.product-card__price {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: auto;
}
.product-card__price--compare {
  font-size: .9rem;
  color: var(--grey);
  text-decoration: line-through;
}

.product-card__link {
  position: absolute;
  inset: 0;
}

/* ----------------------------------------------------------------
   Section headings
   ---------------------------------------------------------------- */
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.section-head__eyebrow {
  display: block;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: .5rem;
}
.section-head__link {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.section-head__link:hover { color: var(--white); }

/* ----------------------------------------------------------------
   Brand strip (homepage)
   ---------------------------------------------------------------- */
.brand-strip {
  border-top: 1px solid var(--grey-mid);
  border-bottom: 1px solid var(--grey-mid);
  background: var(--grey-dark);
  overflow: hidden;
}
.brand-strip__inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 1.25rem 0;
  animation: marquee 18s linear infinite;
  white-space: nowrap;
}
.brand-strip__item {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey);
  flex-shrink: 0;
}
.brand-strip__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--grey);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ----------------------------------------------------------------
   About strip / story block (homepage)
   ---------------------------------------------------------------- */
.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--grey-mid);
  border-top: 1px solid var(--grey-mid);
  border-bottom: 1px solid var(--grey-mid);
}
.story-block__panel {
  background: var(--black);
  padding: clamp(3rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 360px;
}
.story-block__panel--dark { background: var(--grey-dark); }
.story-block__label {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: .75rem;
}
.story-block__heading {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1.25rem;
}
.story-block__body {
  font-size: .95rem;
  color: var(--grey);
  line-height: 1.75;
  max-width: 420px;
}
.story-block__shipping {
  font-size: .75rem;
  color: var(--grey);
  letter-spacing: .08em;
  margin-top: .6rem;
}
@media (max-width: 768px) {
  .story-block { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------
   Newsletter strip
   ---------------------------------------------------------------- */
.newsletter {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--grey-mid);
  padding-block: clamp(3rem, 6vw, 5rem);
  text-align: center;
}
.newsletter__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.newsletter__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .12;
}
.newsletter .container { position: relative; z-index: 1; }
.newsletter__eyebrow {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 1rem;
}
.newsletter__heading { margin-bottom: .75rem; font-size: clamp(2rem, 4vw, 3rem); }
.newsletter__sub { color: var(--grey); margin-bottom: 2rem; }
.newsletter__form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin-inline: auto;
  border: 1px solid var(--grey-mid);
}
.newsletter__form input {
  flex: 1;
  background: var(--grey-dark);
  border: none;
  color: var(--white);
  padding: .85rem 1.25rem;
  font-size: .95rem;
}
.newsletter__form input:focus { outline: none; }
.newsletter__form button {
  flex-shrink: 0;
  padding: .85rem 1.5rem;
  background: var(--white);
  color: var(--black);
  border: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity var(--transition);
  cursor: pointer;
}
.newsletter__form button:hover { opacity: .85; }
/* Honeypot */
.newsletter__hp { display: none !important; }

/* ----------------------------------------------------------------
   Collections strip
   ---------------------------------------------------------------- */
.collections-strip {
  padding-block: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--grey-mid);
}
.collections-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 600px) {
  .collections-grid { grid-template-columns: 1fr; }
}
.collection-card {
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--grey-dark);
  border: 1px solid var(--grey-mid);
  text-decoration: none;
  transition: border-color var(--transition);
}
.collection-card:hover { border-color: var(--white); }
.collection-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}
.collection-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
  transition: transform .5s cubic-bezier(.22,.68,0,1.1);
}
.collection-card:hover .collection-card__img img {
  transform: scale(1.05);
}
.collection-card__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--grey-mid);
}
.collection-card__name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
}
.collection-card__cta {
  font-size: .8rem;
  color: var(--grey);
  transition: color var(--transition);
}
.collection-card:hover .collection-card__cta { color: var(--white); }

/* ----------------------------------------------------------------
   Shop — filter bar
   ---------------------------------------------------------------- */
.shop-header {
  padding-block: 2rem;
  border-bottom: 1px solid var(--grey-mid);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.shop-header h1 { font-size: clamp(2rem, 4vw, 3rem); }

.filter-nav { display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; }
.filter-nav__item {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: .4rem .9rem;
  border: 1px solid var(--grey-mid);
  color: var(--grey);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.filter-nav__item:hover,
.filter-nav__item.active {
  border-color: var(--white);
  color: var(--white);
  background: var(--grey-dark);
}
.sort-select {
  background: var(--grey-dark);
  border: 1px solid var(--grey-mid);
  color: var(--grey);
  padding: .4rem .8rem;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
}
.sort-select:focus { outline: none; border-color: var(--white); color: var(--white); }

/* ----------------------------------------------------------------
   Product Detail
   ---------------------------------------------------------------- */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--grey-mid);
  border-bottom: 1px solid var(--grey-mid);
  min-height: 80vh;
}
@media (max-width: 900px) {
  .product-detail { grid-template-columns: 1fr; }
}

.product-detail__gallery {
  position: sticky;
  top: var(--header-h);
  height: calc(100vh - var(--header-h));
  background: var(--grey-dark);
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
}
.product-detail__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail__main-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  background: var(--grey-dark);
}
.product-detail__main-placeholder span {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--grey-mid);
}
.product-detail__thumbs {
  display: flex;
  gap: 1px;
  background: var(--grey-mid);
  height: 80px;
}
.product-detail__thumb {
  flex: 1;
  max-width: 80px;
  cursor: pointer;
  overflow: hidden;
  filter: brightness(.6);
  transition: filter var(--transition);
}
.product-detail__thumb.active,
.product-detail__thumb:hover { filter: brightness(1); }
.product-detail__thumb img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) {
  .product-detail__gallery { position: static; height: 60vw; min-height: 320px; }
}

.product-detail__info {
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.product-detail__category {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey);
}
.product-detail__name { font-size: clamp(2rem, 3.5vw, 3rem); }
.product-detail__price {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
}
.product-detail__compare {
  font-size: 1.2rem;
  color: var(--grey);
  text-decoration: line-through;
}
.product-detail__desc {
  font-size: .95rem;
  color: var(--grey);
  line-height: 1.8;
  padding-top: .5rem;
  border-top: 1px solid var(--grey-mid);
}

/* Size picker */
.size-label {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: .5rem;
  display: block;
}
.size-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.size-option {
  position: relative;
}
.size-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.size-option label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 44px;
  border: 1px solid var(--grey-mid);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey);
  cursor: pointer;
  transition: all var(--transition);
}
.size-option label:hover {
  border-color: var(--white);
  color: var(--white);
}
.size-option input:checked + label {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}
.size-option--os label { width: auto; padding-inline: 1.25rem; }

/* ── Colour swatches ──────────────────────────────────────── */
.color-swatch {
  cursor: pointer;
  display: block;
}
.color-swatch__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.color-swatch__dot {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition: outline-color .15s ease, transform .15s ease;
}
.color-swatch:hover .color-swatch__dot {
  transform: scale(1.1);
  outline-color: var(--grey);
}
.color-swatch__input:checked + .color-swatch__dot {
  outline-color: var(--white);
  border-color: transparent;
  transform: scale(1.1);
}

.qty-row {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.qty-btn {
  width: 36px;
  height: 36px;
  background: var(--grey-dark);
  border: 1px solid var(--grey-mid);
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.qty-btn:hover { border-color: var(--white); }
.qty-input {
  width: 52px;
  height: 36px;
  text-align: center;
  background: var(--grey-dark);
  border: 1px solid var(--grey-mid);
  color: var(--white);
  font-size: .95rem;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* ----------------------------------------------------------------
   Cart
   ---------------------------------------------------------------- */
.cart-page { padding-block: 3rem; }
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 900px) {
  .cart-layout { grid-template-columns: 1fr; }
}

.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  text-align: left;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--grey-mid);
}
.cart-table th:last-child { text-align: right; }
.cart-row { border-bottom: 1px solid var(--grey-mid); }
.cart-row td { padding: 1.25rem 0; vertical-align: top; }

.cart-product { display: flex; gap: 1.25rem; align-items: flex-start; }
.cart-product__img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  background: var(--grey-dark);
  flex-shrink: 0;
}
.cart-product__placeholder {
  width: 80px;
  height: 100px;
  background: var(--grey-dark);
  flex-shrink: 0;
}
.cart-product__info { display: flex; flex-direction: column; gap: .25rem; }
.cart-product__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cart-product__size {
  font-size: .8rem;
  color: var(--grey);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cart-qty { display: flex; align-items: center; gap: .35rem; }
.cart-qty input[type="number"] {
  width: 44px;
  height: 32px;
  text-align: center;
  background: var(--grey-dark);
  border: 1px solid var(--grey-mid);
  color: var(--white);
  font-size: .9rem;
}
.cart-qty input::-webkit-outer-spin-button,
.cart-qty input::-webkit-inner-spin-button { -webkit-appearance: none; }

.cart-line-price {
  text-align: right;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
}

.cart-summary {
  background: var(--grey-dark);
  padding: 2rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}
.cart-summary__title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--grey-mid);
}
.cart-summary__row {
  display: flex;
  justify-content: space-between;
  font-size: .9rem;
  padding: .4rem 0;
  color: var(--grey);
}
.cart-summary__row--total {
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  border-top: 1px solid var(--grey-mid);
  margin-top: .75rem;
  padding-top: .75rem;
}
.cart-summary__discount {
  display: flex;
  gap: .5rem;
  margin: 1.25rem 0;
}
.cart-summary__discount input {
  flex: 1;
  background: var(--black);
  border: 1px solid var(--grey-mid);
  color: var(--white);
  padding: .6rem .9rem;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.cart-summary__discount input::placeholder { color: var(--grey); }
.cart-summary__discount input:focus { outline: none; border-color: var(--white); }
.cart-summary__discount button {
  background: var(--grey-mid);
  border: 1px solid var(--grey-mid);
  color: var(--white);
  padding: .6rem 1rem;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
}
.cart-summary__discount button:hover { background: var(--white); color: var(--black); }

.cart-empty {
  text-align: center;
  padding: 6rem 2rem;
}
.cart-empty h2 { font-size: 2rem; margin-bottom: 1rem; }
.cart-empty p { color: var(--grey); margin-bottom: 2rem; }

/* ----------------------------------------------------------------
   Checkout
   ---------------------------------------------------------------- */
.checkout-page { padding-block: 3rem; }
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 1024px) { .checkout-layout { grid-template-columns: 1fr; } }

.checkout-form__section {
  margin-bottom: 2.5rem;
}
.checkout-form__title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--grey-mid);
}
.checkout-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.checkout-form__grid .span-2 { grid-column: span 2; }
@media (max-width: 540px) {
  .checkout-form__grid { grid-template-columns: 1fr; }
  .checkout-form__grid .span-2 { grid-column: span 1; }
}

/* Stripe card element */
#card-element {
  background: var(--grey-dark);
  border: 1px solid var(--grey-mid);
  padding: .85rem 1rem;
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
#card-element.StripeElement--focus { border-color: var(--white); }
#card-element.StripeElement--invalid { border-color: #e74c3c; }
#card-errors {
  color: #e74c3c;
  font-size: .8rem;
  margin-top: .4rem;
  min-height: 1.2em;
}

.checkout-sidebar {
  background: var(--grey-dark);
  padding: 2rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}
.checkout-sidebar__title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--grey-mid);
  margin-bottom: 1rem;
}
.checkout-item {
  display: flex;
  gap: 1rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--grey-mid);
  font-size: .9rem;
}
.checkout-item__img {
  width: 52px;
  height: 64px;
  object-fit: cover;
  background: var(--black);
  flex-shrink: 0;
}
.checkout-item__info { flex: 1; display: flex; flex-direction: column; gap: .2rem; }
.checkout-item__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.checkout-item__meta { color: var(--grey); font-size: .8rem; }
.checkout-item__price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  align-self: center;
}
.checkout-totals { margin-top: .75rem; }
.checkout-totals__row {
  display: flex;
  justify-content: space-between;
  font-size: .9rem;
  color: var(--grey);
  padding: .3rem 0;
}
.checkout-totals__row--total {
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  border-top: 1px solid var(--grey-mid);
  margin-top: .5rem;
  padding-top: .75rem;
}

/* ----------------------------------------------------------------
   Order Confirmation
   ---------------------------------------------------------------- */
.confirmation { padding-block: 5rem; }
.confirmation__inner { max-width: 640px; margin-inline: auto; }
.confirmation__check {
  width: 48px;
  height: 48px;
  border: 2px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 2rem;
}
.confirmation__heading { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: .75rem; }
.confirmation__sub { color: var(--grey); margin-bottom: 3rem; line-height: 1.7; }
.confirmation__order {
  background: var(--grey-dark);
  padding: 2rem;
  margin-bottom: 2rem;
}
.confirmation__order-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--grey-mid);
}
.confirmation__order-num {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.confirmation__order-status {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #27ae60;
}
.confirmation__item {
  display: flex;
  justify-content: space-between;
  padding: .6rem 0;
  font-size: .9rem;
  border-bottom: 1px solid var(--grey-mid);
}
.confirmation__item-name { color: var(--grey); }
.confirmation__totals { margin-top: 1rem; }
.confirmation__total-row {
  display: flex;
  justify-content: space-between;
  font-size: .9rem;
  color: var(--grey);
  padding: .25rem 0;
}
.confirmation__total-row--final {
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  border-top: 1px solid var(--grey-mid);
  margin-top: .5rem;
  padding-top: .75rem;
}

/* ----------------------------------------------------------------
   About
   ---------------------------------------------------------------- */
.about-hero {
  border-bottom: 1px solid var(--grey-mid);
  padding-block: clamp(4rem, 8vw, 8rem);
}
.about-hero__inner { max-width: 720px; }
.about-hero__eyebrow {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 1rem;
  display: block;
}
.about-hero__heading { margin-bottom: 1.5rem; }
.about-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.about-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .35;
}
.about-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.82) 0%, rgba(0,0,0,.5) 60%, rgba(0,0,0,.2) 100%);
}
.about-hero .container,
.about-hero__inner { position: relative; z-index: 1; }

/* Editorial photo strip */
.editorial-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1px;
  background: var(--grey-mid);
  max-height: 480px;
  overflow: hidden;
}
.editorial-strip__img { overflow: hidden; }
.editorial-strip__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s cubic-bezier(.22,.68,0,1.1);
}
.editorial-strip__img:hover img { transform: scale(1.04); }
@media (max-width: 640px) {
  .editorial-strip { grid-template-columns: 1fr; max-height: none; }
  .editorial-strip__img { height: 260px; }
}

/* Gallery prev/next arrows */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10,10,10,.7);
  color: var(--white);
  border: 1px solid var(--grey-mid);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background .2s ease;
  backdrop-filter: blur(4px);
}
.gallery-arrow:hover { background: rgba(255,255,255,.12); }
.gallery-arrow--prev { left: .75rem; }
.gallery-arrow--next { right: .75rem; }

.about-hero__body {
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  line-height: 1.85;
  max-width: 560px;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--grey-mid);
  border-bottom: 1px solid var(--grey-mid);
}
@media (max-width: 768px) { .about-values { grid-template-columns: 1fr; } }
.about-value {
  background: var(--black);
  padding: clamp(2.5rem, 5vw, 3.5rem);
}
.about-value__num {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 900;
  color: var(--grey-mid);
  line-height: 1;
  margin-bottom: 1.25rem;
  -webkit-text-stroke: 1px var(--grey-mid);
}
.about-value__title { font-size: 1.5rem; margin-bottom: .75rem; }
.about-value__body { font-size: .9rem; color: var(--grey); line-height: 1.75; }

/* ----------------------------------------------------------------
   Contact
   ---------------------------------------------------------------- */
.contact-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--grey-mid);
  border-bottom: 1px solid var(--grey-mid);
  min-height: 70vh;
}
@media (max-width: 768px) { .contact-page { grid-template-columns: 1fr; } }
.contact-info {
  background: var(--grey-dark);
  padding: clamp(3rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.contact-info__eyebrow {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 1rem;
  display: block;
}
.contact-info__heading { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.25rem; }
.contact-info__body { color: var(--grey); line-height: 1.8; max-width: 380px; }
.contact-form-wrap {
  background: var(--black);
  padding: clamp(3rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ----------------------------------------------------------------
   Footer
   ---------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--grey-mid);
  background: var(--grey-dark);
  padding-block: 3rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-inner { grid-template-columns: 1fr; }
}

.footer-brand img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 1;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: .85rem;
  color: var(--grey);
  line-height: 1.7;
  max-width: 260px;
}
.footer-col__title {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 1rem;
  display: block;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col a {
  font-size: .875rem;
  color: var(--grey);
  transition: color var(--transition);
  display: inline-block;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--grey-mid);
  padding-top: 2rem;
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .8rem; color: var(--grey); }

/* ----------------------------------------------------------------
   Editorial / info pages
   ---------------------------------------------------------------- */
.info-page {
  padding-block: clamp(3.5rem, 8vw, 6rem);
  border-bottom: 1px solid var(--grey-mid);
}

.info-page__inner {
  max-width: 860px;
}

.info-page__eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--grey);
}

.info-page__heading {
  margin-bottom: 1rem;
}

.info-page__lede {
  max-width: 720px;
  margin-bottom: 2.5rem;
  color: var(--grey);
  font-size: 1rem;
  line-height: 1.8;
}

.info-page__meta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .85rem;
  margin-bottom: 2rem;
  border: 1px solid var(--grey-mid);
  font-family: var(--font-head);
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--grey);
}

.legal-blocks {
  display: grid;
  gap: 1px;
  background: var(--grey-mid);
  border: 1px solid var(--grey-mid);
}

.legal-block {
  background: var(--grey-dark);
  padding: clamp(1.5rem, 4vw, 2.25rem);
}

.legal-block h2 {
  margin-bottom: .85rem;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.legal-block p,
.legal-block li {
  color: #d0d0d0;
  line-height: 1.85;
}

.legal-block ul {
  list-style: disc;
  padding-left: 1.25rem;
}

.legal-block ul li + li {
  margin-top: .75rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--grey-mid);
  background: var(--grey-dark);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  float: right;
  color: var(--grey);
}

.faq-item[open] summary::after {
  content: '-';
  color: var(--white);
}

.faq-item__body {
  padding: 0 1.25rem 1.25rem;
  color: #d0d0d0;
}

.faq-item__body p + p,
.faq-item__body ul + p,
.faq-item__body p + ul {
  margin-top: .9rem;
}

.faq-item__body ul {
  list-style: disc;
  padding-left: 1.25rem;
}

/* ----------------------------------------------------------------
   Page not found / errors
   ---------------------------------------------------------------- */
.error-page { min-height: 70vh; display: flex; align-items: center; }
.error-page__inner { text-align: center; }
.error-page__code {
  font-family: var(--font-head);
  font-size: 10rem;
  font-weight: 900;
  color: var(--grey-mid);
  line-height: 1;
  margin-bottom: .5rem;
}
.error-page h1 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: .75rem; }
.error-page p { color: var(--grey); margin-bottom: 2rem; }

/* ----------------------------------------------------------------
   Utility
   ---------------------------------------------------------------- */
.sr-only { position: absolute; width: 1px; height: 1px; clip: rect(0 0 0 0); overflow: hidden; }
.text-grey { color: var(--grey); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.gap-1 { gap: .5rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* ================================================================
   ANIMATIONS & MOTION SYSTEM
   ================================================================ */

/* ----------------------------------------------------------------
   Keyframes
   ---------------------------------------------------------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.96); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lineDraw {
  from { width: 0; }
  to   { width: 100%; }
}
@keyframes glitch {
  0%,100% { clip-path: inset(0 0 100% 0); transform: none; }
  10%      { clip-path: inset(20% 0 60% 0); transform: skewX(-4deg); }
  20%      { clip-path: inset(50% 0 10% 0); transform: skewX(3deg); }
  30%      { clip-path: inset(5% 0 80% 0); transform: skewX(-2deg); }
  40%      { clip-path: inset(0 0 0 0); transform: none; }
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes pulse-border {
  0%, 100% { border-color: var(--grey-mid); }
  50%       { border-color: var(--grey); }
}

/* ----------------------------------------------------------------
   Hero — staggered entrance
   ---------------------------------------------------------------- */
.hero__eyebrow {
  opacity: 0;
  animation: fadeLeft .7s cubic-bezier(.22,.68,0,1.2) .1s forwards;
}
.hero__title {
  opacity: 0;
  animation: fadeUp .8s cubic-bezier(.22,.68,0,1.1) .28s forwards;
}
.hero__body {
  opacity: 0;
  animation: fadeUp .7s ease .52s forwards;
}
.hero__cta {
  opacity: 0;
  animation: fadeUp .7s ease .7s forwards;
}
.hero__scroll {
  opacity: 0;
  animation: fadeIn .8s ease 1.2s forwards;
}

/* ----------------------------------------------------------------
   Hero title — outlined word glitch on hover
   ---------------------------------------------------------------- */
.hero__title em {
  display: block;
  -webkit-text-stroke: 1.5px var(--white);
  color: transparent;
  transition: -webkit-text-stroke-width .2s ease;
  cursor: default;
}
.hero__title em:hover {
  -webkit-text-stroke-width: 2.5px;
}

/* ----------------------------------------------------------------
   Scroll-reveal  (.reveal → .is-visible via IntersectionObserver)
   ---------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.22,.68,0,1.1),
              transform .65s cubic-bezier(.22,.68,0,1.1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger siblings: each .reveal inside a .reveal-group gets an offset */
.reveal-group .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-group .reveal:nth-child(2) { transition-delay: .1s; }
.reveal-group .reveal:nth-child(3) { transition-delay: .2s; }
.reveal-group .reveal:nth-child(4) { transition-delay: .3s; }
.reveal-group .reveal:nth-child(5) { transition-delay: .4s; }
.reveal-group .reveal:nth-child(6) { transition-delay: .5s; }

/* Directional variants */
.reveal--left  { transform: translateX(-28px); }
.reveal--right { transform: translateX(28px); }
.reveal--scale { transform: scale(.97); }
.reveal--left.is-visible,
.reveal--right.is-visible,
.reveal--scale.is-visible { transform: none; }

/* ----------------------------------------------------------------
   Product cards — enhanced hover
   ---------------------------------------------------------------- */
.product-card {
  transition: background var(--transition), transform .3s cubic-bezier(.22,.68,0,1.2);
}
.product-card:hover {
  background: var(--grey-dark);
  transform: translateY(-4px);
  z-index: 2;
}
.product-card__media img {
  transition: transform .6s cubic-bezier(.22,.68,0,1.1);
}
.product-card:hover .product-card__media img {
  transform: scale(1.06);
}

/* Quick-shop pill that appears on card hover */
.product-card__media::after {
  content: 'View Product';
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .45rem 1.1rem;
  border: 1px solid var(--grey-mid);
  white-space: nowrap;
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}
.product-card:hover .product-card__media::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ----------------------------------------------------------------
   Nav — animated underline on enter
   ---------------------------------------------------------------- */
.header-nav a::after {
  transition: width .28s cubic-bezier(.22,.68,0,1.3);
}

/* Nav entrance */
.header-nav a {
  opacity: 0;
  animation: slideDown .5s ease forwards;
}
.header-nav a:nth-child(1) { animation-delay: .05s; }
.header-nav a:nth-child(2) { animation-delay: .12s; }
.header-nav a:nth-child(3) { animation-delay: .19s; }

/* ----------------------------------------------------------------
   Brand marquee — smoother, faster on hover
   ---------------------------------------------------------------- */
.brand-strip__inner {
  animation: marqueeScroll 22s linear infinite;
}
.brand-strip:hover .brand-strip__inner {
  animation-duration: 10s;
}

/* ----------------------------------------------------------------
   Story block — image panel parallax shimmer
   ---------------------------------------------------------------- */
.story-block__panel {
  transition: background .4s ease;
}
.story-block__panel--image {
  overflow: hidden;
  position: relative;
}
.story-block__panel--image img {
  transition: transform .8s cubic-bezier(.22,.68,0,1.1);
}
.story-block__panel--image:hover img {
  transform: scale(1.04);
}
/* Dark scrim so text stays readable over photo panels */
.story-block__panel--image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.3) 60%, rgba(0,0,0,.1) 100%);
  z-index: 0;
  pointer-events: none;
}
/* Force all text inside image panels to be white */
.story-block__panel--image .story-block__label,
.story-block__panel--image .story-block__heading,
.story-block__panel--image .story-block__body {
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  z-index: 1;
}
.story-block__panel--image .btn--outline {
  position: relative;
  z-index: 1;
}

/* ----------------------------------------------------------------
   Shop landing — promo bar + hero panels
   ---------------------------------------------------------------- */

.shop-promo-bar {
  border-bottom: 1px solid var(--grey-mid);
  padding-block: 1.25rem;
  background: var(--grey-dark);
}

.shop-promo-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.shop-promo-bar__text {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}

.shop-promo-bar__label {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--grey);
}

.shop-promo-bar__deal {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--white);
}

/* 4 hero panels — 4-across full-width grid */
.hero-panels {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--grey-mid);
  border-bottom: 1px solid var(--grey-mid);
}

.hero-panel {
  display: flex;
  flex-direction: column;
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  transition: background var(--transition);
}

.hero-panel:hover { background: var(--grey-dark); }

.hero-panel__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--grey-mid);
  background: var(--grey-dark);
}

.hero-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.hero-panel:hover .hero-panel__media img {
  transform: scale(1.03);
}

.hero-panel__body {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hero-panel__eyebrow {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: .5rem;
}

.hero-panel__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: .6rem;
}

.hero-panel__sub {
  font-size: .9rem;
  color: var(--grey);
  line-height: 1.65;
  flex: 1;
}

.hero-panel__footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--grey-mid);
}

.hero-panel__price {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
}

.hero-panel__cta {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--grey);
  transition: color var(--transition);
}

.hero-panel:hover .hero-panel__cta { color: var(--white); }

@media (max-width: 900px) {
  .hero-panels { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 480px) {
  .hero-panels { grid-template-columns: 1fr; }
  .shop-promo-bar__inner { flex-direction: column; align-items: flex-start; }
}

/* ----------------------------------------------------------------
   Section eyebrow line animation
   ---------------------------------------------------------------- */
.section-head__eyebrow {
  position: relative;
  display: inline-block;
}
.section-head__eyebrow::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--grey);
  transition: width .5s ease;
}
.section-head__eyebrow.is-visible::after {
  width: 100%;
}

/* ----------------------------------------------------------------
   Button — lift + glow on hover
   ---------------------------------------------------------------- */
.btn {
  transition: background var(--transition), color var(--transition),
              border-color var(--transition),
              transform .2s cubic-bezier(.22,.68,0,1.4),
              box-shadow .2s ease;
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(245,245,245,.12);
}
.btn--outline:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(245,245,245,.08);
}

/* ----------------------------------------------------------------
   Newsletter input — animated border focus
   ---------------------------------------------------------------- */
.newsletter__form input:focus {
  animation: pulse-border 1.8s ease infinite;
}

/* ----------------------------------------------------------------
   Cart button — bounce on item add
   ---------------------------------------------------------------- */
@keyframes cartBounce {
  0%, 100% { transform: scale(1); }
  40%       { transform: scale(1.2); }
  70%       { transform: scale(.92); }
}
.cart-count.is-bumped {
  animation: cartBounce .4s cubic-bezier(.22,.68,0,1.5);
}

/* ----------------------------------------------------------------
   Page transitions — fade in on load
   ---------------------------------------------------------------- */
main, .site-main {
  animation: fadeIn .45s ease .05s both;
}

/* ----------------------------------------------------------------
   Respect reduced-motion preference
   ---------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .hero__eyebrow,
  .hero__title,
  .hero__body,
  .hero__cta,
  .hero__scroll { opacity: 1; }
  .reveal        { opacity: 1; transform: none; }
}

/* ================================================================
   Cart Drawer
   ================================================================ */

/* Backdrop */
.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.cart-drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: all;
}

/* Drawer panel */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100vw);
  background: var(--grey-dark);
  border-left: 1px solid var(--grey-mid);
  z-index: 901;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.cart-drawer.is-open { transform: translateX(0); }

/* Header */
.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--grey-mid);
  flex-shrink: 0;
}
.cart-drawer__title {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.cart-drawer__close {
  background: none;
  border: none;
  color: var(--grey);
  cursor: pointer;
  padding: .25rem;
  display: flex;
  align-items: center;
  transition: color var(--transition);
}
.cart-drawer__close:hover { color: var(--white); }

/* Body / scrollable area */
.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.cart-drawer__loading {
  text-align: center;
  color: var(--grey);
  padding: 3rem 0;
  font-size: .9rem;
}

/* Empty state */
.cart-drawer__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-align: center;
  color: var(--grey);
  padding: 3rem 0;
}

/* Item list */
.cart-drawer__items {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.cart-drawer__item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 1rem;
  align-items: start;
}
.cart-drawer__item-img {
  width: 72px;
  height: 72px;
  background: var(--black);
  border: 1px solid var(--grey-mid);
  overflow: hidden;
  flex-shrink: 0;
}
.cart-drawer__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-drawer__item-info { min-width: 0; }
.cart-drawer__item-name {
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: .2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-drawer__item-meta {
  font-size: .78rem;
  color: var(--grey);
  margin-bottom: .3rem;
}
.cart-drawer__item-price {
  font-size: .85rem;
  color: var(--white);
}
.cart-drawer__remove {
  background: none;
  border: none;
  color: var(--grey);
  cursor: pointer;
  padding: .2rem;
  display: flex;
  align-items: center;
  transition: color var(--transition);
  flex-shrink: 0;
  margin-top: .15rem;
}
.cart-drawer__remove:hover { color: #e74c3c; }

/* Footer */
.cart-drawer__footer {
  border-top: 1px solid var(--grey-mid);
  padding-top: 1.25rem;
  margin-top: 1.5rem;
  flex-shrink: 0;
}
.cart-drawer__row {
  display: flex;
  justify-content: space-between;
  font-size: .9rem;
  color: var(--grey);
  margin-bottom: .6rem;
}
.cart-drawer__row--discount { color: #2ecc71; }
.cart-drawer__row--shipping { }
.cart-drawer__view-cart {
  display: block;
  text-align: center;
  font-size: .8rem;
  color: var(--grey);
  margin-top: .75rem;
  text-decoration: none;
  transition: color var(--transition);
}
.cart-drawer__view-cart:hover { color: var(--white); }
.w-full { width: 100%; }

/* ================================================================
   Bundle Popup
   ================================================================ */
.bpop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.bpop.is-open {
  display: flex;
}

/* Backdrop */
.bpop__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  animation: bpop-fade-in .25s ease forwards;
}

/* Panel */
.bpop__panel {
  position: relative;
  background: var(--grey-dark);
  border: 1px solid var(--grey-mid);
  width: 100%;
  max-width: 520px;
  padding: 2.25rem 2rem 1.75rem;
  animation: bpop-slide-up .3s cubic-bezier(.22,.68,0,1.2) forwards;
  max-height: 92vh;
  overflow-y: auto;
}

@keyframes bpop-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes bpop-slide-up {
  from { opacity: 0; transform: translateY(28px) scale(.97); }
  to   { opacity: 1; transform: translateY(0)    scale(1);   }
}

/* Close button */
.bpop__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--grey);
  padding: .35rem;
  line-height: 1;
  transition: color var(--transition);
}
.bpop__close:hover { color: var(--white); }

/* Header */
.bpop__eyebrow {
  font-family: var(--font-head);
  font-size: .75rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: .35rem;
}
.bpop__title {
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  margin-bottom: .4rem;
}
.bpop__sub {
  font-size: .875rem;
  color: var(--grey);
  margin-bottom: 1.75rem;
}

/* Hero bundle */
.bpop__hero {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--black);
  border: 2px solid var(--white);
  padding: 1.25rem 1.25rem 1.25rem 1.25rem;
  margin-bottom: 1rem;
  transition: border-color var(--transition), background var(--transition);
  text-decoration: none;
  color: inherit;
}
.bpop__hero:hover {
  background: var(--grey-mid);
  border-color: var(--white);
}

.bpop__hero-imgs {
  display: flex;
  gap: .5rem;
  flex-shrink: 0;
}
.bpop__hero-imgs img {
  width: 82px;
  height: 100px;
  object-fit: cover;
  object-position: top center;
}

.bpop__hero-copy {
  flex: 1;
  min-width: 0;
}

.bpop__badge {
  display: inline-block;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-head);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  margin-bottom: .6rem;
}

.bpop__deal-label {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .2rem;
}
.bpop__deal-price {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1;
  margin-bottom: .25rem;
}
.bpop__hero .bpop__deal-price { font-size: 2.4rem; }
.bpop__deal-note {
  font-size: .78rem;
  color: var(--grey);
  letter-spacing: .05em;
}

.bpop__arrow {
  font-size: 1.4rem;
  color: var(--grey);
  flex-shrink: 0;
  transition: transform var(--transition), color var(--transition);
}
.bpop__hero:hover .bpop__arrow,
.bpop__card:hover  .bpop__arrow {
  transform: translateX(4px);
  color: var(--white);
}

/* Secondary cards */
.bpop__secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: 1rem;
}

.bpop__card {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  background: var(--black);
  border: 1px solid var(--grey-mid);
  padding: 1rem;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--transition), background var(--transition);
  position: relative;
}
.bpop__card:hover {
  border-color: var(--white);
  background: var(--grey-mid);
}

.bpop__card-imgs {
  display: flex;
  gap: .35rem;
}
.bpop__card-imgs img {
  width: 54px;
  height: 66px;
  object-fit: cover;
  object-position: top center;
}
.bpop__card-imgs--trio img {
  width: 42px;
  height: 52px;
}

.bpop__card-copy .bpop__deal-label { font-size: .9rem; }
.bpop__card-copy .bpop__deal-price { font-size: 1.5rem; }

.bpop__card .bpop__arrow {
  position: absolute;
  bottom: .9rem;
  right: .9rem;
  font-size: 1rem;
}

/* Fine print */
.bpop__fine {
  font-size: .72rem;
  color: var(--grey);
  text-align: center;
  letter-spacing: .04em;
  border-top: 1px solid var(--grey-mid);
  padding-top: 1rem;
  margin-top: .5rem;
}

/* Mobile */
@media (max-width: 480px) {
  .bpop__panel { padding: 1.75rem 1.25rem 1.5rem; }
  .bpop__hero-imgs img { width: 66px; height: 80px; }
  .bpop__hero .bpop__deal-price { font-size: 2rem; }
  .bpop__secondary { grid-template-columns: 1fr; }
  .bpop__card-imgs img { width: 48px; height: 58px; }
}
