:root {
  --black: #050505;
  --ink: #171717;
  --muted: #6d6d6d;
  --line: #e6e6e6;
  --soft: #f7f7f7;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

body.locked {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

.app-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  max-width: 1200px;
  height: 74px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
  white-space: nowrap;
}

.brand-lockup img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: contrast(1.12);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link,
.icon-btn {
  min-height: 42px;
  border: 0;
  background: transparent;
  color: var(--black);
  cursor: pointer;
}

.nav-link {
  padding: 0 14px;
  color: var(--muted);
  font-weight: 650;
  transition: color 180ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--black);
}

.lang-toggle {
  border: 1px solid var(--line);
  background: var(--soft);
  color: var(--black);
  font-weight: 900;
}

html[dir="rtl"] body {
  direction: rtl;
}

html[dir="rtl"] .nav,
html[dir="rtl"] .hero,
html[dir="rtl"] .section-head,
html[dir="rtl"] .product-line,
html[dir="rtl"] .cart-item,
html[dir="rtl"] .summary-row {
  direction: rtl;
}

html[dir="rtl"] .notification-dropdown {
  right: auto;
  left: 0;
  text-align: right;
}

.cart-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.notification-wrap {
  position: relative;
}

.notification-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 45;
  width: min(360px, 86vw);
  max-height: min(520px, 78vh);
  overflow: auto;
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  animation: pageIn 180ms ease both;
}

.notification-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.notification-item > div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.notification-item:last-child {
  border-bottom: 0;
}

.notification-item p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.notification-item.unread strong::after {
  margin-left: 8px;
  content: "NEW";
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.notification-toast-stack {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 88;
  display: grid;
  gap: 10px;
  width: min(420px, calc(100vw - 44px));
  pointer-events: none;
}

.notification-toast {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid #202020;
  background: #050505;
  color: #fff;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  animation: pageIn 180ms ease both;
  pointer-events: auto;
}

.notification-toast img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.notification-toast p {
  margin: 4px 0 0;
  color: #d8d8d8;
  font-size: 0.88rem;
  line-height: 1.45;
}

.invert-text {
  color: #fff;
}

.consent-banner,
.notification-permission {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 85;
  width: min(520px, calc(100vw - 44px));
  border: 1px solid #202020;
  background: #050505;
  color: #fff;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.notification-permission {
  bottom: 132px;
  background: #fff;
  color: #050505;
  border-color: var(--line);
}

.consent-banner > div:first-child,
.notification-permission > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.consent-banner img,
.notification-permission img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex: 0 0 auto;
}

.consent-banner p,
.notification-permission p {
  margin: 4px 0 0;
  color: #d0d0d0;
  font-size: 0.86rem;
  line-height: 1.45;
}

.notification-permission p {
  color: var(--muted);
}

.consent-actions {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}

.btn.invert {
  background: #fff;
  color: #050505;
  border-color: #fff;
}

