:root {
  --white: #ffffff;
  --black: #000000;
  --bone: #e7ecea;
  --soft-gray: #e7ecea;
  --light-gray: #dce2df;
  --mid-gray: #8f8f8f;
  --line: rgba(0, 0, 0, 0.1);
  --line-dark: rgba(255, 255, 255, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--bone);
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  text-rendering: geometricPrecision;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  overflow: hidden;
  background: var(--bone);
}

.announcement-bar {
  position: relative;
  z-index: 30;
  padding: 6px 12px;
  color: var(--white);
  background: var(--black);
  font-size: 12px;
  line-height: 1.33;
  text-align: center;
  text-transform: lowercase;
}

.site-header {
  position: fixed;
  z-index: 34;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 25px;
  padding: 12px 20px;
  color: var(--white);
  background: var(--black);
  border-bottom: 1px solid var(--white);
  mix-blend-mode: normal;
}

.brand-mark {
  width: 124px;
}

.brand-mark img,
.site-footer img {
  width: 100%;
}

.site-nav {
  display: flex;
  gap: clamp(18px, 3vw, 42px);
  font-family: inherit;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: lowercase;
}

.site-nav a {
  opacity: 0.82;
  transition: opacity 250ms ease;
}

.site-nav a:hover {
  opacity: 1;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: var(--black);
}

.language-switcher button {
  min-width: 34px;
  min-height: 32px;
  color: var(--white);
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  font-family: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.language-switcher button:last-child {
  border-right: 0;
}

.language-switcher button.is-active {
  color: var(--black);
  background: var(--white);
}

.cart-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: var(--black);
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: lowercase;
  cursor: pointer;
}

.cart-count {
  display: inline-grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  color: var(--black);
  background: var(--white);
  border-radius: 0;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
}

html[dir="rtl"] body {
  font-family: "Space Mono", "Tahoma", Arial, sans-serif;
}

html[dir="rtl"] .site-header,
html[dir="rtl"] .hero,
html[dir="rtl"] .section-heading,
html[dir="rtl"] .philosophy,
html[dir="rtl"] .about,
html[dir="rtl"] .checkout-preview,
html[dir="rtl"] .cart-head,
html[dir="rtl"] .product-meta,
html[dir="rtl"] .cart-summary div,
html[dir="rtl"] .qty-row {
  direction: rtl;
}

html[dir="rtl"] .hero-content,
html[dir="rtl"] .editorial-copy,
html[dir="rtl"] .about-copy,
html[dir="rtl"] .checkout-preview,
html[dir="rtl"] .cart-drawer {
  text-align: right;
}

html[dir="rtl"] .cart-drawer {
  right: auto;
  left: 0;
  border-left: 0;
  border-right: 1px solid var(--line);
  transform: translateX(-100%);
}

html[dir="rtl"] .cart-open .cart-drawer {
  transform: translateX(0);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.18);
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 1px;
  margin: 5px auto;
  background: var(--white);
}

.section-dark {
  color: var(--white);
  background: var(--black);
}

.section-light {
  background: var(--bone);
}

.section-gray {
  background: var(--soft-gray);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: 120px 20px 84px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.04) brightness(0.72);
  transform: scale(1.01);
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.22) 58%, rgba(0, 0, 0, 0.48));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.hero-content::before {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  margin-bottom: 28px;
  background: rgba(255, 255, 255, 0.72);
}

