:root {
  --ink: #0a0a0a;
  --paper: #f2efe6;
  --paper-deep: #e9e4d8;
  --acid: #c7ff1a;
  --line: rgba(10, 10, 10, 0.18);
  --product-gutter: clamp(24px, 5vw, 88px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

button,
a {
  color: inherit;
}

button {
  font: inherit;
}

a {
  text-decoration: none;
}

.topbar {
  min-height: 31px;
  padding: 7px 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--ink);
  color: var(--paper);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.topbar-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--acid);
}

.site-header {
  height: 88px;
  padding: 0 clamp(24px, 4.5vw, 72px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(242, 239, 230, 0.96);
}

.brand {
  width: 176px;
  height: 66px;
  display: flex;
  align-items: center;
}

.brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 62px);
}

.desktop-nav a {
  position: relative;
  padding: 34px 0 31px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 23px;
  height: 3px;
  background: var(--acid);
  transition: right 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-button,
.menu-button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.cart-button {
  position: relative;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
}

.cart-button svg {
  width: 27px;
  height: 27px;
}

.cart-button span {
  position: absolute;
  right: -1px;
  top: 1px;
  min-width: 19px;
  height: 19px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--acid);
  font-size: 10px;
  font-weight: 900;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
}

.menu-icon {
  width: 24px;
  height: 18px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
}

.menu-icon i {
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-icon.is-open i:first-child { transform: translateY(4.5px) rotate(45deg); }
.menu-icon.is-open i:last-child { transform: translateY(-4.5px) rotate(-45deg); }

.hero {
  min-height: calc(100vh - 119px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  min-height: 650px;
  padding: clamp(62px, 7vw, 108px) clamp(28px, 5vw, 82px) 62px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,.055) 0 1px, transparent 1.5px) 0 0 / 5px 5px,
    var(--ink);
  color: var(--paper);
}

.hero-copy::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: -20px;
  top: -5%;
  width: 43px;
  height: 110%;
  background: var(--paper);
  clip-path: polygon(48% 0, 100% 0, 67% 15%, 100% 29%, 65% 42%, 100% 56%, 58% 72%, 100% 87%, 50% 100%, 0 100%, 20% 86%, 0 74%, 25% 61%, 0 45%, 28% 31%, 0 18%);
}

.eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 23px;
  display: grid;
  place-items: center;
  background: var(--acid);
  color: var(--ink);
  font-size: 10px;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(74px, 8.1vw, 132px);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.hero h1 em {
  color: var(--acid);
  font-style: normal;
}

.hero-description {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(242,239,230,.78);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
}

.hero-actions {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 58px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 1px solid rgba(242,239,230,.55);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 16px;
  letter-spacing: .03em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--ink);
}

.button-primary span { font-family: Arial, sans-serif; font-size: 20px; }
.button-ghost:hover { background: var(--paper); color: var(--ink); }

.hero-note {
  margin: 26px 0 0;
  color: rgba(242,239,230,.52);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
}

.lime-brush {
  position: absolute;
  right: 30px;
  bottom: 54px;
  width: 230px;
  height: 18px;
  background: var(--acid);
  transform: rotate(-8deg) skewX(-22deg);
  clip-path: polygon(0 38%, 6% 14%, 16% 25%, 28% 8%, 40% 30%, 55% 4%, 70% 24%, 83% 0, 100% 30%, 94% 68%, 77% 84%, 60% 67%, 43% 100%, 28% 72%, 12% 94%, 4% 66%);
  opacity: .95;
}

.hero-products {
  min-height: 650px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(10,10,10,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,10,10,.045) 1px, transparent 1px),
    var(--paper);
  background-size: 56px 56px;
}

.hero-products::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: 14%;
  left: 12%;
  border-radius: 50%;
  border: 1px solid rgba(10,10,10,.12);
  box-shadow: 0 0 0 34px rgba(10,10,10,.03), 0 0 0 68px rgba(10,10,10,.02);
}

.hero-tee,
.hero-tote {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 24px 28px rgba(10,10,10,.14));
  animation: product-in 700ms cubic-bezier(.2,.8,.2,1) both;
}

.hero-tee {
  z-index: 2;
  width: min(58vw, 590px);
  left: 2%;
  top: 2%;
  transform: rotate(-4deg);
}

.hero-tote {
  z-index: 3;
  width: min(37vw, 390px);
  right: -1%;
  bottom: 1%;
  transform: rotate(4deg);
  animation-delay: 120ms;
}

.hero-index {
  position: absolute;
  z-index: 1;
  left: 5%;
  bottom: 4%;
  color: rgba(10,10,10,.07);
  font-family: Impact, sans-serif;
  font-size: 72px;
  line-height: .72;
  letter-spacing: -.03em;
}

.hero-index b { font-size: 154px; }

.product-tag {
  position: absolute;
  z-index: 5;
  padding: 8px 10px;
  background: var(--ink);
  color: var(--paper);
  font-size: 9px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .14em;
}

.tag-tee { top: 16%; left: 8%; }
.tag-tote { right: 5%; bottom: 33%; background: var(--acid); color: var(--ink); }

.hero-stamp {
  position: absolute;
  z-index: 6;
  top: 5%;
  right: 5%;
  width: 86px;
  height: 86px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  transform: rotate(9deg);
}

.hero-stamp span { font-family: Impact, sans-serif; font-size: 28px; }
.hero-stamp small { font-size: 7px; font-weight: 900; letter-spacing: .12em; }

.proof-strip {
  min-height: 104px;
  padding: 20px clamp(24px, 5vw, 84px);
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.proof-strip article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.proof-strip article svg { width: 35px; height: 35px; flex: 0 0 auto; }
.proof-strip article div { display: flex; flex-direction: column; gap: 4px; }
.proof-strip strong { font-family: Impact, sans-serif; font-size: 17px; letter-spacing: .035em; text-transform: uppercase; }
.proof-strip span { color: rgba(10,10,10,.58); font-size: 11px; }
.proof-strip > i { width: 1px; height: 44px; background: var(--line); }

.collection-section {
  padding: clamp(88px, 9vw, 142px) var(--product-gutter) clamp(92px, 10vw, 156px);
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  align-items: end;
  gap: clamp(40px, 7vw, 110px);
}

.section-kicker {
  margin: 0 0 18px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.section-heading h2,
.about-copy h2,
.newsletter-section h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(58px, 7.3vw, 112px);
  font-weight: 900;
  line-height: .84;
  letter-spacing: -.025em;
  text-transform: uppercase;
}

.section-heading h2 em,
.about-copy h2 em,
.newsletter-section h2 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1.5px var(--ink);
}

.section-intro {
  max-width: 450px;
  margin: 0 0 7px;
  color: rgba(10,10,10,.65);
  font-size: 16px;
  line-height: 1.75;
}

.category-filters {
  margin: 58px 0 32px;
  padding-bottom: 15px;
  display: flex;
  gap: 11px;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  scrollbar-width: thin;
}

.category-filters button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  background: transparent;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.category-filters button span {
  margin-left: 8px;
  color: rgba(10,10,10,.48);
  font-size: 9px;
}

.category-filters button[aria-pressed="true"],
.category-filters button:hover {
  background: var(--ink);
  color: var(--paper);
}

.category-filters button[aria-pressed="true"] span,
.category-filters button:hover span { color: var(--acid); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(26px, 3vw, 46px) clamp(16px, 2vw, 28px);
}

.product-card {
  min-width: 0;
}

.product-image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  padding: 0;
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(10,10,10,.14);
  background:
    linear-gradient(rgba(10,10,10,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,10,10,.035) 1px, transparent 1px),
    #ebe6db;
  background-size: 38px 38px;
  cursor: pointer;
}

.product-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 0 solid var(--acid);
  pointer-events: none;
  transition: border-width 180ms ease;
}

.product-image-wrap:hover::after,
.product-image-wrap:focus-visible::after { border-width: 8px; }

.product-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(.2,.8,.2,1);
}

.product-image-wrap:hover img,
.product-image-wrap:focus-visible img { transform: scale(1.035); }

.product-badge {
  position: absolute;
  z-index: 3;
  top: 16px;
  left: 16px;
  padding: 8px 10px;
  background: var(--acid);
  color: var(--ink);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.product-number {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  color: rgba(10,10,10,.42);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
}

.product-view {
  position: absolute;
  z-index: 4;
  left: 16px;
  right: 16px;
  bottom: 16px;
  min-height: 48px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--ink);
  color: var(--paper);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
  transform: translateY(calc(100% + 18px));
  transition: transform 180ms ease;
}

.product-view svg { width: 18px; height: 18px; color: var(--acid); }
.product-image-wrap:hover .product-view,
.product-image-wrap:focus-visible .product-view { transform: translateY(0); }