.btn.ghost.invert {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.store-announcements {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.store-announcement {
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: var(--black);
  color: var(--white);
  text-align: left;
}

.store-announcement div {
  max-width: 980px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 14px;
}

.store-announcement strong {
  font-weight: 900;
}

.store-announcement span {
  color: #e8e8e8;
}

.store-announcement.sale {
  background: #5f1111;
}

.store-announcement.success {
  background: #123d25;
}

.store-announcement.warning {
  background: #4a3a08;
}

.cart-count {
  min-width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 42px;
  border: 1px solid var(--line);
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  width: 18px;
  height: 2px;
  display: block;
  background: var(--black);
  content: "";
}

.menu-lines::before {
  transform: translateY(-6px);
}

.menu-lines::after {
  transform: translateY(4px);
}

.page {
  flex: 1;
  animation: pageIn 360ms ease both;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 78px 24px;
}

.section.tight {
  padding-top: 38px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 8vw, 7.9rem);
  line-height: 0.91;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4.25rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.lead {
  max-width: 610px;
  color: #424242;
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
}

.hero {
  max-width: none;
  min-height: calc(100vh - 74px);
  padding: 0;
  display: grid;
  grid-template-columns: minmax(24px, 1fr) minmax(0, 576px) minmax(0, 576px) minmax(24px, 1fr);
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  grid-column: 2;
  padding: 72px 24px 72px 0;
}

.hero-media {
  position: relative;
  grid-column: 3 / 5;
  align-self: stretch;
  min-height: 540px;
  background: var(--black);
  overflow: hidden;
}

.hero-media::before,
.product-image::before,
.cart-thumb::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  background:
    url("/shared/brand/weka-icon-black.png") center / min(34%, 120px) no-repeat,
    var(--soft);
  opacity: 0.32;
  content: "";
  animation: logoPulse 900ms ease-in-out infinite alternate;
}

.hero-media::before {
  display: none;
}

.hero-media::after {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: min(22%, 92px);
  aspect-ratio: 1;
  background: url("/shared/brand/weka-icon-white.png") center / contain no-repeat;
  opacity: 0;
  content: "";
  pointer-events: none;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.34));
  animation: heroTransitionLogo var(--hero-duration, 8s) linear infinite;
}

.product-image::after {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 4;
  width: 70px;
  height: 70px;
  background: url("/shared/brand/weka-icon-white.png") center / contain no-repeat;
  opacity: 0.36;
  content: "";
  pointer-events: none;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
  mix-blend-mode: screen;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media img.monochrome {
  filter: grayscale(1) contrast(1.04);
}

.hero-media .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: opacity;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  min-height: 50px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

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

.btn.secondary {
  background: var(--white);
  color: var(--black);
}

.btn.ghost {
  border-color: var(--line);
  background: var(--white);
  color: var(--black);
}

.btn.full {
  width: 100%;
}

.add-to-cart {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
  color: var(--white);
}

.add-to-cart .add-label,
.add-to-cart .add-done {
  position: relative;
  z-index: 2;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.add-to-cart .add-done {
  position: absolute;
  opacity: 0;
  transform: translateY(12px);
}

.cart-svg {
  position: absolute;
  z-index: 1;
  left: 50%;
  pointer-events: none;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.cart-shape {
  width: 68px;
  height: 44px;
  bottom: -32px;
  margin-left: -34px;
  opacity: 0;
  stroke: var(--white);
  filter: drop-shadow(0 8px 18px rgba(255, 255, 255, 0.12));
}

.shirt-shape {
  width: 42px;
  height: 32px;
  top: -32px;
  margin-left: -21px;
  opacity: 0;
  stroke: var(--black);
  stroke-width: 2.2;
}

.shirt-fill {
  fill: var(--white);
}

.shirt-stroke {
  fill: none;
}

.add-to-cart.is-adding .add-label {
  opacity: 0;
  transform: translateY(-14px);
}

.add-to-cart.is-adding .add-done {
  animation: addDone 980ms ease forwards;
}

.add-to-cart.is-adding .cart-shape {
  animation: cartRide 840ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.add-to-cart.is-adding .shirt-shape {
  animation: shirtDrop 840ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.grid {
  display: grid;
  gap: 18px;
}

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

.collection-card {
  min-height: 270px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  color: var(--black);
  cursor: pointer;
  font: inherit;
  text-align: left;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 245, 245, 0.64)),
    var(--collection-image);
  background-size: cover;
  background-position: center;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.collection-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.collection-card span,
.product-meta,
.small {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.product-card {
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: #cfcfcf;
  box-shadow: var(--shadow);
}

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

.product-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.product-image .product-thumb-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.product-image .product-thumb-static {
  position: relative;
  opacity: 1;
}

.product-image img.monochrome {
  filter: grayscale(1);
}

.product-card:hover .product-image img {
  transform: scale(1.045);
}

.product-card:hover .product-image::after {
  opacity: 0.5;
  transform: translateY(-2px);
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 850;
}

.wishlist-btn {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--black);
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
}

.wishlist-btn.active {
  background: var(--black);
  color: var(--white);
}

.pill {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--line);
  background: var(--soft);
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 850;
}

.product-watermark {
  display: none;
}

.pill.danger {
  color: #7f1d1d;
}

.product-info {
  position: relative;
  padding: 16px;
}

.product-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.price {
  font-weight: 850;
  white-space: nowrap;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
}

.rating {
  color: var(--black);
  font-size: 0.88rem;
  letter-spacing: 0;
  white-space: nowrap;
}

.review-list,
.review-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.review-card {
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--soft);
}

.review-image {
  display: block;
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  margin: 10px 0;
  border: 1px solid var(--line);
}

.review-image.blurred {
  filter: blur(12px) grayscale(1);
}

.order-timeline {
  margin: 14px 0;
  border: 1px solid var(--line);
}

.timeline-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
}

.timeline-row:last-child {
  border-bottom: 0;
}

.timeline-row span {
  color: var(--muted);
  font-size: 12px;
}

.support-reply {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
}

.customer-reply {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--soft);
}