.eyebrow {
  margin: 0 0 18px;
  color: currentColor;
  font-family: inherit;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: uppercase;
  opacity: 0.62;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 26px;
  font-family: inherit;
  font-size: clamp(42px, 7vw, 96px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-transform: lowercase;
}

.hero-subtitle {
  max-width: 520px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.7;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid currentColor;
  font-family: inherit;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: lowercase;
  transition: transform 350ms var(--ease), background 350ms var(--ease), color 350ms var(--ease);
}

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

.hero-product-card {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 6px;
  border: 1px solid var(--line-dark);
  background: rgba(0, 0, 0, 0.62);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.hero-product-card::before,
.hero-product-card::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  border-color: rgba(255, 255, 255, 0.62);
  border-style: solid;
}

.hero-product-card::before {
  top: -1px;
  left: -1px;
  border-width: 1px 0 0 1px;
}

.hero-product-card::after {
  right: -1px;
  bottom: -1px;
  border-width: 0 1px 1px 0;
}

.hero-product-card img {
  width: 100%;
  aspect-ratio: 4 / 3.5;
  object-fit: cover;
  object-position: center;
  padding: 0;
  background: var(--bone);
  filter: none;
}

.product-code {
  display: flex;
  justify-content: space-between;
  padding-bottom: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 0;
}

.product-code.bottom {
  padding: 14px 0 0;
}

.button-light {
  color: var(--black);
  background: var(--white);
}

.button-light:hover {
  color: var(--white);
  background: transparent;
}

.button-dark {
  color: var(--white);
  background: var(--black);
}

.button-dark:hover {
  color: var(--black);
  background: transparent;
}

.hero-footer {
  position: absolute;
  z-index: 2;
  left: clamp(20px, 7vw, 96px);
  right: clamp(20px, 7vw, 96px);
  bottom: 28px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.62);
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  padding: 10px 20px;
  color: rgba(0, 0, 0, 0.72);
  background: var(--bone);
  border-bottom: 1px solid var(--black);
  font-size: 11px;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.featured,
.best-seller,
.instagram {
  padding: clamp(72px, 10vw, 120px) 20px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(34px, 6vw, 72px);
}

.section-heading h2,
.editorial-copy h2,
.about-copy h2 {
  max-width: 820px;
  margin: 0;
  font-family: inherit;
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.08;
  text-transform: lowercase;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.91fr 0.91fr;
  gap: 16px;
}

.showcase-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--black);
  background: var(--bone);
}

.showcase-card.large {
  min-height: 650px;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
  filter: none;
  transition: transform 900ms var(--ease), filter 900ms var(--ease);
}

.showcase-card.product-display img {
  background: var(--bone);
}

.showcase-card.tee-display img {
  object-fit: contain;
  padding: 6px;
}

.showcase-card:hover img,
.product-card:hover img,
.gallery-grid img:hover {
  transform: scale(1.035);
  filter: contrast(1.04);
}

.campaign-story {
  padding: clamp(72px, 10vw, 126px) 20px;
  border-top: 1px solid var(--black);
}

.campaign-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 16px;
}

.campaign-plate {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border: 1px solid var(--black);
  background: var(--black);
}

.campaign-plate.campaign-wide {
  min-height: 760px;
}

.campaign-plate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campaign-plate div {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 12px;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--white);
}

.campaign-plate span {
  display: block;
  margin-bottom: 10px;
  opacity: 0.7;
}

.campaign-plate p {
  margin: 0;
  line-height: 1.45;
}

.video-section {
  padding: clamp(72px, 10vw, 128px) 20px;
  border-top: 1px solid var(--black);
}

.video-frame {
  position: relative;
  max-width: 1180px;
  margin-left: auto;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--black);
  background: var(--black);
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.video-frame iframe {
  position: absolute;
  inset: -2%;
  width: 104%;
  height: 104%;
  border: 0;
}

.video-note {
  max-width: 1180px;
  margin: 14px 0 0 auto;
  color: rgba(0, 0, 0, 0.58);
  font-size: 12px;
  line-height: 1.55;
  text-transform: lowercase;
}

.showcase-card div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 12px;
  color: var(--white);
  border: 1px solid var(--white);
  background: var(--black);
  backdrop-filter: none;
}

.showcase-card p,
.product-meta span {
  margin-bottom: 8px;
  color: inherit;
  font-family: inherit;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: lowercase;
  opacity: 0.62;
}

.showcase-card h3,
.product-meta h3 {
  margin-bottom: 0;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: lowercase;
}

.philosophy {
  display: grid;
  grid-template-columns: minmax(160px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(30px, 8vw, 120px);
  padding: clamp(72px, 10vw, 120px) 20px;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  background: var(--bone);
}

.editorial-number {
  color: var(--mid-gray);
  font-family: inherit;
  font-size: clamp(24px, 6vw, 72px);
  letter-spacing: 0.02em;
  line-height: 0.9;
  text-transform: uppercase;
}

.editorial-copy p:not(.eyebrow),
.about-copy p {
  max-width: 680px;
  margin: 28px 0 0;
  color: #2e2e2e;
  font-size: clamp(16px, 1.55vw, 21px);
  line-height: 1.75;
}

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

.product-card {
  position: relative;
  padding: 6px;
  border: 1px solid var(--black);
  background: var(--bone);
  cursor: pointer;
  transition: border-color 350ms var(--ease), transform 350ms var(--ease), box-shadow 350ms var(--ease);
}

.product-card:hover {
  border-color: var(--black);
  transform: none;
  box-shadow: none;
}

.product-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bone);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 6px;
  filter: none;
  transition: transform 800ms var(--ease), filter 800ms var(--ease);
}

.image-dark img {
  object-position: center;
}

.image-contain img {
  object-fit: contain;
  padding: 20px;
  background: var(--white);
}

