@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #1d1d1f;
  --muted: #757575;
  --line: #ececec;
  --soft: #f7f3ef;
  --panel: #f8f8f8;
  --accent: #8c6548;
  --danger: #9d3d4f;
  --green: #5d8a6f;
  --blue: #557ea5;
  --shadow: 0 18px 45px rgba(22, 22, 22, .12);
  --max: 1360px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  background: #fff;
  letter-spacing: 0;
}
body.locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
button { cursor: pointer; }
.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: #000;
  color: #fff;
  padding: .7rem 1rem;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
}
.header-shell {
  height: 98px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  align-items: center;
}
.brand img { width: 156px; }
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
}
.main-nav a { padding: 41px 0; }
.main-nav a:hover { color: var(--accent); }
.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--line);
  padding: 3px;
  margin-left: 8px;
  background: #fff;
}
.lang-switch button {
  border: 0;
  background: transparent;
  min-width: 32px;
  height: 26px;
  padding: 0 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #666;
}
.lang-switch button.is-active {
  background: #111;
  color: #fff;
}
.icon-button {
  border: 0;
  background: transparent;
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  color: #181818;
  position: relative;
}
.menu-toggle { display: none; }
.menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  display: block;
  margin: 2px 0;
}
.ico {
  width: 23px;
  height: 23px;
  display: block;
  position: relative;
}
.ico-search { border: 2px solid currentColor; border-radius: 50%; width: 21px; height: 21px; }
.ico-search::after { content: ""; position: absolute; width: 9px; height: 2px; background: currentColor; right: -7px; bottom: 0; transform: rotate(45deg); }
.ico-user { border: 2px solid currentColor; border-radius: 50% 50% 45% 45%; border-top-color: transparent; }
.ico-user::before { content: ""; position: absolute; width: 9px; height: 9px; border: 2px solid currentColor; border-radius: 50%; top: -4px; left: 5px; background: #fff; }
.ico-heart::before, .ico-heart::after { content: ""; position: absolute; width: 13px; height: 19px; border: 2px solid currentColor; border-bottom: 0; border-radius: 13px 13px 0 0; top: 2px; }
.ico-heart::before { left: 3px; transform: rotate(-45deg); transform-origin: bottom right; }
.ico-heart::after { right: 3px; transform: rotate(45deg); transform-origin: bottom left; }
.ico-bag { border: 2px solid currentColor; border-radius: 3px; height: 19px; margin-top: 4px; }
.ico-bag::before { content: ""; position: absolute; left: 5px; top: -8px; width: 9px; height: 9px; border: 2px solid currentColor; border-bottom: 0; border-radius: 8px 8px 0 0; }
.cart-count {
  position: absolute;
  right: -8px;
  bottom: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
}

.mega-panel {
  position: absolute;
  top: 98px;
  left: 50%;
  width: min(1160px, calc(100vw - 48px));
  transform: translateX(-50%) translateY(12px);
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 230px;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: .18s ease;
}
.mega-panel.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.mega-cols { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; }
.mega-col h3 { margin: 0 0 16px; text-transform: uppercase; font-size: 13px; }
.mega-col a { display: block; color: #5f5f5f; font-size: 14px; padding: 7px 0; }
.mega-col a:hover { color: var(--accent); }
.mega-panel img { height: 260px; width: 100%; object-fit: cover; }

.hero-grid {
  max-width: var(--max);
  margin: 28px auto 0;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.08fr .7fr 1fr;
  grid-template-rows: 272px 250px;
  gap: 24px;
}
.hero-tile {
  position: relative;
  overflow: hidden;
  background: var(--panel);
  min-height: 220px;
}
.hero-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.hero-tile:hover img { transform: scale(1.045); }
.hero-tile-large { grid-row: 1 / 3; }
.hero-tile-bottom { grid-column: 2 / 4; }
.tile-copy {
  position: absolute;
  z-index: 1;
  max-width: 310px;
  text-align: center;
}
.tile-copy.lower { left: 50%; bottom: 40px; transform: translateX(-50%); }
.tile-copy.right { right: 54px; top: 50%; transform: translateY(-50%); }
.tile-copy h2 { margin: 0 0 16px; font-size: 31px; line-height: 1.1; }
.tile-copy p { margin: 0 0 22px; color: #6b6b6b; line-height: 1.6; }
.tile-copy a, .tracking-copy a, .category-band a, .arrival-image a {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
}
.play-button {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 70px;
  height: 70px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .85);
}
.play-button::before {
  content: "";
  position: absolute;
  left: 29px;
  top: 22px;
  border-left: 18px solid #202020;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
}

.service-strip {
  max-width: var(--max);
  margin: 56px auto 70px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.service-item { display: grid; grid-template-columns: 62px 1fr; gap: 18px; align-items: center; }
.service-item h3 { margin: 0 0 6px; text-transform: uppercase; font-size: 21px; letter-spacing: 0; }
.service-item p { margin: 0; color: var(--muted); }
.service-icon {
  width: 54px;
  height: 54px;
  border: 3px solid #252525;
  display: block;
  opacity: .82;
}
.truck { border-radius: 4px; position: relative; }
.truck::after { content: ""; position: absolute; right: -19px; bottom: -3px; width: 21px; height: 20px; border: 3px solid #252525; border-left: 0; }
.support { border-radius: 50%; position: relative; }
.support::after { content: ""; position: absolute; left: 15px; bottom: -19px; width: 22px; height: 22px; border: 3px solid #252525; border-radius: 4px; }
.shield { clip-path: polygon(50% 0, 100% 20%, 86% 82%, 50% 100%, 14% 82%, 0 20%); background: #252525; border: 0; }
.return { border-radius: 6px; transform: rotate(45deg); }

.tracking-band {
  max-width: var(--max);
  margin: 0 auto 96px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  align-items: center;
  gap: 46px;
}
.tracking-band img { width: 100%; aspect-ratio: 1 / 1.1; object-fit: cover; }
.tracking-copy { text-align: center; }
.tracking-copy h2 { font-size: 42px; margin: 0 0 24px; }
.tracking-copy p { color: #606060; line-height: 1.9; margin: 0 auto 28px; max-width: 440px; }

.section-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}
.product-section { margin-bottom: 78px; }
.section-heading { text-align: center; margin-bottom: 34px; }
.section-heading span {
  display: block;
  text-transform: uppercase;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 9px;
}
.section-heading h2 { margin: 0; font-size: 31px; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px 28px;
}
.product-card { position: relative; text-align: center; min-width: 0; }
.product-media {
  position: relative;
  background: #f7f7f7;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.product-card:hover .product-media img { transform: scale(1.04); }
.sale-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  width: 74px;
  height: 74px;
  overflow: hidden;
  z-index: 2;
}
.sale-ribbon span {
  position: absolute;
  right: -28px;
  top: 18px;
  width: 105px;
  transform: rotate(45deg);
  background: var(--danger);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 0;
}
.card-actions {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%) translateX(18px);
  display: grid;
  gap: 9px;
  opacity: 0;
  transition: .2s ease;
}
.product-card:hover .card-actions { opacity: 1; transform: translateY(-50%) translateX(0); }
.card-actions button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .12);
}
.product-info { padding: 18px 0 0; }
.product-info h2 { margin: 0 0 8px; font-size: 18px; font-weight: 600; }
.prices { display: flex; justify-content: center; gap: 10px; font-size: 15px; }
.price { color: #111; }
.compare { color: #989898; text-decoration: line-through; }
.swatches {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 12px 0;
}
.swatches span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #fff;
  outline: 1px solid #d8d8d8;
}
.add-button {
  margin-top: 12px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  padding: 12px 26px;
  min-width: 142px;
}
.add-button:hover { background: var(--accent); border-color: var(--accent); }

.category-band {
  max-width: var(--max);
  margin: 0 auto 86px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.category-band article { position: relative; background: #f7f7f7; min-height: 300px; overflow: hidden; }
.category-band img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.category-band article:hover img { transform: scale(1.04); }
.category-band div {
  position: absolute;
  left: 35px;
  top: 50%;
  transform: translateY(-50%);
}
.category-band span, .arrival-image span { color: var(--accent); font-size: 14px; }
.category-band h3, .arrival-image h2 { margin: 8px 0 20px; font-size: 29px; }

.arrival-band {
  max-width: var(--max);
  margin: 0 auto 90px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: .92fr 1.35fr;
  gap: 38px;
}
.arrival-image { position: relative; background: var(--soft); overflow: hidden; }
.arrival-image img { width: 100%; height: 100%; object-fit: cover; }
.arrival-image div {
  position: absolute;
  left: 44px;
  top: 52px;
}
.arrival-image p { margin: -8px 0 22px; color: #666; }
.arrival-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-content: start;
}

.instagram-section { margin-bottom: 88px; }
.instagram-rail {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  overflow: hidden;
}
.instagram-rail a { position: relative; overflow: hidden; background: #eee; aspect-ratio: 1 / 1; }
.instagram-rail img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.instagram-rail a:hover img { transform: scale(1.06); }
.instagram-rail a::after {
  content: "#";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, .35);
  color: #fff;
  font-size: 34px;
  opacity: 0;
  transition: opacity .2s ease;
}
.instagram-rail a:hover::after { opacity: 1; }

.newsletter-band {
  background: var(--soft);
  padding: 58px max(40px, calc((100vw - var(--max)) / 2 + 40px));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.newsletter-band.image-backed {
  background:
    linear-gradient(90deg, rgba(250, 247, 242, .96) 0%, rgba(250, 247, 242, .86) 53%, rgba(250, 247, 242, .5) 100%),
    url("https://prowe-store-demo.myshopify.com/cdn/shop/files/ba10.jpg?v=1649060698&width=1600") center right / cover no-repeat;
}
.newsletter-band span { text-transform: uppercase; color: var(--accent); font-weight: 700; font-size: 13px; }
.newsletter-band h2 { margin: 8px 0 0; font-size: 32px; line-height: 1.25; max-width: 560px; }
.inline-form { display: grid; grid-template-columns: 1fr 170px; gap: 12px; }
.inline-form input, .email-popup input, .search-box input {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 16px 18px;
  outline: 0;
}
.inline-form button, .email-popup form button, .checkout-button {
  border: 0;
  background: #000;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  padding: 0 24px;
  border-radius: 6px;
  min-height: 52px;
}

.site-footer { border-top: 1px solid var(--line); }
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 62px 40px;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 42px;
}
.footer-grid img { width: 150px; margin-bottom: 22px; }
.footer-grid h2 { margin: 0 0 18px; font-size: 20px; }
.footer-grid a { display: block; color: #666; padding: 6px 0; }
.footer-grid p { color: #666; max-width: 270px; line-height: 1.7; }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 40px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #777;
  font-size: 13px;
}
.footer-bottom img { width: 240px; }

.overlay {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(0, 0, 0, .62);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.overlay.is-visible { opacity: 1; pointer-events: auto; }
.email-popup {
  position: fixed;
  z-index: 35;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(.96);
  width: min(800px, calc(100vw - 32px));
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  opacity: 0;
  pointer-events: none;
  transition: .2s ease;
}
.email-popup.is-visible { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.email-popup img { width: 100%; height: 100%; object-fit: cover; }
.popup-copy {
  padding: 54px 54px 44px;
  text-align: center;
}
.popup-copy span {
  display: inline-block;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 30px;
  position: relative;
}
.popup-copy span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -13px;
  width: 70px;
  height: 2px;
  background: #111;
  transform: translateX(-50%);
}
.popup-copy h1 { font-size: 31px; line-height: 1.25; margin: 0 0 28px; font-weight: 500; }
.popup-copy p { color: #777; line-height: 1.55; margin: 0 0 30px; }
.popup-copy form { display: grid; gap: 18px; }
.text-button {
  border: 0;
  background: transparent;
  margin-top: 26px;
  font-weight: 700;
  text-decoration: underline;
}
.popup-close {
  position: absolute;
  right: 18px;
  top: 16px;
  z-index: 1;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
}

.cart-drawer, .mobile-drawer {
  position: fixed;
  z-index: 40;
  top: 0;
  right: 0;
  width: min(420px, 100vw);
  height: 100vh;
  background: #fff;
  transform: translateX(105%);
  transition: transform .25s ease;
  box-shadow: var(--shadow);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.mobile-drawer { left: 0; right: auto; transform: translateX(-105%); }
.cart-drawer.is-visible, .mobile-drawer.is-visible { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--line); padding-bottom: 20px; }
.drawer-head h2 { margin: 0; font-size: 24px; }
.drawer-head img { width: 138px; }
.cart-items { flex: 1; overflow: auto; padding: 22px 0; }
.empty-cart { text-align: center; color: #777; margin-top: 80px; }
.cart-line { display: grid; grid-template-columns: 70px 1fr auto; gap: 14px; align-items: center; margin-bottom: 18px; }
.cart-line img { width: 70px; aspect-ratio: 1 / 1; object-fit: cover; background: #f6f6f6; }
.cart-line h3 { margin: 0 0 6px; font-size: 15px; }
.cart-line p { margin: 0; color: #777; font-size: 14px; }
.cart-total { border-top: 1px solid var(--line); padding: 20px 0; display: flex; justify-content: space-between; }
.search-dialog {
  width: min(850px, calc(100vw - 32px));
  border: 0;
  padding: 24px;
  box-shadow: var(--shadow);
}
.search-dialog::backdrop { background: rgba(0, 0, 0, .5); }
.search-box { display: grid; grid-template-columns: 1fr 42px; gap: 12px; }
.search-results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 22px; }
.search-results article { display: grid; grid-template-columns: 70px 1fr; gap: 12px; align-items: center; }
.search-results img { width: 70px; aspect-ratio: 1 / 1; object-fit: cover; background: #f7f7f7; }

.sale-toast {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 25;
  width: 330px;
  background: #fff;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  padding: 12px;
  box-shadow: var(--shadow);
  transform: translateY(130%);
  transition: transform .3s ease;
}
.sale-toast.is-visible { transform: translateY(0); }
.sale-toast img { width: 74px; height: 74px; object-fit: cover; }
.sale-toast p { margin: 4px 0; color: #777; font-size: 13px; }
.sale-toast strong { display: block; margin-bottom: 7px; }
.sale-toast span { color: #777; font-size: 12px; }
.scroll-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 20;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: #111;
  color: #fff;
  font-size: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.scroll-top.is-visible { opacity: 1; pointer-events: auto; }

.inner-hero {
  background: #f7f7f7;
  border-bottom: 1px solid var(--line);
  padding: 54px max(24px, calc((100vw - var(--max)) / 2 + 40px));
  text-align: center;
}
.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 10px;
  color: #777;
  font-size: 13px;
  margin-bottom: 14px;
}
.breadcrumbs a { color: #444; }
.inner-hero h1 {
  margin: 0;
  font-size: 42px;
  line-height: 1.15;
}
.inner-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 54px 40px 84px;
}
.layout-with-sidebar {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 42px;
  align-items: start;
}
.filter-panel {
  border: 1px solid var(--line);
  padding: 26px;
  position: sticky;
  top: 120px;
}
.filter-panel h2, .filter-group h3 {
  margin: 0 0 16px;
  font-size: 18px;
}
.filter-group { border-top: 1px solid var(--line); padding-top: 20px; margin-top: 20px; }
.filter-group label, .filter-panel a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  color: #5f5f5f;
}
.collection-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  color: #666;
}
.collection-toolbar select {
  border: 1px solid var(--line);
  padding: 12px 36px 12px 14px;
  background: #fff;
}
.collection-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.collection-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.collection-grid-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 30px 20px; }
.collection-grid-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 26px 16px; }
.collection-list { display: grid; gap: 24px; }
.collection-list .product-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 30px;
  text-align: left;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
}
.collection-list .prices, .collection-list .swatches { justify-content: flex-start; }
.collections-index {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.collection-tile {
  position: relative;
  overflow: hidden;
  background: #f7f7f7;
  min-height: 280px;
}
.collection-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.collection-tile:hover img { transform: scale(1.04); }
.collection-tile div {
  position: absolute;
  left: 28px;
  bottom: 26px;
  background: rgba(255,255,255,.92);
  padding: 16px 22px;
}
.collection-tile h2 { margin: 0 0 4px; font-size: 22px; }
.collection-tile p { margin: 0; color: #777; }

.product-detail {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 58px;
  align-items: start;
}
.product-gallery { display: grid; grid-template-columns: 100px 1fr; gap: 20px; position: sticky; top: 120px; }
.thumb-list { display: grid; gap: 14px; align-content: start; }
.thumb-list img, .main-product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f7f7f7;
}
.thumb-list img { border: 1px solid var(--line); }
.product-summary h1 { font-size: 36px; margin: 0 0 18px; }
.product-summary .prices { justify-content: flex-start; font-size: 22px; margin-bottom: 22px; }
.product-summary p { color: #606060; line-height: 1.8; }
.option-row { margin: 24px 0; }
.option-row h3 { margin: 0 0 12px; font-size: 15px; text-transform: uppercase; }
.option-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.option-pills button {
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px 16px;
}
.quantity-row { display: flex; gap: 12px; margin: 28px 0; }
.quantity-row input {
  width: 86px;
  border: 1px solid var(--line);
  padding: 0 14px;
  text-align: center;
}
.wide-button {
  border: 0;
  background: #000;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  padding: 17px 36px;
}
.product-accordions { margin-top: 34px; border-top: 1px solid var(--line); }
.product-accordions details { border-bottom: 1px solid var(--line); padding: 17px 0; }
.product-accordions summary { font-weight: 700; cursor: pointer; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.blog-list { display: grid; gap: 34px; }
.article-card { min-width: 0; }
.article-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: #f7f7f7;
}
.article-card h2 { font-size: 24px; margin: 18px 0 10px; }
.article-meta { color: #777; font-size: 13px; margin-bottom: 12px; }
.article-card p, .article-body p { color: #606060; line-height: 1.8; }
.article-layout {
  max-width: 880px;
  margin: 0 auto;
}
.article-layout img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  margin-bottom: 34px;
}
.article-body h2 { margin-top: 36px; }
.page-content {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 54px;
  align-items: start;
}
.page-content img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: #f7f7f7; }
.page-copy h2 { font-size: 32px; margin-top: 0; }
.page-copy p, .page-copy li { color: #606060; line-height: 1.8; }
.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
}
.contact-card {
  border: 1px solid var(--line);
  padding: 28px;
}
.contact-form { display: grid; gap: 14px; }
.contact-form input, .contact-form textarea, .account-panel input {
  width: 100%;
  border: 1px solid var(--line);
  padding: 15px 16px;
}
.contact-form textarea { min-height: 150px; resize: vertical; }
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-list details { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq-list summary { font-size: 18px; font-weight: 700; cursor: pointer; }
.account-panel {
  max-width: 480px;
  margin: 0 auto;
  border: 1px solid var(--line);
  padding: 34px;
}
.account-panel form { display: grid; gap: 16px; }
.wishlist-empty {
  text-align: center;
  border: 1px dashed #d5d5d5;
  padding: 70px 24px;
}
.variant-note {
  background: #f7f3ef;
  border-left: 3px solid var(--accent);
  padding: 14px 18px;
  margin-bottom: 26px;
  color: #5f5f5f;
}
.bottom-toolbar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 19;
  background: #fff;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(5, 1fr);
}
.bottom-toolbar a, .bottom-toolbar button {
  min-height: 58px;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  font-size: 12px;
}

@media (max-width: 1050px) {
  .header-shell { grid-template-columns: 90px 1fr 160px; height: 78px; padding: 0 24px; }
  .menu-toggle { display: inline-grid; justify-self: start; }
  .brand { justify-self: center; }
  .brand img { width: 138px; }
  .main-nav { display: none; }
  .mega-panel { display: none; }
  .hero-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 300px 260px; padding: 0 24px; }
  .hero-tile-large { grid-row: auto; }
  .hero-tile-bottom { grid-column: 1 / 3; }
  .service-strip, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .tracking-band, .arrival-band { grid-template-columns: 1fr; }
  .tracking-band img { aspect-ratio: 16 / 9; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .layout-with-sidebar, .product-detail, .page-content, .contact-grid { grid-template-columns: 1fr; }
  .filter-panel, .product-gallery { position: static; }
  .collections-index, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .collection-grid-5, .collection-grid-6 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 700px) {
  .header-shell { padding: 0 16px; grid-template-columns: 42px 1fr 122px; }
  .header-actions { gap: 7px; }
  .header-actions .icon-button:nth-child(2), .header-actions .icon-button:nth-child(3) { display: none; }
  .hero-grid, .service-strip, .tracking-band, .section-shell, .category-band, .arrival-band { padding-left: 16px; padding-right: 16px; }
  .hero-grid { display: block; }
  .hero-tile { margin-bottom: 16px; height: 320px; }
  .tile-copy.right, .tile-copy.lower { left: 24px; right: 24px; top: auto; bottom: 28px; transform: none; text-align: left; }
  .service-strip, .product-grid, .category-band, .arrival-products, .newsletter-band, .footer-grid { grid-template-columns: 1fr; }
  .service-item h3 { font-size: 18px; }
  .tracking-copy h2 { font-size: 32px; }
  .arrival-image { min-height: 420px; }
  .instagram-rail { grid-template-columns: repeat(2, 1fr); }
  .newsletter-band { padding: 42px 16px; }
  .inline-form { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; gap: 16px; padding: 22px 16px; }
  .email-popup { grid-template-columns: 1fr; max-height: calc(100vh - 28px); overflow: auto; }
  .email-popup img { min-height: 280px; }
  .popup-copy { padding: 44px 26px 32px; }
  .popup-copy h1 { font-size: 25px; }
  .search-results { grid-template-columns: 1fr; }
  .sale-toast { left: 12px; right: 12px; bottom: 12px; width: auto; }
  .inner-hero { padding: 38px 16px; }
  .inner-hero h1 { font-size: 31px; }
  .inner-shell { padding: 38px 16px 64px; }
  .collection-toolbar { display: grid; }
  .collection-grid-2, .collection-grid-3, .collection-grid-5, .collection-grid-6, .collections-index, .blog-grid { grid-template-columns: 1fr; }
  .collection-list .product-card { grid-template-columns: 1fr; text-align: center; }
  .collection-list .prices, .collection-list .swatches { justify-content: center; }
  .product-gallery { grid-template-columns: 1fr; }
  .thumb-list { grid-template-columns: repeat(4, 1fr); }
  .contact-grid, .page-content { gap: 28px; }
  .bottom-toolbar { display: grid; }
}