.support-reply p,
.customer-reply p {
  margin: 8px 0 0;
  white-space: pre-line;
}

.support-reply p {
  color: #d8d8d8;
}

.ticket-thread,
.ticket-reply-form {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.verified-mark {
  display: inline-grid;
  width: 18px;
  height: 18px;
  margin-left: 6px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 900;
}

.old-price {
  margin-right: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  text-decoration: line-through;
}

.discount-mark {
  position: absolute;
  top: -40px;
  right: 12px;
  z-index: 5;
  min-height: 28px;
  padding: 0 10px;
  display: inline-grid;
  place-items: center;
  background: var(--black);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 900;
}

.product-quick-add {
  margin-top: 14px;
  min-height: 44px;
}

.toolbar {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, minmax(120px, 0.7fr));
  gap: 12px;
  margin-bottom: 24px;
}

.shop-search {
  min-width: min(260px, 100%);
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  align-items: end;
}

.field,
.select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  color: var(--black);
  padding: 0 14px;
  outline: none;
  transition: border-color 180ms ease;
}

textarea {
  min-height: 130px;
  padding-top: 14px;
  resize: vertical;
}

.field:focus,
.select:focus,
textarea:focus {
  border-color: var(--black);
}

.detail-layout,
.checkout-layout,
.contact-layout,
.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: start;
}

.contact-layout h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1;
}

.contact-layout .lead {
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
}

.detail-gallery {
  display: grid;
  gap: 14px;
}

.detail-gallery .product-image {
  border: 1px solid var(--line);
}

.main-product-image,
.gallery-choice {
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--soft);
  cursor: zoom-in;
  text-align: inherit;
}

.gallery-choice {
  cursor: pointer;
}

.gallery-choice:hover {
  border-color: var(--black);
}

.option-group {
  margin: 28px 0;
}

.option-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 800;
}

.segmented {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  min-width: 46px;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  font-weight: 750;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.chip.active,
.chip:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.swatch {
  width: 36px;
  height: 36px;
  position: relative;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  outline: 2px solid transparent;
  outline-offset: 2px;
  overflow: hidden;
  color: var(--black);
  font-size: 0.62rem;
  font-weight: 900;
}

.swatch.active {
  outline-color: var(--black);
}

.swatch img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swatch span {
  position: relative;
  z-index: 1;
}

.zoom-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  padding: 28px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.86);
  animation: fadeIn 160ms ease both;
}

.return-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 102;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
}

.return-modal {
  width: min(720px, 100%);
  max-height: calc(100vh - 44px);
  overflow: auto;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.return-modal-head {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 16px;
  align-items: start;
  padding: 22px;
  border-bottom: 2px solid var(--black);
}

.return-modal-head img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.return-modal-head h2 {
  margin: 2px 0 4px;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 0.95;
}

.return-modal-head p {
  margin: 0;
  color: var(--muted);
}

.icon-close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--black);
  background: var(--white);
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 900;
}