.crop-reverse img {
  object-position: 74% center;
}

.crop-tee img {
  object-fit: contain;
  object-position: center;
}

.product-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 12px 18px;
  min-height: 112px;
  padding: 16px 14px 14px;
  border-top: 1px solid var(--black);
}

.product-meta p {
  margin: 12px 0 0;
  color: #666;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.add-to-cart {
  flex: 0 0 auto;
  min-width: 78px;
  min-height: 32px;
  padding: 0 12px;
  color: var(--white);
  border: 1px solid var(--black);
  background: var(--black);
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: lowercase;
  cursor: pointer;
  transition: background 250ms var(--ease), color 250ms var(--ease), transform 250ms var(--ease);
}

.add-to-cart:hover {
  color: var(--black);
  background: transparent;
  transform: translateY(-1px);
}

.add-to-cart.muted,
.add-to-cart:disabled {
  color: #777;
  border-color: var(--line);
  background: var(--soft-gray);
  cursor: default;
}

.quote {
  display: grid;
  position: relative;
  min-height: 58vh;
  place-items: center;
  padding: 80px 20px;
  text-align: center;
}

.quote::before,
.quote::after {
  content: "";
  position: absolute;
  left: clamp(20px, 7vw, 96px);
  right: clamp(20px, 7vw, 96px);
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.quote::before {
  top: 48px;
}

.quote::after {
  bottom: 48px;
}

.quote-text {
  margin: 0;
  font-family: inherit;
  font-size: clamp(28px, 7vw, 84px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-transform: lowercase;
}

.about {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 8vw, 120px);
  align-items: center;
  padding: clamp(76px, 12vw, 150px) clamp(20px, 7vw, 110px);
}

.about-image {
  min-height: 580px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--black);
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
  padding: 0;
  filter: none;
}

.about-copy .button {
  margin-top: 34px;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(18px, 5vw, 72px);
  padding: 72px 20px;
  border-top: 1px solid var(--black);
  background: var(--bone);
}

.pdp-gallery {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 16px;
  align-self: start;
}

.pdp-thumbs {
  display: grid;
  gap: 12px;
  align-content: start;
}

.pdp-thumb {
  width: 72px;
  height: 88px;
  padding: 0;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
}

.pdp-thumb.is-active {
  border-color: var(--black);
}

.pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--bone);
}

.pdp-main {
  min-height: 720px;
  background: var(--bone);
}

.pdp-main img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: contain;
  background: var(--bone);
}

.pdp-info {
  align-self: start;
  max-width: 520px;
}

.pdp-info h2 {
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.pdp-category,
.pdp-price,
.installment-note {
  margin-bottom: 18px;
  line-height: 1.5;
}

.pdp-variant-row {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}

.pdp-variant-row img {
  width: 64px;
  height: 78px;
  object-fit: cover;
  border: 1px solid var(--black);
  background: var(--bone);
}

.size-block {
  margin-bottom: 20px;
}

.size-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.size-head a {
  text-decoration: underline;
}

.size-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.size-helper {
  display: grid;
  gap: 4px;
  margin-top: 12px;
  color: rgba(0, 0, 0, 0.62);
  font-size: 11px;
  line-height: 1.45;
}

.size-helper p {
  margin: 0;
}

.size-grid button,
.pdp-add,
.favorite-button {
  min-height: 42px;
  border: 1px solid var(--black);
  border-radius: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.size-grid button.is-active,
.size-grid button:hover {
  color: var(--white);
  background: var(--black);
}

.pdp-add {
  width: 100%;
  margin-bottom: 12px;
  color: var(--white);
  background: var(--black);
}

.favorite-button {
  width: 100%;
  margin-bottom: 36px;
}

.pdp-copy {
  margin-bottom: 24px;
  line-height: 1.5;
}

.product-specs {
  display: grid;
  gap: 0;
  margin: 22px 0;
  border-top: 1px solid var(--black);
}

.product-specs div {
  display: grid;
  grid-template-columns: minmax(110px, 0.4fr) minmax(0, 1fr);
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--black);
}

.product-specs dt,
.product-specs dd {
  margin: 0;
  line-height: 1.45;
}

.product-specs dt {
  color: rgba(0, 0, 0, 0.58);
}

.pdp-copy ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.pdp-info details {
  border-top: 1px solid var(--black);
  padding: 18px 0;
}

.pdp-info details:last-child {
  border-bottom: 1px solid var(--black);
}

.pdp-info summary {
  cursor: pointer;
}

.pdp-info details p {
  margin: 12px 0 0;
  line-height: 1.5;
}

.checkout-section {
  padding: clamp(76px, 10vw, 130px) clamp(20px, 7vw, 110px);
  border-top: 1px solid var(--line);
}

.social-proof {
  margin: 0;
  padding: 18px 20px 0;
  color: rgba(0, 0, 0, 0.58);
  background: var(--bone);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.checkout-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(24px, 6vw, 80px);
  align-items: center;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--black);
  background: var(--bone);
}