.product-info {
  padding-top: 17px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.product-info p {
  margin: 0 0 7px;
  color: rgba(10,10,10,.53);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.product-info h3 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(20px, 1.9vw, 28px);
  font-weight: 500;
  letter-spacing: .015em;
  text-transform: uppercase;
}

.product-info > strong {
  flex: 0 0 auto;
  padding-top: 21px;
  font-size: 13px;
  letter-spacing: .04em;
}

.drop-banner {
  min-height: 740px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.drop-copy {
  padding: clamp(62px, 7vw, 110px) clamp(28px, 5.5vw, 90px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: var(--acid);
  color: var(--ink);
}

.drop-copy > p {
  margin: 0 0 23px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
}

.drop-copy h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(70px, 8vw, 126px);
  font-weight: 900;
  line-height: .82;
  letter-spacing: -.03em;
}

.drop-copy > span {
  margin-top: 28px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.button-dark {
  margin-top: 38px;
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
}

.drop-visual {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(242,239,230,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242,239,230,.055) 1px, transparent 1px),
    var(--ink);
  background-size: 50px 50px;
}

.drop-visual img {
  z-index: 2;
  width: min(68%, 610px);
  display: block;
  border: 10px solid var(--paper);
  transform: rotate(4deg);
  box-shadow: 0 30px 50px rgba(0,0,0,.35);
}

.drop-outline {
  position: absolute;
  z-index: 1;
  left: 3%;
  bottom: -10%;
  color: transparent;
  font-family: Impact, sans-serif;
  font-size: clamp(240px, 32vw, 520px);
  line-height: .8;
  -webkit-text-stroke: 2px rgba(242,239,230,.13);
}

.drop-sticker {
  position: absolute;
  z-index: 4;
  top: 9%;
  right: 7%;
  width: 118px;
  height: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  transform: rotate(10deg);
}

.drop-sticker b { font-family: Impact, sans-serif; font-size: 22px; letter-spacing: .04em; }
.drop-sticker small { margin-top: 3px; font-size: 7px; font-weight: 900; letter-spacing: .1em; }

.marquee {
  overflow: hidden;
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
}

.marquee > div {
  width: max-content;
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 35px;
  animation: marquee 24s linear infinite;
}

.marquee span {
  font-family: Impact, sans-serif;
  font-size: 36px;
  letter-spacing: .03em;
}

.marquee i { color: var(--acid); font-size: 28px; font-style: normal; -webkit-text-stroke: 1px var(--ink); }

.about-section {
  min-height: 820px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  border-bottom: 1px solid var(--ink);
}

.about-visual {
  min-height: 720px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(199,255,26,.08), transparent 48%),
    var(--ink);
}

.about-visual::before,
.about-visual::after {
  content: "";
  position: absolute;
  width: 440px;
  height: 22px;
  background: var(--acid);
  transform: rotate(-13deg) skewX(-25deg);
}

.about-visual::before { left: -70px; top: 15%; }
.about-visual::after { right: -110px; bottom: 12%; }

.about-label {
  position: absolute;
  z-index: 6;
  left: 5%;
  top: 5%;
  padding: 10px 12px;
  background: var(--paper);
  color: var(--ink);
  font-size: 9px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .13em;
}

.about-shirt,
.about-bag {
  position: absolute;
  z-index: 2;
  display: block;
  object-fit: cover;
  border: 8px solid var(--paper);
  box-shadow: 0 28px 60px rgba(0,0,0,.45);
}

.about-shirt { width: 62%; left: 8%; top: 15%; transform: rotate(-7deg); }
.about-bag { width: 47%; right: 4%; bottom: 6%; transform: rotate(7deg); z-index: 3; }

.about-copy {
  padding: clamp(76px, 8vw, 132px) clamp(28px, 6vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--paper);
}

.about-copy h2 { font-size: clamp(52px, 5.7vw, 88px); }
.about-copy > p:not(.section-kicker) { max-width: 640px; margin: 32px 0 0; color: rgba(10,10,10,.67); font-size: 17px; line-height: 1.75; }

.manifesto-points {
  margin-top: 39px;
  border-top: 1px solid var(--line);
}

.manifesto-points article {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.manifesto-points b { color: var(--acid); font-family: Impact, sans-serif; font-size: 22px; -webkit-text-stroke: .7px var(--ink); }
.manifesto-points span { color: rgba(10,10,10,.74); font-size: 13px; line-height: 1.55; }

.newsletter-section {
  padding: clamp(72px, 8vw, 120px) clamp(24px, 6vw, 100px);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: clamp(50px, 9vw, 150px);
  background: var(--acid);
}

.newsletter-section h2 { font-size: clamp(50px, 5.8vw, 90px); }

.newsletter-form label {
  display: block;
  margin-bottom: 10px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.newsletter-form > div {
  display: grid;
  grid-template-columns: 1fr 60px;
  border-bottom: 2px solid var(--ink);
}

.newsletter-form input {
  min-width: 0;
  height: 65px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 20px;
}

.newsletter-form input::placeholder { color: rgba(10,10,10,.48); }
.newsletter-form button { border: 0; background: var(--ink); color: var(--acid); cursor: pointer; }
.newsletter-form button svg { width: 25px; height: 25px; }
.newsletter-form small { display: block; margin-top: 13px; color: rgba(10,10,10,.6); font-size: 10px; line-height: 1.5; }

.newsletter-success {
  min-height: 150px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border: 2px solid var(--ink);
}

.newsletter-success span { font-size: 29px; }
.newsletter-success strong { margin-top: 10px; font-family: Impact, sans-serif; font-size: 28px; text-transform: uppercase; }
.newsletter-success small { margin-top: 5px; }

.site-footer {
  padding: 74px clamp(24px, 6vw, 100px) 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background: var(--ink);
  color: var(--paper);
}

.footer-brand img { width: min(330px, 70vw); filter: invert(1); }
.footer-brand p { margin: 18px 0 0; color: var(--acid); font-size: 11px; font-weight: 900; letter-spacing: .2em; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; }
.footer-links div { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-links strong { margin-bottom: 7px; color: var(--acid); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.footer-links a, .footer-links span { color: rgba(242,239,230,.72); font-size: 13px; line-height: 1.4; }
.footer-links a:hover { color: var(--paper); }
.footer-bottom { grid-column: 1 / -1; margin-top: 35px; padding-top: 20px; display: flex; justify-content: space-between; border-top: 1px solid rgba(242,239,230,.18); color: rgba(242,239,230,.42); font-size: 8px; font-weight: 900; letter-spacing: .15em; }

.modal-shell,
.drawer-shell {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(10,10,10,.76);
  cursor: pointer;
  backdrop-filter: blur(5px);
}

.product-modal {
  width: min(1040px, calc(100vw - 52px));
  max-height: calc(100vh - 52px);
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  overflow: auto;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 0 35px 90px rgba(0,0,0,.4);
}

.close-button {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.close-button svg { width: 23px; height: 23px; }
.product-modal > .close-button { position: absolute; z-index: 5; top: 16px; right: 16px; }

.modal-image {
  min-height: 610px;
  position: relative;
  overflow: hidden;
  background: #e8e2d6;
}

.modal-image img { width: 100%; height: 100%; display: block; object-fit: cover; }
.modal-image > span { position: absolute; left: 18px; top: 18px; padding: 8px 10px; background: var(--acid); font-size: 8px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }

.modal-details {
  padding: 70px clamp(28px, 4vw, 60px) 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-details h2 {
  margin: 0;
  font-family: Impact, sans-serif;
  font-size: clamp(50px, 5vw, 74px);
  font-weight: 500;
  line-height: .9;
  text-transform: uppercase;
}

.modal-price { margin-top: 18px; font-size: 18px; }
.modal-description { margin: 28px 0 0; color: rgba(10,10,10,.66); font-size: 14px; line-height: 1.65; }
.size-block { margin-top: 33px; padding-top: 24px; border-top: 1px solid var(--line); }
.size-block > div:first-child { display: flex; justify-content: space-between; gap: 20px; font-size: 11px; text-transform: uppercase; }
.size-block > div:first-child span { color: rgba(10,10,10,.5); }
.size-options { margin-top: 15px; display: flex; flex-wrap: wrap; gap: 8px; }
.size-options button { min-width: 48px; min-height: 45px; padding: 0 13px; border: 1px solid var(--ink); background: transparent; font-size: 11px; font-weight: 900; cursor: pointer; }
.size-options button.is-selected { background: var(--ink); color: var(--acid); }
.modal-add { width: 100%; margin-top: 28px; border-color: var(--acid); background: var(--acid); color: var(--ink); cursor: pointer; }
.modal-notes { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 10px 20px; color: rgba(10,10,10,.55); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.drawer-shell { place-items: stretch end; }
.cart-drawer {
  width: min(500px, 100vw);
  height: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--paper);
  box-shadow: -24px 0 70px rgba(0,0,0,.35);
  animation: drawer-in 240ms ease both;
}

.cart-drawer > header {
  min-height: 94px;
  padding: 18px 19px 18px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.cart-drawer > header p { margin: 0 0 5px; font-family: Impact, sans-serif; font-size: 28px; letter-spacing: .04em; }
.cart-drawer > header span { color: rgba(10,10,10,.53); font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.cart-drawer .close-button { width: 43px; height: 43px; }

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

.empty-cart > svg { width: 60px; height: 60px; }
.empty-cart h2 { margin: 24px 0 0; font-family: Impact, sans-serif; font-size: 42px; font-weight: 500; line-height: .95; text-transform: uppercase; }
.empty-cart p { max-width: 310px; margin: 18px 0 28px; color: rgba(10,10,10,.58); font-size: 13px; line-height: 1.6; }
.empty-cart .button { cursor: pointer; }

.cart-lines { flex: 1; overflow-y: auto; padding: 4px 26px; }
.cart-line { padding: 22px 0; display: grid; grid-template-columns: 115px 1fr; gap: 18px; border-bottom: 1px solid var(--line); }
.cart-line > img { width: 115px; height: 130px; display: block; object-fit: cover; background: #e9e3d7; }
.cart-line h3 { margin: 3px 0 7px; font-family: Impact, sans-serif; font-size: 21px; font-weight: 500; line-height: 1.05; text-transform: uppercase; }
.cart-line p { margin: 0 0 12px; color: rgba(10,10,10,.52); font-size: 9px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.cart-line strong { font-size: 12px; }
.quantity { width: 105px; height: 34px; margin-top: 13px; display: grid; grid-template-columns: 1fr 1fr 1fr; border: 1px solid var(--ink); }
.quantity button { border: 0; background: transparent; cursor: pointer; }
.quantity span { display: grid; place-items: center; border-left: 1px solid var(--ink); border-right: 1px solid var(--ink); font-size: 11px; font-weight: 900; }

.cart-summary { padding: 24px 26px 28px; border-top: 1px solid var(--ink); background: #e9e4d8; }
.cart-summary > div { display: flex; justify-content: space-between; gap: 20px; font-size: 14px; font-weight: 900; text-transform: uppercase; }
.cart-summary > p { margin: 12px 0 18px; color: rgba(10,10,10,.56); font-size: 9px; line-height: 1.5; }
.checkout-button { width: 100%; min-height: 58px; border-color: var(--ink); background: var(--ink); color: var(--paper); }
.checkout-button span { color: var(--acid); }
.continue-shopping { width: 100%; margin-top: 14px; border: 0; background: transparent; font-size: 10px; font-weight: 900; text-decoration: underline; text-transform: uppercase; cursor: pointer; }

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

.shop-link {
  min-height: 42px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: var(--paper);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.shop-link span { color: var(--acid); font-size: 16px; }

.inner-hero {
  min-height: 570px;
  padding: clamp(80px, 9vw, 142px) clamp(24px, 6vw, 100px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.inner-hero::after {
  content: "";
  width: 36vw;
  height: 36vw;
  position: absolute;
  right: -5vw;
  bottom: -18vw;
  border: 1px solid rgba(199,255,26,.5);
  border-radius: 50%;
  box-shadow: 0 0 0 4vw rgba(199,255,26,.03), 0 0 0 8vw rgba(199,255,26,.025);
}

.inner-hero .section-kicker { color: var(--acid); }
.inner-hero h1 { max-width: 1100px; margin: 0; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(74px, 10vw, 160px); font-weight: 900; line-height: .82; letter-spacing: -.035em; text-transform: uppercase; }
.inner-hero h1 em { color: var(--acid); font-style: normal; }
.inner-hero > p:last-child { max-width: 650px; margin: 31px 0 0; color: rgba(242,239,230,.7); font-size: 18px; line-height: 1.7; }
.blog-hero { background: linear-gradient(110deg, rgba(10,10,10,.98), rgba(10,10,10,.86)), url('../products/tee-medina-grey.webp') center / cover; }
.contact-hero h1 em { color: transparent; -webkit-text-stroke: 2px var(--acid); }
.inner-collection { padding-top: 42px; }

.seo-copy-block {
  padding: clamp(70px, 8vw, 120px) clamp(24px, 7vw, 116px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 9vw, 150px);
  border-top: 1px solid var(--ink);
  background: var(--acid);
}

.seo-copy-block > .section-kicker { grid-column: 1 / -1; margin-bottom: -25px; }
.seo-copy-block h2 { margin: 0; font-family: Impact, sans-serif; font-size: clamp(54px, 6vw, 94px); line-height: .9; }
.seo-copy-block div { display: grid; gap: 20px; }
.seo-copy-block p:not(.section-kicker) { margin: 0; font-size: 15px; line-height: 1.75; }

.breadcrumbs {
  padding: 20px clamp(22px, 5vw, 84px);
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  border-bottom: 1px solid var(--line);
  color: rgba(10,10,10,.55);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.breadcrumbs a:hover { color: var(--ink); }
.breadcrumbs strong { color: var(--ink); }

.product-page {
  min-height: 750px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  border-bottom: 1px solid var(--ink);
}

.product-page-image { min-height: 720px; position: relative; overflow: hidden; background: #e9e3d7; }
.product-page-image img { width: 100%; height: 100%; display: block; object-fit: cover; }
.product-page-image > span { position: absolute; top: 24px; left: 24px; padding: 9px 12px; background: var(--acid); font-size: 8px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.product-page-copy { padding: clamp(70px, 8vw, 125px) clamp(28px, 6vw, 96px); display: flex; flex-direction: column; justify-content: center; }
.product-page-copy h1 { margin: 0; font-family: Impact, sans-serif; font-size: clamp(64px, 7.3vw, 112px); font-weight: 500; line-height: .84; text-transform: uppercase; }
.product-page-copy > p:not(.section-kicker) { margin: 28px 0 0; color: rgba(10,10,10,.65); font-size: 16px; line-height: 1.75; }
.product-features { margin-top: 31px; padding: 20px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 13px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.product-features span { font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.available-sizes { margin-top: 25px; }
.available-sizes > b { display: block; margin-bottom: 12px; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.available-sizes > div { display: flex; gap: 8px; flex-wrap: wrap; }
.available-sizes span { min-width: 44px; min-height: 42px; padding: 0 12px; display: grid; place-items: center; border: 1px solid var(--ink); font-size: 10px; font-weight: 900; }
.product-order { width: 100%; margin-top: 30px; border-color: var(--ink); background: var(--ink); color: var(--paper); }
.product-order span { color: var(--acid); }
.product-page-copy > small { margin-top: 13px; color: rgba(10,10,10,.52); font-size: 9px; line-height: 1.5; }
.related-section, .blog-grid-section, .related-articles { padding: clamp(80px, 9vw, 135px) clamp(24px, 6vw, 100px); }
.section-heading.compact { margin-bottom: 50px; }
.section-heading.compact h2 { font-size: clamp(52px, 5.8vw, 90px); }
.section-heading.compact > a { align-self: end; padding-bottom: 8px; font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; border-bottom: 2px solid var(--acid); }

.featured-article {
  padding: clamp(70px, 8vw, 120px) clamp(24px, 6vw, 100px);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: clamp(45px, 8vw, 130px);
  border-bottom: 1px solid var(--ink);
}

.featured-image { aspect-ratio: 1.15 / 1; position: relative; display: block; overflow: hidden; background: #e9e3d7; }
.featured-image img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 400ms ease; }
.featured-image:hover img { transform: scale(1.025); }
.featured-image span { position: absolute; top: 18px; left: 18px; padding: 9px 12px; background: var(--acid); font-size: 8px; font-weight: 900; letter-spacing: .14em; }
.article-meta { margin: 0 0 16px; color: rgba(10,10,10,.52); font-size: 9px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.featured-article h2 { margin: 0; font-family: Impact, sans-serif; font-size: clamp(47px, 5.2vw, 80px); font-weight: 500; line-height: .95; text-transform: uppercase; }
.featured-article > div > p:not(.article-meta) { margin: 26px 0; color: rgba(10,10,10,.64); font-size: 15px; line-height: 1.7; }
.text-link { display: inline-block; padding-bottom: 5px; border-bottom: 2px solid var(--acid); font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }

.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 45px 28px; }
.blog-card > a:first-child { aspect-ratio: 1.15 / 1; display: block; overflow: hidden; background: #e9e3d7; }
.blog-card img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 350ms ease; }
.blog-card > a:first-child:hover img { transform: scale(1.03); }
.blog-card .article-meta { margin-top: 20px; }
.blog-card h3 { margin: 0; font-family: Impact, sans-serif; font-size: clamp(26px, 2.5vw, 37px); font-weight: 500; line-height: 1.05; text-transform: uppercase; }
.blog-card > p:not(.article-meta) { margin: 15px 0 20px; color: rgba(10,10,10,.6); font-size: 13px; line-height: 1.65; }
.blog-cta, .article-shop-cta { min-height: 220px; padding: 48px clamp(24px, 6vw, 100px); display: flex; align-items: center; justify-content: space-between; gap: 40px; background: var(--ink); color: var(--paper); }
.blog-cta > p { margin: 0; font-family: Impact, sans-serif; font-size: clamp(35px, 5vw, 78px); line-height: .95; }
.blog-cta .button, .article-shop-cta .button { flex: 0 0 auto; }

.article-page { padding-bottom: 100px; }
.article-page > .breadcrumbs { padding-left: clamp(24px, 9vw, 150px); padding-right: clamp(24px, 9vw, 150px); }
.article-header { max-width: 1150px; margin: 0 auto; padding: clamp(70px, 8vw, 120px) 24px 60px; text-align: center; }
.article-header h1 { margin: 0; font-family: Impact, sans-serif; font-size: clamp(58px, 7.8vw, 120px); font-weight: 500; line-height: .9; text-transform: uppercase; }
.article-header > p:last-child { max-width: 760px; margin: 28px auto 0; color: rgba(10,10,10,.62); font-size: 18px; line-height: 1.7; }
.article-cover { width: min(1180px, calc(100% - 48px)); height: min(68vw, 720px); margin: 0 auto; overflow: hidden; background: #e9e3d7; }
.article-cover img { width: 100%; height: 100%; display: block; object-fit: cover; }
.article-layout { max-width: 1080px; margin: 0 auto; padding: 85px 24px 0; display: grid; grid-template-columns: 245px 1fr; gap: clamp(55px, 8vw, 115px); align-items: start; }
.article-layout aside { position: sticky; top: 125px; display: flex; flex-direction: column; gap: 14px; }
.article-layout aside > span { margin-bottom: 6px; font-size: 9px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.article-layout aside a { padding-bottom: 13px; border-bottom: 1px solid var(--line); color: rgba(10,10,10,.62); font-size: 10px; line-height: 1.5; }
.article-layout aside a:hover { color: var(--ink); }
.article-content section { scroll-margin-top: 130px; margin-bottom: 70px; }
.article-content h2 { margin: 0 0 26px; font-family: Impact, sans-serif; font-size: clamp(38px, 4.3vw, 62px); font-weight: 500; line-height: 1; text-transform: uppercase; }
.article-content p { margin: 0 0 21px; color: rgba(10,10,10,.72); font-family: Georgia, "Times New Roman", serif; font-size: 18px; line-height: 1.85; }
.article-content ul { margin: 28px 0; padding: 25px 28px 25px 52px; background: var(--acid); }
.article-content li { margin: 9px 0; font-size: 13px; font-weight: 800; line-height: 1.5; }
.article-shop-cta h2 { margin: 0; font-family: Impact, sans-serif; font-size: clamp(38px, 4.7vw, 72px); line-height: .95; }
.article-shop-cta .section-kicker { color: var(--acid); }
.related-articles > .section-kicker { margin-bottom: 34px; }

.about-story {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--ink);
}

.about-story-visual { min-height: 700px; position: relative; display: grid; place-items: center; overflow: hidden; background: var(--ink); }
.about-story-visual img { width: 72%; display: block; border: 9px solid var(--paper); transform: rotate(-5deg); }
.about-story-visual span { position: absolute; top: 5%; left: 5%; padding: 10px 12px; background: var(--acid); font-size: 8px; font-weight: 900; letter-spacing: .13em; }
.about-story > div:last-child { padding: clamp(70px, 8vw, 125px) clamp(28px, 6vw, 95px); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.about-story h2, .values-section > h2, .faq-section > h2 { margin: 0; font-family: Impact, sans-serif; font-size: clamp(52px, 6.2vw, 95px); font-weight: 500; line-height: .9; }
.about-story > div:last-child > p:not(.section-kicker) { margin: 25px 0 0; color: rgba(10,10,10,.65); font-size: 16px; line-height: 1.75; }
.about-story .button { margin-top: 35px; }
.values-section { padding: clamp(80px, 9vw, 135px) clamp(24px, 6vw, 100px); }
.values-section > div { margin-top: 38px; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.values-section article { min-height: 340px; padding: 38px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.values-section article b { color: var(--acid); font-family: Impact, sans-serif; font-size: 30px; -webkit-text-stroke: .7px var(--ink); }
.values-section article h2 { margin: 80px 0 15px; font-family: Impact, sans-serif; font-size: 42px; font-weight: 500; text-transform: uppercase; }
.values-section article p { margin: 0; color: rgba(10,10,10,.62); font-size: 14px; line-height: 1.7; }

.contact-grid { display: grid; grid-template-columns: repeat(3,1fr); border-bottom: 1px solid var(--ink); }
.contact-grid > div { min-height: 360px; padding: clamp(35px, 5vw, 72px); border-right: 1px solid var(--ink); }
.contact-grid > div:last-child { border-right: 0; }
.contact-grid span { color: var(--acid); font-family: Impact, sans-serif; font-size: 30px; -webkit-text-stroke: .7px var(--ink); }
.contact-grid h2 { margin: 70px 0 16px; font-family: Impact, sans-serif; font-size: 48px; font-weight: 500; text-transform: uppercase; }
.contact-grid p { max-width: 370px; margin: 0 0 24px; color: rgba(10,10,10,.62); font-size: 14px; line-height: 1.7; }
.contact-grid strong { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.faq-section { padding: clamp(80px, 9vw, 135px) clamp(24px, 7vw, 120px); }
.faq-section > div { max-width: 900px; margin: 45px 0 0 auto; border-top: 1px solid var(--ink); }
.faq-section details { border-bottom: 1px solid var(--ink); }
.faq-section summary { padding: 25px 0; font-size: 14px; font-weight: 900; cursor: pointer; list-style: none; }
.faq-section summary::after { content: "+"; float: right; color: var(--acid); font-size: 22px; -webkit-text-stroke: .7px var(--ink); }
.faq-section details[open] summary::after { content: "−"; }
.faq-section details p { max-width: 740px; margin: 0; padding: 0 0 27px; color: rgba(10,10,10,.63); font-size: 14px; line-height: 1.7; }
.not-found { min-height: 650px; padding: 80px 24px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.not-found > span { color: var(--acid); font-family: Impact, sans-serif; font-size: 80px; -webkit-text-stroke: 1px var(--ink); }
.not-found h1 { margin: 10px 0 0; font-family: Impact, sans-serif; font-size: clamp(52px, 7vw, 100px); text-transform: uppercase; }
.not-found p { color: rgba(10,10,10,.62); }
.not-found .button { margin-top: 25px; }

.first-slice {
  min-height: 180px;
  padding: 70px clamp(24px, 6vw, 96px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--paper-deep);
  font-family: Impact, sans-serif;
  font-size: clamp(24px, 4vw, 54px);
  letter-spacing: .02em;
}

.first-slice p { margin: 0; }
.first-slice span { font-family: Arial, sans-serif; color: var(--acid); -webkit-text-stroke: 1px var(--ink); }

@keyframes product-in {
  from { opacity: 0; translate: 0 24px; }
  to { opacity: 1; translate: 0 0; }
}

@media (max-width: 1000px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav {
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    display: none;
    padding: 22px 28px 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }
  .desktop-nav.is-open { display: flex; }
  .desktop-nav a { width: 100%; padding: 17px 0; font-size: 22px; border-bottom: 1px solid var(--line); }
  .desktop-nav a::after { bottom: 10px; right: 100%; width: 90px; }
  .menu-button { display: block; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy, .hero-products { min-height: 620px; }
  .hero-copy::after { display: none; }
  .hero h1 { font-size: clamp(72px, 15vw, 118px); }
  .hero-products { order: 2; }
  .hero-tee { width: min(80vw, 620px); left: 5%; }
  .hero-tote { width: min(54vw, 420px); }
  .section-heading { grid-template-columns: 1fr; align-items: start; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .drop-banner { grid-template-columns: 1fr; }
  .drop-copy { min-height: 580px; }
  .drop-visual { min-height: 680px; }
  .about-section { grid-template-columns: 1fr; }
  .about-visual { min-height: 720px; }
  .newsletter-section { grid-template-columns: 1fr; align-items: start; }
  .product-modal { grid-template-columns: .95fr 1.05fr; }
  .modal-image { min-height: 540px; }
  .inner-hero { min-height: 500px; }
  .seo-copy-block { grid-template-columns: 1fr; }
  .seo-copy-block > .section-kicker { margin-bottom: -10px; }
  .product-page { grid-template-columns: 1fr; }
  .product-page-image { min-height: 650px; }
  .featured-article { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .article-layout { grid-template-columns: 1fr; }
  .article-layout aside { position: static; }
  .about-story { grid-template-columns: 1fr; }
  .values-section > div, .contact-grid { grid-template-columns: 1fr; }
  .values-section article, .contact-grid > div { min-height: 270px; }
  .contact-grid > div { border-right: 0; border-bottom: 1px solid var(--ink); }
}

@media (max-width: 680px) {
  .topbar { min-height: 28px; font-size: 8px; gap: 8px; text-align: center; }
  .topbar span:first-child, .topbar-dot { display: none; }
  .site-header { height: 74px; padding: 0 18px; }
  .brand { width: 126px; height: 54px; }
  .desktop-nav { top: 74px; }
  .header-actions { gap: 4px; }
  .hero-copy { min-height: 600px; padding: 58px 22px 52px; }
  .hero h1 { font-size: clamp(66px, 19vw, 94px); }
  .hero-description { font-size: 16px; }
  .hero-actions { width: 100%; }
  .button { width: 100%; min-height: 56px; }
  .hero-note { line-height: 1.6; }
  .lime-brush { width: 130px; bottom: 24px; }
  .hero-products { min-height: 480px; }
  .hero-products::before { width: 280px; height: 280px; top: 18%; left: 9%; }
  .hero-tee { width: 105vw; left: -18%; top: 0; }
  .hero-tote { width: 68vw; right: -10%; bottom: -2%; }
  .hero-stamp { width: 66px; height: 66px; }
  .hero-stamp span { font-size: 23px; }
  .tag-tote { bottom: 27%; }
  .hero-index { font-size: 46px; }
  .hero-index b { font-size: 96px; }
  .proof-strip { grid-template-columns: 1fr; gap: 22px; padding: 30px 22px; }
  .proof-strip article { justify-content: flex-start; }
  .proof-strip > i { width: 100%; height: 1px; }
  .first-slice { min-height: 130px; padding: 44px 22px; font-size: 28px; gap: 20px; }
  .collection-section { padding: 76px 18px 92px; }
  .section-heading h2 { font-size: 55px; }
  .section-intro { font-size: 14px; }
  .category-filters { margin-top: 38px; overflow-x: auto; }
  .category-filters button { flex: 0 0 auto; }
  .product-grid { grid-template-columns: 1fr; gap: 34px; }
  .product-image-wrap { aspect-ratio: 1 / 1.02; }
  .product-view { transform: translateY(0); }
  .product-info h3 { font-size: 25px; }
  .drop-copy { min-height: 530px; padding: 68px 22px; }
  .drop-copy h2 { font-size: 72px; }
  .drop-visual { min-height: 500px; }
  .drop-visual img { width: 78%; border-width: 7px; }
  .drop-sticker { width: 86px; height: 86px; top: 5%; }
  .drop-sticker b { font-size: 17px; }
  .marquee > div { min-height: 66px; gap: 24px; }
  .marquee span { font-size: 27px; }
  .about-visual { min-height: 560px; }
  .about-shirt { width: 75%; left: 1%; top: 15%; }
  .about-bag { width: 57%; right: -3%; }
  .about-copy { padding: 74px 22px 82px; }
  .about-copy h2 { font-size: 49px; }
  .about-copy > p:not(.section-kicker) { font-size: 15px; }
  .newsletter-section { padding: 70px 22px; }
  .newsletter-section h2 { font-size: 46px; }
  .newsletter-form input { font-size: 17px; }
  .site-footer { grid-template-columns: 1fr; padding: 60px 22px 24px; gap: 42px; }
  .footer-links { gap: 24px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 9px; }
  .product-modal { width: 100vw; max-height: 100vh; height: 100vh; grid-template-columns: 1fr; }
  .modal-image { min-height: 48vh; height: 48vh; }
  .modal-details { padding: 42px 22px 38px; }
  .modal-details h2 { font-size: 48px; }
  .cart-line { grid-template-columns: 96px 1fr; }
  .cart-line > img { width: 96px; height: 112px; }
  .shop-link { display: none; }
  .inner-hero { min-height: 470px; padding: 70px 22px; }
  .inner-hero h1 { font-size: 68px; }
  .inner-hero > p:last-child { font-size: 15px; }
  .seo-copy-block { padding: 70px 22px; }
  .seo-copy-block h2 { font-size: 52px; }
  .product-page-image { min-height: 430px; }
  .product-page-copy { padding: 60px 22px 70px; }
  .product-page-copy h1 { font-size: 59px; }
  .product-features { grid-template-columns: 1fr; }
  .related-section, .blog-grid-section, .related-articles { padding: 70px 18px; }
  .featured-article { padding: 70px 18px; }
  .featured-article h2 { font-size: 46px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-cta, .article-shop-cta { align-items: flex-start; flex-direction: column; padding: 50px 22px; }
  .article-header { padding: 62px 18px 40px; }
  .article-header h1 { font-size: 54px; }
  .article-header > p:last-child { font-size: 16px; }
  .article-cover { width: calc(100% - 36px); height: 92vw; }
  .article-layout { padding: 60px 22px 0; }
  .article-content p { font-size: 17px; }
  .about-story-visual { min-height: 480px; }
  .about-story > div:last-child { padding: 65px 22px 75px; }
  .about-story h2, .faq-section > h2 { font-size: 50px; }
  .values-section { padding: 70px 18px; }
  .values-section article { padding: 28px; }
  .values-section article h2 { margin-top: 45px; }
  .contact-grid > div { min-height: 300px; padding: 45px 22px; }
  .contact-grid h2 { margin-top: 50px; }
  .faq-section { padding: 70px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* WordPress, Elementor and WooCommerce bridge. */
body.admin-bar .site-header {
  top: 32px;
}

.site-header .custom-logo-link {
  align-items: center;
  display: flex;
  height: 66px;
  max-width: 176px;
  width: 176px;
}

.site-header .custom-logo,
.site-header .brand img {
  height: 100% !important;
  max-height: 66px;
  max-width: 176px !important;
  object-fit: contain;
  width: 100% !important;
}

.desktop-nav ul {
  align-items: center;
  display: flex;
  gap: clamp(28px, 4vw, 62px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-nav li {
  margin: 0;
}

.desktop-nav .current-menu-item > a::after,
.desktop-nav .current_page_item > a::after {
  right: 0;
}

.cart-button {
  text-decoration: none;
}

.site-footer .custom-logo-link {
  display: block;
  max-width: 330px;
}

.site-footer .custom-logo {
  filter: invert(1);
  height: auto !important;
  max-width: 330px !important;
  width: 100% !important;
}

.elementor-page .entry-title {
  display: none;
}

.elementor .tb-reference-document,
.elementor .tb-reference-section {
  --display: flex;
  --flex-direction: column;
  --gap: 0px;
  --padding-top: 0px;
  --padding-right: 0px;
  --padding-bottom: 0px;
  --padding-left: 0px;
  width: 100%;
}

.elementor .tb-reference-document > .e-con-inner,
.elementor .tb-reference-section > .e-con-inner {
  gap: 0;
  max-width: none;
  padding: 0;
  width: 100%;
}

.elementor .tb-reference-document .elementor-widget-html,
.elementor .tb-reference-document .elementor-widget-shortcode,
.elementor .tb-reference-document .elementor-widget-toublab-section {
  width: 100%;
}

.elementor .tb-reference-document .elementor-widget-container {
  margin: 0;
}

/*
 * Elementor stores zero padding on generated containers. These selectors
 * restore the product-section gutters in both the editor and the public page.
 */
.elementor .tb-reference-section.collection-section {
  --padding-top: clamp(88px, 9vw, 142px);
  --padding-right: var(--product-gutter);
  --padding-bottom: clamp(92px, 10vw, 156px);
  --padding-left: var(--product-gutter);
  padding: clamp(88px, 9vw, 142px) var(--product-gutter) clamp(92px, 10vw, 156px) !important;
}

.tb-reference-shop {
  padding: clamp(42px, 5vw, 72px) var(--product-gutter) clamp(92px, 10vw, 156px);
}

.elementor .tb-reference-section.tb-reference-shop {
  --padding-top: clamp(42px, 5vw, 72px);
  --padding-right: var(--product-gutter);
  --padding-bottom: clamp(92px, 10vw, 156px);
  --padding-left: var(--product-gutter);
  padding: clamp(42px, 5vw, 72px) var(--product-gutter) clamp(92px, 10vw, 156px) !important;
}

.toublab-filter,
.toublab-blog-grid {
  --toublab-black: var(--ink);
  --toublab-cream: var(--paper);
  --toublab-acid: var(--acid);
}

.category-filters a {
  align-items: center;
  border: 1px solid var(--ink);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  min-height: 44px;
  padding: 0 18px;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease;
}

.category-filters a span {
  color: rgba(10,10,10,.48);
  font-size: 9px;
  margin-left: 8px;
}

.category-filters a:hover,
.category-filters a.is-active {
  background: var(--ink);
  color: var(--paper);
}

.category-filters a:hover span,
.category-filters a.is-active span {
  color: var(--acid);
}

.product-info h3 a {
  color: inherit;
}

.product-info .price del {
  color: rgba(10,10,10,.45);
  display: block;
  font-size: 11px;
}

.product-info .price ins {
  text-decoration: none;
}

.tb-reference-shop .toublab-filter {
  padding-left: 0;
  padding-right: 0;
}

.tb-reference-blog .toublab-blog-grid {
  padding: 0;
}

.woocommerce .products {
  margin: 0;
}

.woocommerce ul.products {
  display: grid;
  gap: clamp(26px, 3vw, 46px) clamp(16px, 2vw, 28px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product {
  float: none !important;
  margin: 0 !important;
  width: auto !important;
}

.woocommerce ul.products li.product a img {
  aspect-ratio: 1 / 1.08;
  background: #ebe6db;
  border: 1px solid rgba(10,10,10,.14);
  margin: 0 0 17px;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(.2,.8,.2,1);
}

.woocommerce ul.products li.product a:hover img {
  transform: scale(1.02);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 500;
  letter-spacing: .01em;
  line-height: 1;
  padding: 0;
  text-transform: uppercase;
}

.woocommerce ul.products li.product .price {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.woocommerce span.onsale {
  background: var(--acid);
  border-radius: 0;
  color: var(--ink);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1;
  min-height: 0;
  min-width: 0;
  padding: 10px;
  text-transform: uppercase;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 0;
  color: var(--paper);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .04em;
  min-height: 50px;
  padding: 15px 20px;
  text-transform: uppercase;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: var(--acid);
  color: var(--ink);
}

.woocommerce-message,
.woocommerce-info {
  background: #fffdf7;
  border-top-color: var(--acid);
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: #668500;
}

.woocommerce table.shop_table,
.woocommerce-checkout-review-order,
.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-content {
  background: #fffdf7;
  border: 1px solid var(--line);
  border-radius: 0;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: 17px;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single {
  background: #fffdf7;
  border: 1px solid var(--line);
  border-radius: 0;
  min-height: 48px;
  padding: 10px 12px;
}

.tb-commerce-content {
  padding: clamp(60px, 7vw, 105px) clamp(24px, 6vw, 100px) clamp(90px, 10vw, 150px);
}

.tb-commerce-content h2,
.tb-commerce-content h3 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}

.tb-legal-layout {
  display: grid;
  gap: clamp(35px, 6vw, 90px);
  grid-template-columns: 260px minmax(0, 780px);
  justify-content: center;
  padding: clamp(70px, 8vw, 120px) clamp(24px, 6vw, 100px);
}

.tb-legal-layout aside {
  align-self: start;
  border-top: 1px solid var(--ink);
  position: sticky;
  top: 135px;
}

.tb-legal-layout aside a {
  border-bottom: 1px solid var(--line);
  display: block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  padding: 15px 0;
  text-transform: uppercase;
}

.tb-legal-content h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 500;
  line-height: 1;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.tb-legal-content h2:not(:first-child) {
  margin-top: 60px;
}

.tb-legal-content p,
.tb-legal-content li {
  color: rgba(10,10,10,.7);
  font-size: 16px;
  line-height: 1.8;
}

.tb-empty-products {
  border: 1px solid var(--ink);
  grid-column: 1 / -1;
  padding: 50px;
  text-align: center;
}

/* Exact-design bridge for the functional filters and WooCommerce screens. */
.tb-reference-shop .toublab-filter__intro {
  align-items: end;
  margin-bottom: 34px;
}

.tb-reference-shop .toublab-eyebrow {
  color: rgba(10,10,10,.58);
  font-size: 9px;
  letter-spacing: .15em;
}

.tb-reference-shop .toublab-filter__intro h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(48px, 6vw, 92px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: .9;
}

.tb-reference-shop .toublab-filter__intro p {
  color: rgba(10,10,10,.62);
  max-width: 620px;
}

.tb-reference-shop .toublab-filter__panel {
  border-color: var(--ink);
}

.tb-reference-shop .toublab-filter__chips {
  gap: 7px;
}

.tb-reference-shop .toublab-filter__chip {
  border-radius: 0;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .07em;
  min-height: 42px;
  padding: 9px 13px;
  text-transform: uppercase;
}

.tb-reference-shop .toublab-filter__chip.is-active {
  background: var(--ink);
  color: var(--paper);
}

.tb-reference-shop .toublab-filter__chip.is-active small {
  background: var(--acid);
}

.tb-reference-shop .toublab-filter__grid {
  gap: 46px 26px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tb-reference-shop .toublab-product-card__visual {
  background: #e9e3d7;
  border: 1px solid rgba(10,10,10,.14);
}

.tb-reference-shop .toublab-product-card__visual img,
.tb-reference-shop .toublab-product-card__placeholder {
  aspect-ratio: 1 / 1.08;
}

.tb-reference-shop .toublab-product-card__visual::after {
  display: none;
}

.tb-reference-shop .toublab-product-card__badge {
  background: var(--acid);
  border-radius: 0;
  color: var(--ink);
  font-size: 8px;
  letter-spacing: .12em;
}

.tb-reference-shop .toublab-product-card__body {
  padding-top: 17px;
}

.tb-reference-shop .toublab-product-card__terms {
  color: rgba(10,10,10,.5);
}

.tb-reference-shop .toublab-product-card h3 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 500;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.tb-reference-shop .toublab-product-card__price {
  color: var(--ink);
  font-weight: 900;
}

.product-page-image .woocommerce-product-gallery,
.product-page-image .woocommerce-product-gallery__wrapper,
.product-page-image .woocommerce-product-gallery__image,
.product-page-image .woocommerce-product-gallery__image a {
  height: 100%;
  margin: 0;
  width: 100% !important;
}

.product-page-image .woocommerce-product-gallery {
  float: none !important;
}

.product-page-image .flex-viewport {
  height: 100% !important;
}

.product-page-image .flex-control-thumbs {
  bottom: 18px;
  display: flex;
  gap: 8px;
  left: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 18px;
  z-index: 3;
}

.product-page-image .flex-control-thumbs li {
  border: 2px solid var(--paper);
  float: none !important;
  height: 72px;
  margin: 0 !important;
  overflow: hidden;
  width: 60px !important;
}

.product-page-image .flex-control-thumbs img {
  height: 100% !important;
}

.product-page-image .woocommerce-product-gallery__trigger {
  align-items: center;
  background: var(--paper);
  border-radius: 0;
  display: flex;
  height: 42px;
  justify-content: center;
  right: 20px;
  top: 20px;
  width: 42px;
  z-index: 4;
}

.modal-price {
  display: block;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 30px;
  font-weight: 500;
  margin-top: 25px;
}

.tb-product-description p {
  color: rgba(10,10,10,.65);
  font-size: 16px;
  line-height: 1.75;
  margin: 25px 0 0;
}

.tb-single-cart {
  margin-top: 28px;
}

.tb-single-cart form.cart {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 !important;
}

.tb-single-cart form.variations_form {
  display: block;
}

.tb-single-cart table.variations {
  margin: 0 0 18px !important;
}

.tb-single-cart table.variations th,
.tb-single-cart table.variations td {
  display: block;
  padding: 0 0 8px !important;
  text-align: left;
}

.tb-single-cart table.variations label {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.tb-single-cart select {
  background: #fffdf7;
  border: 1px solid var(--ink);
  border-radius: 0;
  min-height: 48px;
  padding: 0 14px;
  width: 100%;
}

.tb-single-cart .quantity .qty {
  background: #fffdf7;
  border: 1px solid var(--ink);
  border-radius: 0;
  min-height: 50px;
  width: 70px;
}

.tb-single-cart .single_add_to_cart_button {
  flex: 1 1 220px;
}

.product-page-copy .product_meta {
  color: rgba(10,10,10,.55);
  display: grid;
  font-size: 9px;
  gap: 6px;
  letter-spacing: .08em;
  margin-top: 20px;
  text-transform: uppercase;
}

.product-page-copy .product_meta a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.related-section .related > h2 {
  display: none;
}

.tb-product-details {
  border-bottom: 1px solid var(--ink);
  padding: clamp(70px, 8vw, 120px) clamp(24px, 7vw, 116px);
}

.tb-product-details .woocommerce-tabs ul.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 42px !important;
  padding: 0 !important;
}

.tb-product-details .woocommerce-tabs ul.tabs::before,
.tb-product-details .woocommerce-tabs ul.tabs li::before,
.tb-product-details .woocommerce-tabs ul.tabs li::after {
  display: none !important;
}

.tb-product-details .woocommerce-tabs ul.tabs li {
  background: transparent !important;
  border: 1px solid var(--ink) !important;
  border-radius: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.tb-product-details .woocommerce-tabs ul.tabs li a {
  font-size: 10px;
  font-weight: 900 !important;
  letter-spacing: .1em;
  padding: 15px 18px !important;
  text-transform: uppercase;
}

.tb-product-details .woocommerce-tabs ul.tabs li.active {
  background: var(--ink) !important;
  color: var(--acid) !important;
}

.tb-product-details .woocommerce-Tabs-panel {
  max-width: 900px;
}

.tb-product-details .woocommerce-Tabs-panel h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 500;
  text-transform: uppercase;
}

.tb-product-details .woocommerce-Tabs-panel p,
.tb-product-details .woocommerce-Tabs-panel li {
  color: rgba(10,10,10,.7);
  font-size: 16px;
  line-height: 1.8;
}

.article-content > h2,
.article-content > h3 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.article-content > h2 {
  font-size: clamp(38px, 4.3vw, 62px);
  margin: 0 0 26px;
}

.article-content > h3 {
  font-size: clamp(26px, 3vw, 40px);
  margin: 45px 0 20px;
}

.article-content > p {
  color: rgba(10,10,10,.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.85;
  margin: 0 0 21px;
}

.article-content > ul,
.article-content > ol {
  background: var(--acid);
  margin: 28px 0;
  padding: 25px 28px 25px 52px;
}

.article-content > li {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.navigation.pagination {
  margin-top: 55px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.nav-links .page-numbers {
  border: 1px solid var(--ink);
  display: grid;
  font-size: 10px;
  font-weight: 900;
  min-height: 42px;
  min-width: 42px;
  padding: 10px;
  place-items: center;
}

.nav-links .page-numbers.current,
.nav-links .page-numbers:hover {
  background: var(--ink);
  color: var(--acid);
}

.tb-search-empty {
  min-height: 420px;
}

@media (max-width: 1000px) {
  .desktop-nav ul {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tb-reference-shop .toublab-filter__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 680px) {
  .site-header .custom-logo-link {
    height: 54px;
    max-width: 126px;
    width: 126px;
  }

  .site-header .custom-logo,
  .site-header .brand img {
    max-height: 54px;
    max-width: 126px !important;
  }

  .desktop-nav ul {
    width: 100%;
  }

  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .tb-legal-layout {
    grid-template-columns: 1fr;
    padding: 65px 22px;
  }

  .tb-legal-layout aside {
    position: static;
  }

  .tb-reference-shop .toublab-filter__grid {
    grid-template-columns: 1fr;
  }

  .elementor .tb-reference-section.collection-section,
  .elementor .tb-reference-section.tb-reference-shop {
    --padding-top: 76px;
    --padding-right: 18px;
    --padding-bottom: 92px;
    --padding-left: 18px;
    padding: 76px 18px 92px !important;
  }

  .product-page-image .flex-control-thumbs li {
    height: 58px;
    width: 48px !important;
  }
}

/* --------------------------------------------------------------------------
   V4.2 — WooCommerce product experience
   -------------------------------------------------------------------------- */

body.tb-modal-open {
  overflow: hidden;
}

.modal-shell[hidden] {
  display: none !important;
}

.tb-product-modal-shell {
  z-index: 100000;
}

.tb-product-modal-shell .modal-overlay {
  background: rgba(10, 10, 10, .76);
  backdrop-filter: blur(6px);
}

.tb-product-modal-shell .product-modal {
  width: min(1204px, calc(100vw - 64px));
  min-height: min(760px, calc(100vh - 64px));
  max-height: calc(100vh - 64px);
  grid-template-columns: 52.5% 47.5%;
  overflow: hidden;
}

.tb-product-modal-shell .modal-image {
  min-height: 0;
  background: #f7efe4;
}

.tb-product-modal-shell .modal-image img {
  object-fit: contain;
}

.tb-product-modal-shell .modal-details {
  min-width: 0;
  overflow-y: auto;
  padding: 78px clamp(48px, 5vw, 70px) 52px;
}

.tb-product-modal-shell .modal-details h2 {
  max-width: 470px;
  font-size: clamp(58px, 5.2vw, 82px);
  line-height: .88;
}

.tb-product-modal-shell .modal-description {
  max-width: 470px;
}

.tb-modal-attributes:empty {
  display: none;
}

.tb-modal-attributes .size-block + .size-block {
  margin-top: 15px;
}

.tb-modal-status {
  min-height: 18px;
  margin: 12px 0 -10px;
  color: rgba(10, 10, 10, .6);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.tb-modal-status.is-error {
  color: #9b1c1c;
}

.tb-product-modal-shell .modal-add {
  min-height: 67px;
  justify-content: space-between;
  border: 1px solid var(--acid);
  border-radius: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 17px;
  opacity: 1;
}

.tb-product-modal-shell .modal-add::after {
  content: "↗";
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.tb-product-modal-shell .modal-add:disabled {
  cursor: not-allowed;
  opacity: .42;
  transform: none;
}

.tb-modal-product-link {
  align-self: flex-start;
  margin-top: 17px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.tb-modal-loader {
  position: absolute;
  z-index: 8;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(242, 239, 230, .94);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.tb-modal-loader[hidden] {
  display: none !important;
}

.single-product .tb-main {
  background: var(--paper);
}

.single-product .product-page {
  min-height: max(760px, calc(100svh - 116px));
  grid-template-columns: 54% 46%;
  border-top: 1px solid var(--line);
}

.single-product .product-page-image {
  min-height: inherit;
  background: #f7efe4;
}

.single-product .product-page-image > span {
  z-index: 7;
  top: 26px;
  left: 28px;
  padding: 10px 14px;
  color: var(--ink);
}

.single-product .product-page-image .woocommerce-product-gallery,
.single-product .product-page-image .woocommerce-product-gallery__wrapper,
.single-product .product-page-image .woocommerce-product-gallery__image,
.single-product .product-page-image .woocommerce-product-gallery__image a {
  min-height: inherit;
}

.single-product .product-page-image .woocommerce-product-gallery__image img {
  height: 100% !important;
  object-fit: contain !important;
}

.single-product .product-page-copy {
  min-width: 0;
  padding: clamp(72px, 8vw, 126px) clamp(48px, 5.4vw, 110px);
  background: var(--paper);
}

.single-product .product-page-copy .section-kicker {
  margin-bottom: 16px;
}

.single-product .product-page-copy h1 {
  max-width: 760px;
  font-size: clamp(66px, 7vw, 112px);
  line-height: .86;
}

.single-product .product-features {
  margin-top: 34px;
  padding: 24px 0;
}

.single-product .tb-product-description p {
  max-width: 740px;
}

.tb-single-cart {
  margin-top: 27px;
}

.tb-single-cart form.cart,
.tb-single-cart form.variations_form {
  display: block;
  margin: 0 !important;
}

.tb-single-cart table.variations {
  width: 100%;
  margin: 0 0 20px !important;
  border: 0;
}

.tb-single-cart table.variations tbody,
.tb-single-cart table.variations tr {
  display: block;
  width: 100%;
}

.tb-single-cart table.variations tr + tr {
  margin-top: 18px;
}

.tb-single-cart table.variations th,
.tb-single-cart table.variations td {
  display: block;
  width: 100%;
  padding: 0 !important;
  background: transparent;
}

.tb-single-cart table.variations th {
  margin-bottom: 13px;
}

.tb-single-cart table.variations label {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}

.tb-swatch-source {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.tb-option-picker {
  margin-top: 0;
}

.tb-option-picker button,
.tb-modal-attributes .size-options button {
  min-width: 51px;
  min-height: 49px;
  border-radius: 0;
}

.tb-option-picker button.is-selected,
.tb-modal-attributes .size-options button.is-selected {
  background: var(--ink);
  color: var(--acid);
}

.tb-option-picker button:disabled,
.tb-modal-attributes .size-options button:disabled {
  cursor: not-allowed;
  opacity: .28;
  text-decoration: line-through;
}

.tb-single-cart .reset_variations {
  display: none !important;
}

.tb-single-cart .single_variation {
  min-height: 0;
  margin: 0;
}

.tb-single-cart .woocommerce-variation-price {
  display: none;
}

.tb-single-cart .woocommerce-variation-availability {
  margin-bottom: 10px;
  color: rgba(10, 10, 10, .6);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.tb-single-cart .woocommerce-variation-add-to-cart,
.tb-single-cart .woocommerce-variation-add-to-cart-enabled {
  display: block;
}

.tb-single-cart .quantity {
  display: none !important;
}

.tb-single-cart .single_add_to_cart_button,
.woocommerce div.product .tb-single-cart .single_add_to_cart_button {
  width: 100%;
  min-height: 67px;
  margin: 0 !important;
  padding: 0 27px !important;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  float: none !important;
  border: 1px solid var(--acid) !important;
  border-radius: 0 !important;
  background: var(--acid) !important;
  color: var(--ink) !important;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif !important;
  font-size: 17px !important;
  font-weight: 500 !important;
  letter-spacing: .03em;
  line-height: 1;
  text-transform: uppercase;
  opacity: 1;
}

.tb-single-cart .single_add_to_cart_button::after {
  content: "↗";
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.tb-single-cart .single_add_to_cart_button.disabled,
.tb-single-cart .single_add_to_cart_button:disabled {
  cursor: not-allowed;
  opacity: .42;
}

.tb-whatsapp-order {
  width: 100%;
  min-height: 67px;
  margin-top: 10px;
  padding: 0 27px;
  justify-content: space-between;
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.tb-whatsapp-order > span:last-child {
  color: var(--acid);
  font-family: Arial, sans-serif;
  font-size: 20px;
}

.tb-whatsapp-order:hover,
.tb-whatsapp-order:focus-visible {
  color: var(--paper);
}

.tb-whatsapp-order.is-disabled {
  cursor: not-allowed;
  opacity: .42;
  transform: none;
}

.single-product .product-page-copy > small {
  margin-top: 14px;
}

@media (max-width: 1000px) {
  .single-product .product-page {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .single-product .product-page-image {
    min-height: 720px;
  }

  .single-product .product-page-copy {
    padding: 82px clamp(28px, 8vw, 80px) 92px;
  }

  .tb-product-modal-shell .product-modal {
    width: min(900px, calc(100vw - 44px));
    min-height: 0;
    grid-template-columns: 49% 51%;
  }

  .tb-product-modal-shell .modal-details {
    padding: 70px 38px 44px;
  }

  .tb-product-modal-shell .modal-details h2 {
    font-size: clamp(52px, 7vw, 68px);
  }
}

@media (max-width: 720px) {
  .single-product .product-page-image {
    min-height: 56vh;
  }

  .single-product .product-page-copy {
    padding: 58px 20px 72px;
  }

  .single-product .product-page-copy h1 {
    font-size: clamp(52px, 16vw, 70px);
  }

  .single-product .product-features {
    grid-template-columns: 1fr;
  }

  .tb-product-modal-shell {
    place-items: stretch;
  }

  .tb-product-modal-shell .product-modal {
    width: 100vw;
    height: 100svh;
    max-height: 100svh;
    grid-template-columns: 1fr;
    grid-template-rows: 43svh auto;
    overflow-y: auto;
    border: 0;
  }

  .tb-product-modal-shell .modal-image {
    min-height: 43svh;
  }

  .tb-product-modal-shell .modal-details {
    overflow: visible;
    padding: 46px 20px 42px;
  }

  .tb-product-modal-shell .modal-details h2 {
    padding-right: 44px;
    font-size: clamp(48px, 15vw, 64px);
  }

  .tb-product-modal-shell .product-modal > .close-button {
    position: fixed;
    top: 14px;
    right: 14px;
  }
}

/* --------------------------------------------------------------------------
   V4.2.1 — TOUBLAB cart
   -------------------------------------------------------------------------- */

.woocommerce-cart .tb-commerce-content {
  padding: clamp(64px, 7vw, 108px) var(--product-gutter) clamp(90px, 10vw, 150px);
  background: var(--paper-deep);
}

.woocommerce-cart .elementor .tb-reference-section.tb-commerce-content {
  --padding-top: clamp(64px, 7vw, 108px);
  --padding-right: var(--product-gutter);
  --padding-bottom: clamp(90px, 10vw, 150px);
  --padding-left: var(--product-gutter);
  padding: clamp(64px, 7vw, 108px) var(--product-gutter) clamp(90px, 10vw, 150px) !important;
}

.woocommerce-cart .tb-commerce-content .elementor-widget-container,
.woocommerce-cart .tb-commerce-content .woocommerce {
  width: 100%;
}

.woocommerce-cart .tb-commerce-content .woocommerce {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(340px, .65fr);
  align-items: start;
  gap: clamp(24px, 3vw, 44px);
}

.woocommerce-cart .tb-commerce-content .woocommerce::before,
.woocommerce-cart .tb-commerce-content .woocommerce::after {
  display: none;
}

.woocommerce-cart .woocommerce-notices-wrapper,
.woocommerce-cart .wc-empty-cart-message,
.woocommerce-cart .return-to-shop {
  grid-column: 1 / -1;
}

.woocommerce-cart .woocommerce-notices-wrapper:empty {
  display: none;
}

.woocommerce-cart .woocommerce-cart-form {
  grid-column: 1;
  min-width: 0;
  margin: 0;
  border: 1px solid var(--ink);
  background: #fffdf7;
}

.woocommerce-cart .woocommerce-cart-form::before {
  content: "01 — TES PIÈCES";
  min-height: 58px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--ink);
  background: var(--ink);
  color: var(--acid);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
}

.woocommerce-cart table.shop_table.cart {
  width: 100%;
  margin: 0 !important;
  border: 0;
  border-collapse: collapse;
  background: transparent;
}

.woocommerce-cart table.cart thead {
  background: #e8e2d6;
}

.woocommerce-cart table.cart thead th {
  padding: 17px 18px;
  border-bottom: 1px solid var(--ink);
  color: rgba(10, 10, 10, .62);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.woocommerce-cart table.cart tbody tr.cart_item {
  background: #fffdf7;
}

.woocommerce-cart table.cart tbody tr.cart_item + tr.cart_item {
  border-top: 1px solid var(--ink);
}

.woocommerce-cart table.cart td {
  padding: 22px 18px;
  border-color: var(--line);
  vertical-align: middle;
}

.woocommerce-cart table.cart .product-remove {
  width: 48px;
  padding-right: 4px;
  text-align: center;
}

.woocommerce-cart table.cart .product-remove a.remove {
  width: 32px;
  height: 32px;
  margin: auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: var(--ink) !important;
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.woocommerce-cart table.cart .product-remove a.remove:hover {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--ink) !important;
}

.woocommerce-cart table.cart .product-thumbnail {
  width: 126px;
}

.woocommerce-cart table.cart .product-thumbnail img {
  width: 104px;
  height: 118px;
  display: block;
  border: 1px solid var(--line);
  background: #eee7db;
  object-fit: cover;
}

.woocommerce-cart table.cart .product-name {
  min-width: 200px;
}

.woocommerce-cart table.cart .product-name > a {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: .01em;
  line-height: 1;
  text-transform: uppercase;
}

.woocommerce-cart table.cart .product-name > a:hover {
  text-decoration: underline;
  text-decoration-color: var(--acid);
  text-decoration-thickness: 4px;
  text-underline-offset: 5px;
}

.woocommerce-cart table.cart .variation {
  margin: 10px 0 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 8px;
  color: rgba(10, 10, 10, .55);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.woocommerce-cart table.cart .variation dt,
.woocommerce-cart table.cart .variation dd,
.woocommerce-cart table.cart .variation p {
  margin: 0;
}

.woocommerce-cart table.cart .product-price,
.woocommerce-cart table.cart .product-subtotal {
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

.woocommerce-cart table.cart .product-subtotal {
  color: #526b00;
}

.woocommerce-cart table.cart .quantity {
  display: inline-flex;
}

.woocommerce-cart table.cart .quantity .qty {
  width: 68px;
  min-height: 48px;
  padding: 0 10px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.woocommerce-cart table.cart td.actions {
  padding: 22px 24px;
  border-top: 1px solid var(--ink);
  background: #e8e2d6;
}

.woocommerce-cart table.cart td.actions .coupon {
  display: inline-grid;
  grid-template-columns: minmax(150px, 220px) auto;
  gap: 8px;
}

.woocommerce-cart table.cart td.actions .coupon .input-text {
  width: 100% !important;
  min-height: 52px;
  margin: 0;
  padding: 0 14px;
  border: 1px solid var(--ink);
  background: #fffdf7;
  color: var(--ink);
  font-size: 12px;
}

.woocommerce-cart table.cart td.actions .coupon .input-text::placeholder {
  color: rgba(10, 10, 10, .48);
}

.woocommerce-cart table.cart td.actions .button {
  min-height: 52px;
}

.woocommerce-cart table.cart td.actions button[name="update_cart"] {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--ink);
}

.woocommerce-cart table.cart td.actions button[name="update_cart"]:disabled {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
  opacity: .28;
}

.woocommerce-cart .cart-collaterals {
  grid-column: 2;
  width: 100% !important;
  margin: 0;
  position: sticky;
  top: 132px;
}

.woocommerce-cart .cart-collaterals::before,
.woocommerce-cart .cart-collaterals::after {
  display: none;
}

.woocommerce-cart .cart-collaterals .cross-sells {
  display: none;
}

.woocommerce-cart .cart-collaterals .cart_totals {
  width: 100%;
  margin: 0;
  padding: 34px;
  float: none;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.woocommerce-cart .cart-collaterals .cart_totals::before {
  content: "02 — TA COMMANDE";
  display: block;
  margin-bottom: 13px;
  color: var(--acid);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .16em;
}

.woocommerce-cart .cart-collaterals .cart_totals h2 {
  margin: 0 0 26px;
  color: var(--paper);
  max-width: 100%;
  font-size: clamp(29px, 2.25vw, 38px);
  letter-spacing: -.025em;
  line-height: .95;
  overflow-wrap: anywhere;
}

.woocommerce-cart .cart-collaterals .cart_totals table {
  width: 100%;
  margin: 0;
  border: 1px solid rgba(242, 239, 230, .22);
  background: transparent;
}

.woocommerce-cart .cart-collaterals .cart_totals table th,
.woocommerce-cart .cart-collaterals .cart_totals table td {
  padding: 17px 13px;
  border-color: rgba(242, 239, 230, .18);
  background: transparent;
  color: var(--paper);
  font-size: 12px;
  vertical-align: top;
}

.woocommerce-cart .cart-collaterals .cart_totals table th {
  width: 37%;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.woocommerce-cart .cart-collaterals .cart_totals .woocommerce-shipping-methods {
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce-cart .cart-collaterals .cart_totals .woocommerce-shipping-methods li {
  margin: 0 0 10px;
  line-height: 1.45;
}

.woocommerce-cart .cart-collaterals input[type="radio"] {
  accent-color: var(--acid);
}

.woocommerce-cart .cart-collaterals .woocommerce-shipping-destination,
.woocommerce-cart .cart-collaterals .woocommerce-shipping-calculator {
  color: rgba(242, 239, 230, .67);
  font-size: 11px;
  line-height: 1.55;
}

.woocommerce-cart .cart-collaterals .shipping-calculator-button {
  color: var(--acid);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.woocommerce-cart .cart-collaterals .order-total th,
.woocommerce-cart .cart-collaterals .order-total td {
  border-top: 1px solid var(--acid);
}

.woocommerce-cart .cart-collaterals .order-total strong,
.woocommerce-cart .cart-collaterals .order-total .amount {
  color: var(--acid);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 25px;
  font-weight: 500;
}

.woocommerce-cart .wc-proceed-to-checkout {
  padding: 18px 0 0;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  width: 100%;
  min-height: 66px;
  margin: 0;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--acid) !important;
  border-radius: 0;
  background: var(--acid) !important;
  color: var(--ink) !important;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .03em;
  line-height: 1;
  text-transform: uppercase;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button::after {
  content: "↗";
  font-family: Arial, sans-serif;
  font-size: 21px;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
  border-color: var(--paper) !important;
  background: var(--paper) !important;
  transform: translateY(-2px);
}

.woocommerce-cart .wc-proceed-to-checkout::after {
  content: "PAIEMENT À LA LIVRAISON · LIVRAISON PARTOUT AU MAROC";
  display: block;
  margin-top: 14px;
  color: rgba(242, 239, 230, .48);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .11em;
  line-height: 1.5;
  text-align: center;
}

.woocommerce-cart .cart-empty.woocommerce-info {
  margin: 0;
  padding: clamp(45px, 6vw, 80px);
  border: 1px solid var(--ink);
  background: var(--acid);
  color: var(--ink);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.woocommerce-cart .cart-empty.woocommerce-info::before {
  display: none;
}

.woocommerce-cart .return-to-shop {
  margin: 20px 0 0;
  text-align: center;
}

.woocommerce-cart .return-to-shop .button {
  min-height: 60px;
  background: var(--ink);
  color: var(--paper);
}

@media (max-width: 1050px) {
  .woocommerce-cart .tb-commerce-content .woocommerce {
    grid-template-columns: 1fr;
  }

  .woocommerce-cart .woocommerce-cart-form,
  .woocommerce-cart .cart-collaterals {
    grid-column: 1;
  }

  .woocommerce-cart .cart-collaterals {
    position: static;
  }
}

@media (max-width: 700px) {
  .woocommerce-cart .tb-commerce-content,
  .woocommerce-cart .elementor .tb-reference-section.tb-commerce-content {
    --padding-top: 48px;
    --padding-right: 18px;
    --padding-bottom: 78px;
    --padding-left: 18px;
    padding: 48px 18px 78px !important;
  }

  .woocommerce-cart .tb-commerce-content .woocommerce {
    gap: 20px;
  }

  .woocommerce-cart .woocommerce-cart-form {
    border: 0;
    background: transparent;
  }

  .woocommerce-cart .woocommerce-cart-form::before {
    border: 1px solid var(--ink);
  }

  .woocommerce-cart table.shop_table.cart {
    background: transparent;
  }

  .woocommerce-cart table.cart thead {
    display: none;
  }

  .woocommerce-cart table.cart tbody {
    display: block;
  }

  .woocommerce-cart table.cart tbody tr.cart_item {
    margin-top: 12px;
    padding: 18px;
    display: block;
    position: relative;
    border: 1px solid var(--ink);
    background: #fffdf7;
  }

  .woocommerce-cart table.cart tbody tr.cart_item + tr.cart_item {
    border-top: 1px solid var(--ink);
  }

  .woocommerce-cart table.cart tbody tr.cart_item td {
    width: 100%;
    padding: 11px 0 !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 0;
    border-bottom: 1px solid var(--line);
    text-align: right !important;
  }

  .woocommerce-cart table.cart tbody tr.cart_item td::before {
    color: rgba(10, 10, 10, .55);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  .woocommerce-cart table.cart tbody tr.cart_item .product-remove {
    width: auto;
    padding: 0 !important;
    position: absolute;
    z-index: 3;
    top: 12px;
    right: 12px;
    border: 0;
  }

  .woocommerce-cart table.cart tbody tr.cart_item .product-remove::before,
  .woocommerce-cart table.cart tbody tr.cart_item .product-thumbnail::before {
    display: none;
  }

  .woocommerce-cart table.cart tbody tr.cart_item .product-thumbnail {
    padding-right: 48px !important;
    justify-content: flex-start;
  }

  .woocommerce-cart table.cart .product-thumbnail img {
    width: 118px;
    height: 132px;
  }

  .woocommerce-cart table.cart tbody tr.cart_item .product-name {
    min-width: 0;
    align-items: flex-start;
    flex-direction: column;
    text-align: left !important;
  }

  .woocommerce-cart table.cart tbody tr.cart_item .product-name::before {
    display: none;
  }

  .woocommerce-cart table.cart .product-name > a {
    padding-right: 30px;
    font-size: 27px;
  }

  .woocommerce-cart table.cart tbody tr.cart_item .product-subtotal {
    border-bottom: 0;
  }

  .woocommerce-cart table.cart td.actions {
    margin-top: 12px;
    padding: 18px !important;
    display: block !important;
    border: 1px solid var(--ink);
    background: #e8e2d6;
  }

  .woocommerce-cart table.cart td.actions::before {
    display: none;
  }

  .woocommerce-cart table.cart td.actions .coupon {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .woocommerce-cart table.cart td.actions > button[name="update_cart"] {
    width: 100%;
    margin-top: 9px;
  }

  .woocommerce-cart .cart-collaterals .cart_totals {
    padding: 27px 20px;
  }
}

/* --------------------------------------------------------------------------
   V4.2.2 — Quantity stepper + simplified checkout
   -------------------------------------------------------------------------- */

.woocommerce-cart table.cart .quantity.tb-quantity-stepper {
  width: max-content;
  height: 52px;
  display: grid;
  grid-template-columns: 42px 54px 42px;
  border: 1px solid var(--ink);
  background: var(--paper);
}

.woocommerce-cart table.cart .quantity.tb-quantity-stepper .qty {
  width: 54px;
  min-width: 0;
  min-height: 50px;
  padding: 0 5px;
  border: 0;
  border-right: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
  border-radius: 0;
  appearance: textfield;
  -moz-appearance: textfield;
  background: var(--paper);
  color: var(--ink);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 50px;
  text-align: center;
}

.woocommerce-cart table.cart .quantity.tb-quantity-stepper .qty::-webkit-inner-spin-button,
.woocommerce-cart table.cart .quantity.tb-quantity-stepper .qty::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.woocommerce-cart .tb-quantity-button {
  width: 42px;
  min-width: 0;
  min-height: 50px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  font-family: Arial, sans-serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
}

.woocommerce-cart .tb-quantity-decrease {
  background: var(--ink);
  color: var(--paper);
}

.woocommerce-cart .tb-quantity-increase {
  background: var(--acid);
  color: var(--ink);
}

.woocommerce-cart .tb-quantity-button:hover:not(:disabled),
.woocommerce-cart .tb-quantity-button:focus-visible {
  background: var(--paper);
  color: var(--ink);
  outline: 3px solid var(--acid);
  outline-offset: -3px;
}

.woocommerce-cart .tb-quantity-button:disabled {
  cursor: not-allowed;
  opacity: .28;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .tb-commerce-content {
  padding: clamp(64px, 7vw, 108px) var(--product-gutter) clamp(90px, 10vw, 150px);
  background: var(--paper-deep);
}

body.woocommerce-checkout:not(.woocommerce-order-received) .elementor .tb-reference-section.tb-commerce-content {
  --padding-top: clamp(64px, 7vw, 108px);
  --padding-right: var(--product-gutter);
  --padding-bottom: clamp(90px, 10vw, 150px);
  --padding-left: var(--product-gutter);
  padding: clamp(64px, 7vw, 108px) var(--product-gutter) clamp(90px, 10vw, 150px) !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-form-login-toggle,
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-form-coupon-toggle,
body.woocommerce-checkout:not(.woocommerce-order-received) form.woocommerce-form-login,
body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon {
  display: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, .76fr);
  grid-template-areas:
    "notices notices"
    "details review-title"
    "details review";
  grid-template-rows: auto auto 1fr;
  align-items: start;
  gap: 0 clamp(24px, 3vw, 44px);
}

body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout > .woocommerce-NoticeGroup,
body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout > .woocommerce-error {
  grid-area: notices;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #customer_details {
  width: 100%;
  margin: 0;
  grid-area: details;
  float: none;
  border: 1px solid var(--ink);
  background: #fffdf7;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #customer_details::before {
  content: "01 — LIVRAISON";
  min-height: 58px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--ink);
  background: var(--ink);
  color: var(--acid);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #customer_details .col-1 {
  width: 100%;
  padding: clamp(26px, 4vw, 52px);
  float: none;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #customer_details .col-2,
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-shipping-fields,
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-additional-fields {
  display: none;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-billing-fields > h3 {
  max-width: 540px;
  margin: 0 0 34px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(43px, 4.6vw, 70px);
  font-weight: 500;
  letter-spacing: -.015em;
  line-height: .92;
  text-transform: uppercase;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-billing-fields__field-wrapper {
  display: grid;
  gap: 20px;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-billing-fields .form-row {
  width: 100%;
  margin: 0;
  padding: 0;
  float: none;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-billing-fields .form-row label {
  margin-bottom: 9px;
  display: block;
  color: var(--ink);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.4;
  text-transform: uppercase;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-billing-fields .required {
  color: #607f00;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-billing-fields input.input-text,
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-billing-fields textarea.input-text {
  width: 100%;
  min-height: 62px;
  margin: 0;
  padding: 16px 18px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  box-shadow: none;
  font-size: 15px;
  line-height: 1.45;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-billing-fields textarea.input-text {
  min-height: 138px;
  resize: vertical;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-billing-fields input.input-text:focus,
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-billing-fields textarea.input-text:focus {
  outline: 4px solid var(--acid);
  outline-offset: -4px;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-billing-fields .woocommerce-invalid input.input-text,
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-billing-fields .woocommerce-invalid textarea.input-text {
  border-color: #c73333;
  outline: 3px solid rgba(199, 51, 51, .18);
  outline-offset: -3px;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #order_review_heading {
  width: 100%;
  margin: 0;
  padding: 30px 30px 17px;
  grid-area: review-title;
  float: none;
  border: 1px solid var(--ink);
  border-bottom: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(38px, 3.7vw, 54px);
  font-weight: 500;
  line-height: .95;
  text-transform: uppercase;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #order_review_heading::before {
  content: "02 — RÉCAPITULATIF";
  margin-bottom: 13px;
  display: block;
  color: var(--acid);
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .16em;
  line-height: 1.4;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #order_review {
  width: 100%;
  margin: 0;
  padding: 0 30px 30px;
  grid-area: review;
  float: none;
  border: 1px solid var(--ink);
  border-top: 0;
  background: var(--ink);
  color: var(--paper);
}

body.woocommerce-checkout:not(.woocommerce-order-received) #order_review table.shop_table {
  width: 100%;
  margin: 0 0 20px;
  border: 1px solid rgba(242, 239, 230, .22);
  background: transparent;
  color: var(--paper);
}

body.woocommerce-checkout:not(.woocommerce-order-received) #order_review table.shop_table th,
body.woocommerce-checkout:not(.woocommerce-order-received) #order_review table.shop_table td {
  padding: 16px 12px;
  border-color: rgba(242, 239, 230, .18);
  background: transparent;
  color: var(--paper);
}

body.woocommerce-checkout:not(.woocommerce-order-received) #order_review table.shop_table th {
  font-size: 8px;
  letter-spacing: .12em;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #order_review .product-name {
  font-weight: 800;
  line-height: 1.45;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #order_review .product-quantity {
  color: var(--acid);
}

body.woocommerce-checkout:not(.woocommerce-order-received) #order_review .order-total th,
body.woocommerce-checkout:not(.woocommerce-order-received) #order_review .order-total td {
  border-top: 1px solid var(--acid);
}

body.woocommerce-checkout:not(.woocommerce-order-received) #order_review .order-total .amount {
  color: var(--acid);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 25px;
  font-weight: 500;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #payment {
  border: 1px solid rgba(242, 239, 230, .22);
  border-radius: 0;
  background: transparent;
  color: var(--paper);
}

body.woocommerce-checkout:not(.woocommerce-order-received) #payment ul.payment_methods {
  padding: 20px;
  border-bottom: 1px solid rgba(242, 239, 230, .18);
}

body.woocommerce-checkout:not(.woocommerce-order-received) #payment ul.payment_methods li {
  color: var(--paper);
  font-size: 12px;
  font-weight: 800;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #payment input[type="radio"] {
  accent-color: var(--acid);
}

body.woocommerce-checkout:not(.woocommerce-order-received) #payment div.payment_box {
  background: rgba(242, 239, 230, .08);
  color: rgba(242, 239, 230, .7);
  font-size: 11px;
  line-height: 1.6;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #payment div.payment_box::before {
  border-bottom-color: rgba(242, 239, 230, .08);
}

body.woocommerce-checkout:not(.woocommerce-order-received) #payment .place-order {
  margin: 0;
  padding: 20px;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #payment .woocommerce-privacy-policy-text,
body.woocommerce-checkout:not(.woocommerce-order-received) #payment .woocommerce-terms-and-conditions-wrapper {
  color: rgba(242, 239, 230, .58);
  font-size: 10px;
  line-height: 1.55;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #payment a {
  color: var(--acid);
}

body.woocommerce-checkout:not(.woocommerce-order-received) #place_order {
  width: 100%;
  min-height: 66px;
  margin-top: 16px;
  padding: 0 24px;
  border: 1px solid var(--acid);
  background: var(--acid);
  color: var(--ink);
  font-size: 18px;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #place_order:hover,
body.woocommerce-checkout:not(.woocommerce-order-received) #place_order:focus-visible {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

@media (max-width: 980px) {
  body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "notices"
      "details"
      "review-title"
      "review";
    gap: 24px 0;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) #order_review_heading {
    margin-bottom: -24px;
  }
}

@media (max-width: 700px) {
  body.woocommerce-checkout:not(.woocommerce-order-received) .tb-commerce-content,
  body.woocommerce-checkout:not(.woocommerce-order-received) .elementor .tb-reference-section.tb-commerce-content {
    --padding-top: 48px;
    --padding-right: 18px;
    --padding-bottom: 78px;
    --padding-left: 18px;
    padding: 48px 18px 78px !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) #customer_details .col-1 {
    padding: 27px 20px;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) #order_review_heading {
    padding: 27px 20px 15px;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) #order_review {
    padding: 0 20px 20px;
  }

  .woocommerce-cart table.cart .quantity.tb-quantity-stepper {
    grid-template-columns: 40px 50px 40px;
  }

  .woocommerce-cart table.cart .quantity.tb-quantity-stepper .qty {
    width: 50px;
  }
}

/* --------------------------------------------------------------------------
   V4.2.4 — Typography calibration
   Smaller card titles and outlined headings on Home, Shop and Journal.
   -------------------------------------------------------------------------- */

.product-info h3 {
  max-width: 22ch;
  font-size: clamp(17px, 1.3vw, 22px);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.tb-reference-shop .toublab-product-card h3,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: clamp(17px, 1.4vw, 23px);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.blog-card h3,
.toublab-blog-card h3 {
  font-size: clamp(20px, 1.75vw, 28px);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.featured-article h2 {
  font-size: clamp(36px, 3.8vw, 58px);
  line-height: .98;
  overflow-wrap: anywhere;
}

.section-heading h2 {
  font-size: clamp(48px, 5.5vw, 84px);
  line-height: .88;
}

.section-heading.compact h2 {
  font-size: clamp(42px, 4.3vw, 66px);
}

.section-heading h2 em,
.about-copy h2 em,
.newsletter-section h2 em {
  -webkit-text-stroke-width: 1px;
}

.inner-hero h1 {
  max-width: 980px;
  font-size: clamp(60px, 7.4vw, 112px);
  line-height: .86;
}

.contact-hero h1 em {
  -webkit-text-stroke-width: 1.25px;
}

@media (max-width: 680px) {
  .product-info h3,
  .tb-reference-shop .toublab-product-card h3,
  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    max-width: none;
    font-size: 20px;
  }

  .blog-card h3,
  .toublab-blog-card h3 {
    font-size: 22px;
  }

  .featured-article h2 {
    font-size: 36px;
  }

  .section-heading h2 {
    font-size: 46px;
  }

  .section-heading.compact h2 {
    font-size: 42px;
  }

  .section-heading h2 em,
  .about-copy h2 em,
  .newsletter-section h2 em {
    -webkit-text-stroke-width: .8px;
  }

  .inner-hero h1 {
    font-size: 56px;
  }

  .contact-hero h1 em {
    -webkit-text-stroke-width: 1px;
  }
}