.return-modal-body {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.return-type-grid,
.return-upload-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.return-type-option {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 14px;
  border: 1px solid var(--line);
  cursor: pointer;
}

.return-type-option:has(input:checked) {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.return-field {
  display: grid;
  gap: 7px;
}

.return-field span,
.return-upload span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.return-field textarea {
  width: 100%;
  min-height: 118px;
  resize: vertical;
  border: 1px solid var(--line);
  padding: 12px;
  font: inherit;
}

.return-upload {
  display: grid;
  gap: 8px;
  min-height: 126px;
  align-content: center;
  padding: 16px;
  border: 1px dashed var(--black);
  background: var(--soft);
}

.return-upload.video {
  grid-column: 1 / -1;
}

.return-upload input {
  width: 100%;
}

.return-upload strong {
  font-size: 0.82rem;
}

.branded-file {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px dashed var(--black);
  background: var(--soft);
  cursor: pointer;
}

.branded-file input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

.branded-file-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  font-weight: 900;
  text-align: center;
}

.branded-file small {
  color: var(--muted);
  font-weight: 800;
  word-break: break-word;
}

.upload-progress {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 6px;
  border: 1px solid var(--line);
  background: var(--soft);
}

.upload-progress[hidden] {
  display: none;
}

.upload-progress span {
  width: 0%;
  height: 10px;
  display: block;
  background: var(--black);
  transition: width 0.2s ease;
}

.upload-progress strong {
  min-width: 112px;
  font-size: 0.78rem;
  text-align: end;
}

.return-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.zoom-backdrop img {
  max-width: min(1180px, 94vw);
  max-height: 88vh;
  object-fit: contain;
  background: var(--black);
}

.zoom-close {
  position: fixed;
  top: 18px;
  right: 18px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: var(--black);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.quantity {
  width: 132px;
  min-height: 46px;
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  border: 1px solid var(--line);
}

.quantity button {
  border: 0;
  background: var(--white);
  cursor: pointer;
  font-weight: 900;
}

.quantity span {
  display: grid;
  place-items: center;
  border-inline: 1px solid var(--line);
  font-weight: 800;
}

.panel {
  border: 1px solid var(--line);
  padding: 24px;
  background: var(--white);
}

.panel h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.policy-title {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 0.98;
}

.policy-hero .lead {
  max-width: 860px;
}

.policy-hero + .grid .panel h2 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.08;
}

.policy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.policy-accept-panel {
  max-width: 760px;
  margin-top: 22px;
}

.policy-accept-panel h2 {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.04;
}

.policy-accept-panel .lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
}

.policy-version {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  padding: 8px 10px;
  background: var(--black);
  color: var(--white);
  font-size: 0.82rem;
}

.policy-accept-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.policy-gate-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(10px);
}