.checkout-kicker {
  margin: 0 0 14px;
  color: #747474;
  font-family: inherit;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: lowercase;
}

.checkout-preview h3 {
  margin-bottom: 14px;
  font-family: inherit;
  font-size: clamp(16px, 2.4vw, 28px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: lowercase;
}

.checkout-preview p:last-child {
  max-width: 520px;
  margin-bottom: 0;
  color: #555;
  line-height: 1.7;
}

.method-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.method-strip span {
  min-height: 78px;
  display: grid;
  place-items: center;
  border: 1px solid var(--black);
  background: var(--bone);
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: lowercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.85fr 0.9fr 0.9fr;
  gap: 16px;
  align-items: stretch;
}

.gallery-grid img {
  width: 100%;
  min-height: 340px;
  height: 38vw;
  max-height: 640px;
  object-fit: cover;
  padding: 0;
  border: 1px solid var(--black);
  filter: none;
  background: var(--black);
  transition: transform 800ms var(--ease), filter 800ms var(--ease);
}

.gallery-grid img:nth-child(2),
.gallery-grid img:nth-child(4) {
  margin-top: 56px;
}

.instagram-cta {
  max-width: 520px;
  margin: 14px 0 0;
  color: rgba(0, 0, 0, 0.58);
  font-size: 12px;
  line-height: 1.5;
}

.faq-section {
  padding: clamp(72px, 10vw, 120px) 20px;
  border-top: 1px solid var(--black);
}

.faq-list {
  max-width: 920px;
  margin-left: auto;
}

.faq-list details {
  border-top: 1px solid var(--black);
  padding: 18px 0;
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--black);
}

.faq-list summary {
  cursor: pointer;
  line-height: 1.5;
}

.faq-list p {
  max-width: 680px;
  margin: 12px 0 0;
  color: rgba(0, 0, 0, 0.66);
  line-height: 1.6;
}

.site-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  padding: 54px clamp(20px, 6vw, 86px);
  color: var(--white);
  background: var(--black);
}

.site-footer div {
  max-width: 340px;
}

.site-footer img {
  width: 160px;
  margin-bottom: 24px;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: lowercase;
}

.whatsapp-float {
  position: fixed;
  z-index: 33;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--white);
  font-size: 12px;
  line-height: 1;
  text-transform: lowercase;
  transition: transform 250ms var(--ease), background 250ms var(--ease), color 250ms var(--ease);
}

.whatsapp-float:hover {
  color: var(--black);
  background: var(--bone);
  border-color: var(--black);
  transform: translateY(-2px);
}

.cart-overlay {
  position: fixed;
  z-index: 35;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;
}

.cart-drawer {
  position: fixed;
  z-index: 40;
  top: 0;
  right: 0;
  width: min(100%, 460px);
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 24px;
  color: var(--black);
  border-left: 1px solid var(--line);
  background: var(--bone);
  box-shadow: none;
  transform: translateX(100%);
  transition: transform 360ms var(--ease);
  backdrop-filter: blur(18px);
}

.cart-open .cart-overlay {
  opacity: 1;
  pointer-events: auto;
}

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

.cart-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.cart-head h2 {
  margin: 0;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: lowercase;
}

.cart-close {
  align-self: start;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: lowercase;
  cursor: pointer;
}

.cart-items {
  display: grid;
  gap: 12px;
  padding: 18px 0;
  overflow: auto;
}

.cart-line {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 14px;
  padding: 10px;
  border: 1px solid var(--black);
  background: var(--bone);
}

.cart-line img {
  width: 82px;
  height: 92px;
  object-fit: contain;
  background: var(--soft-gray);
  filter: grayscale(1);
}

.cart-line h3 {
  margin: 0 0 6px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: lowercase;
}

.cart-line p {
  margin: 0 0 12px;
  color: #666;
  font-size: 13px;
  font-weight: 700;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-row button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}

.remove-item {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: #777;
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
}

.cart-empty {
  padding: 28px 0;
  color: #555;
  border-bottom: 1px solid var(--line);
}

.cart-empty p {
  margin-bottom: 8px;
  font-weight: 700;
}

.cart-summary {
  display: grid;
  gap: 10px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.cart-summary div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.cart-summary .total {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 18px;
}

.payment-form {
  display: grid;
  gap: 10px;
  padding-top: 18px;
}

.payment-form label {
  color: #555;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: lowercase;
}

.payment-form input,
.payment-form select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: var(--white);
  font: inherit;
}

.checkout-button {
  min-height: 50px;
  margin-top: 8px;
  color: var(--white);
  border: 1px solid var(--black);
  background: var(--black);
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: lowercase;
  cursor: pointer;
}

.payment-note,
.checkout-message {
  margin: 0;
  color: #777;
  font-size: 12px;
}

.checkout-message {
  color: var(--black);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}

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

@media (max-width: 900px) {
  .site-header {
    padding: 18px 20px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 31;
    top: 92px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    padding: 0;
    color: var(--black);
    background: var(--bone);
    border: 1px solid var(--black);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 250ms ease, transform 250ms ease;
    mix-blend-mode: normal;
    backdrop-filter: none;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    display: block;
    padding: 16px 18px;
    color: var(--black);
    background: var(--bone);
    border-bottom: 1px solid var(--black);
    opacity: 1;
  }

  .site-nav a:hover {
    color: var(--white);
    background: var(--black);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 118px;
    padding-bottom: 120px;
  }

  .hero-product-card {
    max-width: 520px;
    margin-top: 14px;
  }

  .hero-footer,
  .section-heading {
    display: block;
  }

  .hero-footer span + span {
    display: none;
  }

  .showcase-grid,
  .philosophy,
  .product-grid,
  .about,
  .product-detail,
  .campaign-layout,
  .gallery-grid,
  .checkout-preview,
  .method-strip {
    grid-template-columns: 1fr;
  }

  .campaign-plate,
  .campaign-plate.campaign-wide {
    min-height: 620px;
  }

  .video-frame,
  .video-note {
    max-width: none;
  }

  .pdp-gallery {
    grid-template-columns: 1fr;
  }

  .pdp-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    order: 2;
  }

  .pdp-thumb {
    width: 100%;
    height: 92px;
  }

  .pdp-main,
  .pdp-main img {
    min-height: 520px;
  }

  .pdp-info {
    max-width: none;
  }

  .showcase-card,
  .showcase-card.large {
    min-height: 520px;
  }

  .product-meta {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 132px;
    gap: 14px;
  }

  .product-card {
    padding: 8px;
  }

  .about-image,
  .about-image img {
    min-height: 420px;
  }

  .gallery-grid img,
  .gallery-grid img:nth-child(2),
  .gallery-grid img:nth-child(4) {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
    margin-top: 0;
  }

  .site-footer,
  .site-footer nav {
    display: grid;
  }

  .faq-list {
    max-width: none;
    margin-left: 0;
  }

  .cart-trigger {
    margin-left: auto;
  }

  .language-switcher button {
    min-width: 30px;
  }
}

@media (max-width: 560px) {
  .brand-mark {
    width: 104px;
  }

  h1 {
    font-size: clamp(66px, 19vw, 104px);
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .featured,
  .best-seller,
  .instagram,
  .about,
  .philosophy {
    padding-left: 18px;
    padding-right: 18px;
  }

  .showcase-card div {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 18px;
  }

  .showcase-card,
  .showcase-card.large {
    min-height: 430px;
  }

  .product-detail {
    padding: 54px 18px;
  }

  .campaign-story {
    padding-left: 18px;
    padding-right: 18px;
  }

  .campaign-plate,
  .campaign-plate.campaign-wide {
    min-height: 440px;
  }

  .video-section {
    padding: 54px 18px;
  }

  .video-frame {
    aspect-ratio: 9 / 16;
  }

  .video-frame::before {
    inset: 8px;
  }

  .pdp-main,
  .pdp-main img {
    min-height: 420px;
  }

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

  .hero-product-card {
    padding: 12px;
  }

  .product-code {
    font-size: 11px;
  }

  .product-image img,
  .gallery-grid img,
  .showcase-card img {
    padding: 12px;
  }

  .cart-drawer {
    padding: 18px;
  }

  .cart-head h2 {
    font-size: 38px;
  }

  .site-header {
    gap: 8px;
  }

  .language-switcher button {
    min-width: 28px;
    min-height: 30px;
    font-size: 10px;
  }

  .cart-trigger {
    min-height: 32px;
    padding: 0 9px;
    font-size: 12px;
  }

  .trust-strip {
    justify-content: flex-start;
    text-align: left;
  }

  .product-specs div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
  }
}