.policy-gate-modal {
  width: min(760px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  background: var(--white);
  border: 1px solid var(--black);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

.policy-gate-modal > img {
  width: 72px;
  display: block;
  margin: 24px auto 0;
}

.policy-gate-modal .policy-accept-panel {
  border: 0;
  margin: 0;
}

.policy-accept-panel.inline {
  margin-top: 24px;
  border-color: var(--black);
}

.terms-line {
  align-items: flex-start;
  line-height: 1.45;
}

@media print {
  .site-header,
  .cta-band,
  .scroll-top,
  .policy-actions {
    display: none !important;
  }
}

.cart-item {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item:first-child {
  padding-top: 0;
}

.cart-thumb {
  position: relative;
  aspect-ratio: 1;
  background: var(--soft);
  overflow: hidden;
}

.cart-thumb img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-thumb img.monochrome {
  filter: grayscale(1);
}

.remove {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  text-decoration: underline;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.summary-row.total {
  border-bottom: 0;
  font-size: 1.3rem;
  font-weight: 900;
}

.summary-row.discount {
  color: #117a37;
}

.flash-sale {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 10px 0;
  padding: 10px 12px;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.flash-sale strong {
  padding: 4px 8px;
  background: var(--white);
  color: var(--black);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item h2 {
  margin: 0 0 8px;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.1;
}

.coupon-box {
  display: grid;
  gap: 8px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.coupon-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.form-message {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 750;
}

.form-message.error {
  color: #a20f0f;
}

.form-message.success {
  color: #117a37;
}

.payment-note {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--soft);
  color: var(--muted);
}

.payment-note strong,
.payment-note a {
  color: var(--black);
}

.payment-note p {
  margin: 0;
}

.scroll-top {
  position: fixed;
  left: 18px;
  bottom: 22px;
  z-index: 45;
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 900;
  cursor: pointer;
}

.scroll-top.show {
  display: grid;
}

.tracking-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0;
}

.tracking-step {
  min-height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--soft);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-align: center;
}

.tracking-step.done {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.tracking-step.cancelled {
  color: #7f1d1d;
}

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

.form-grid .wide {
  grid-column: 1 / -1;
}

.map-picker {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 8px;
  align-items: start;
}

.map-picker .product-meta {
  grid-column: 1 / -1;
  margin: -2px 0 0;
}

.map-picker .disabled {
  pointer-events: none;
  opacity: 0.42;
}

.about-block {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 38px;
  align-items: start;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.stat {
  border-top: 1px solid var(--black);
  padding-top: 14px;
}

.stat strong {
  display: block;
  margin-bottom: 6px;
  font-size: 2rem;
}

.cta-band {
  max-width: none;
  background: var(--black);
  color: var(--white);
}

.cta-logo {
  width: 168px;
  height: auto;
  margin-bottom: 18px;
  object-fit: contain;
}

.cta-band .section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-actions {
  display: grid;
  justify-items: end;
  gap: 16px;
  align-self: end;
}

.cta-band p {
  color: #cfcfcf;
  font-size: 0.98rem;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.cta-band .btn {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

.socials {
  color: #cfcfcf;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.social-link {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #3a3a3a;
  color: var(--white);
  text-decoration: none;
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link:hover {
  background: var(--white);
  color: var(--black);
}

.cta-socials {
  margin-top: 2px;
}

.empty-state {
  padding: 60px 24px;
  border: 1px solid var(--line);
  text-align: center;
}

.not-found-page {
  min-height: 62vh;
  display: grid;
  align-items: center;
}

.not-found-hero {
  border: 1px solid var(--line);
  background: var(--white);
  text-align: center;
}

.not-found-hero img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 18px;
}

.not-found-hero h1 {
  font-size: clamp(2.4rem, 7vw, 6rem);
  line-height: 0.95;
}

.not-found-hero .lead {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
}

.not-found-hero .hero-actions {
  justify-content: center;
}

.brand-loader {
  position: fixed;
  inset: 0;
  z-index: 90;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  animation: pageIn 260ms ease both;
  pointer-events: none;
}

.brand-loader img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  animation: logoPulse 900ms ease-in-out infinite alternate;
}

.brand-loader span {
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.maintenance-page {
  min-height: 100vh;
  padding: 48px 22px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  background: #050505;
  color: #fff;
  text-align: center;
}

.maintenance-page img {
  width: min(190px, 46vw);
  height: auto;
  object-fit: contain;
}

.maintenance-page .eyebrow {
  margin: 8px 0 0;
  color: #cfcfcf;
}

.maintenance-page h1 {
  max-width: 760px;
  margin: 6px auto 0;
  font-size: clamp(2.2rem, 7vw, 6rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.maintenance-page p:last-child {
  max-width: 560px;
  margin: 0 auto;
  color: #d8d8d8;
  font-size: 1rem;
  line-height: 1.7;
}

.branded-empty img {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  object-fit: contain;
  opacity: 0.62;
}

.fade-in {
  opacity: 0;
  transform: translateY(18px);
}

.fade-in.visible {
  animation: fadeUp 620ms ease both;
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes logoFade {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes logoPulse {
  to {
    opacity: 0.46;
    transform: scale(0.96);
  }
}

@keyframes cartRide {
  0% {
    opacity: 0;
    transform: translateX(-54px) translateY(0) scale(0.96);
  }
  16%,
  70% {
    opacity: 1;
  }
  38% {
    transform: translateX(0) translateY(-34px) scale(1);
  }
  68% {
    transform: translateX(0) translateY(-34px) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateX(58px) translateY(-34px) scale(0.98);
  }
}

@keyframes shirtDrop {
  0%,
  16% {
    opacity: 0;
    transform: translateY(-2px) scale(0.78) rotate(-4deg);
  }
  26% {
    opacity: 1;
  }
  50% {
    opacity: 1;
    transform: translateY(30px) scale(0.66) rotate(0deg);
  }
  66%,
  100% {
    opacity: 0;
    transform: translateY(34px) scale(0.34) rotate(4deg);
  }
}

@keyframes addDone {
  0%,
  64% {
    opacity: 0;
    transform: translateY(12px);
  }
  80%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 24px 1fr 24px;
  }

  .hero-copy {
    grid-column: 2;
    padding: 60px 0 34px;
  }

  .hero-media {
    grid-column: 1 / -1;
    min-height: 390px;
  }

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

  .collections-grid,
  .toolbar,
  .detail-layout,
  .checkout-layout,
  .contact-layout,
  .cart-layout,
  .about-block {
    grid-template-columns: 1fr;
  }

  .shop-search {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav {
    height: 66px;
    padding: 0 16px;
  }

  .consent-banner,
  .notification-permission {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    padding: 10px;
    gap: 10px;
    flex-direction: row;
    align-items: center;
  }

  .notification-permission {
    bottom: 14px;
  }

  .consent-banner > div:first-child,
  .notification-permission > div {
    gap: 8px;
    min-width: 0;
  }

  .consent-banner img,
  .notification-permission img {
    width: 30px;
    height: 30px;
  }

  .consent-banner strong,
  .notification-permission strong {
    font-size: 0.86rem;
  }

  .consent-banner p,
  .notification-permission p {
    display: none;
  }

  .consent-actions {
    width: auto;
    flex: 0 0 auto;
  }

  .consent-actions .btn,
  .notification-permission .btn {
    min-height: 36px;
    padding: 0 10px;
    font-size: 0.74rem;
  }

  .notification-permission .remove {
    font-size: 0.76rem;
  }

  .notification-toast-stack {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
  }

  .notification-toast {
    grid-template-columns: 34px 1fr;
  }

  .notification-toast > button {
    grid-column: 2;
    justify-self: flex-start;
  }

  .return-modal-backdrop {
    padding: 12px;
  }

  .return-modal-head {
    grid-template-columns: 42px 1fr auto;
    padding: 16px;
  }

  .return-modal-head img {
    width: 42px;
    height: 42px;
  }

  .return-modal-body {
    padding: 16px;
  }

  .return-type-grid,
  .return-upload-grid {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: fixed;
    inset: 66px 0 auto;
    display: none;
    padding: 14px 16px 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .nav-link {
    justify-content: flex-start;
    text-align: left;
  }

  .brand-lockup span {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .section {
    padding: 54px 16px;
  }

  .section-head,
  .cta-band .section {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-actions {
    justify-items: start;
  }

  .socials {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 16px 1fr 16px;
  }

  .hero-media {
    min-height: 310px;
  }

  .hero-copy {
    padding-top: 48px;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 5.2rem);
  }

  .product-grid {
    gap: 12px;
  }

  .product-info {
    padding: 13px;
  }

  .cart-item {
    grid-template-columns: 86px 1fr;
  }

  .cart-item .price {
    grid-column: 2;
  }

  .form-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .map-picker {
    grid-template-columns: 1fr;
  }

  .tracking-steps {
    grid-template-columns: 1fr;
  }

  .coupon-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }
}
