/*
Theme Name: OTHERS
Theme URI: https://example.com/others
Author: OTHERS
Description: Mobile-first custom WooCommerce theme for the OTHERS cultural-code everyday clothing store.
Version: 0.1.18
Requires at least: 6.5
Tested up to: 6.8
Requires PHP: 8.1
Text Domain: others
*/

:root {
  color-scheme: light;
  --brand-bg: oklch(97.6% 0.006 264);
  --brand-bg-warm: oklch(98.7% 0.012 96);
  --brand-surface: oklch(100% 0 0);
  --brand-surface-soft: oklch(95.6% 0.01 264);
  --brand-surface-blue: oklch(95.8% 0.028 264);
  --brand-ink: oklch(16% 0.018 264);
  --brand-ink-soft: oklch(28% 0.026 264);
  --brand-muted: oklch(51% 0.02 264);
  --brand-muted-2: oklch(60% 0.018 264);
  --brand-line: oklch(88% 0.012 264);
  --brand-line-strong: oklch(76% 0.016 264);
  --brand-blue: oklch(57% 0.238 264);
  --brand-blue-hover: oklch(50% 0.24 264);
  --brand-blue-soft: oklch(94.6% 0.038 264);
  --status-danger: oklch(56% 0.22 28);
  --status-danger-soft: oklch(95% 0.03 28);
  --status-restock: oklch(55% 0.12 86);
  --status-restock-soft: oklch(94% 0.06 86);
  --status-success: oklch(49% 0.12 158);
  --status-success-soft: oklch(94% 0.04 158);
  --drop-asian: oklch(56% 0.12 238);
  --drop-anime-archive: oklch(57% 0.238 264);
  --drop-russian-tales: oklch(46% 0.09 34);
  --drop-trend-core: oklch(54% 0.12 296);
  --shadow: 0 18px 48px oklch(18% 0.03 264 / 0.1);
  --shadow-soft: 0 12px 32px oklch(18% 0.03 264 / 0.08);
  --radius: 8px;
  --radius-sm: 8px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --base: var(--brand-bg);
  --base-2: var(--brand-bg-warm);
  --graphite: var(--brand-surface-soft);
  --line: var(--brand-line);
  --line-strong: var(--brand-line-strong);
  --white: var(--brand-ink);
  --muted: var(--brand-muted);
  --muted-2: var(--brand-muted-2);
  --blue: var(--brand-blue);
  --blue-2: oklch(67% 0.19 260);
  --red: var(--status-danger);
  --yellow: var(--status-restock-soft);
  --yellow-text: var(--status-restock);
  --green: var(--status-success);
  --surface: var(--brand-surface);
  --surface-soft: var(--brand-surface-soft);
  --surface-tint: var(--brand-blue-soft);
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--base);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 88% 4%, oklch(57% 0.238 264 / 0.12), transparent 30rem),
    linear-gradient(180deg, var(--base-2), var(--base) 44rem);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body.others-menu-open {
  overflow: hidden;
}

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

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

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

.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 99;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  padding: 0.75rem 1rem;
  border: 1px solid var(--blue);
  background: var(--surface);
}

:focus-visible {
  outline: 3px solid var(--blue-2);
  outline-offset: 3px;
}

.container,
.header-inner {
  width: min(100% - 2rem, 1380px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: oklch(100% 0 0 / 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 32px oklch(18% 0.03 275 / 0.06);
}

.header-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: clamp(9.4rem, 36vw, 14.5rem);
  height: auto;
}

.desktop-nav {
  display: none;
  min-width: 0;
}

.desktop-nav-link {
  display: none;
}

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

.others-icon {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
}

.icon-button,
.menu-button,
.cart-button,
.button,
.wp-element-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  min-height: 48px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  padding: 0.85rem 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: var(--surface);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease);
}

.icon-button:hover,
.menu-button:hover,
.cart-button:hover,
.button:hover,
.wp-element-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  border-color: var(--blue);
  background: oklch(57% 0.238 264 / 0.08);
  color: var(--blue);
}

.button.primary,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.single_add_to_cart_button {
  border-color: transparent;
  background: var(--blue);
  color: #fff;
}

.button.primary:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.single_add_to_cart_button:hover {
  background: oklch(50% 0.24 264);
  color: #fff;
}

.button.secondary {
  border-color: var(--line-strong);
  background: var(--surface);
}

.button.ghost {
  background: transparent;
}

.button.full {
  width: 100%;
}

.cart-count {
  min-width: 1.25rem;
  min-height: 1.25rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
}

.mobile-menu {
  display: none;
  position: fixed;
  z-index: 45;
  inset: 64px 0 auto;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  background: oklch(100% 0 0 / 0.98);
  box-shadow: 0 24px 48px oklch(18% 0.03 275 / 0.12);
}

body.others-menu-open .mobile-menu {
  display: block;
}

.mobile-menu a,
.mobile-menu .menu-item a {
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  background: var(--surface-soft);
  color: var(--white);
  display: flex;
  align-items: center;
  font-weight: 800;
}

.mobile-menu ul,
.desktop-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu ul {
  display: grid;
  gap: 0.55rem;
}

.hero {
  min-height: calc(100dvh - 64px);
  position: relative;
  overflow: clip;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--base-2) 0 35%, oklch(98% 0.004 275 / 0.88) 52%, oklch(98% 0.004 275 / 0.22) 100%),
    linear-gradient(180deg, oklch(100% 0 0 / 0.24), var(--base) 100%),
    var(--others-hero-image, none) center right / cover no-repeat;
  opacity: 1;
  filter: saturate(0.95) brightness(1.14);
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: calc(100dvh - 64px - 118px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  padding-block: clamp(2rem, 9vw, 5rem);
}

.marker {
  color: var(--blue);
  font-weight: 900;
  font-size: 1.55rem;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.hero h1,
.page-title,
.section-title {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  letter-spacing: 0;
  line-height: 0.92;
  text-wrap: balance;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(4rem, 18vw, 7.4rem);
}

.blue-word {
  color: var(--blue);
  font-style: italic;
}

.hero-copy,
.section-copy,
.muted,
.woocommerce-result-count {
  color: var(--muted);
}

.hero-copy {
  max-width: 25rem;
  margin: 0;
  font-size: clamp(1rem, 3.8vw, 1.25rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.benefit-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  padding-bottom: 1.25rem;
}

.mini-benefit {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: 0.6rem;
  align-items: start;
}

.mini-benefit b {
  display: block;
  font-size: 0.78rem;
}

.mini-benefit span {
  color: var(--muted);
  font-size: 0.78rem;
}

.section {
  padding-block: clamp(2.5rem, 8vw, 5.5rem);
  border-bottom: 1px solid var(--line);
}

.section.compact {
  padding-block: 2rem;
}

.section-head {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.section-title,
.page-title {
  font-size: clamp(2rem, 9vw, 4.1rem);
}

.page-hero {
  padding-block: clamp(2rem, 8vw, 5rem);
}

.page-title {
  max-width: 13ch;
  font-size: clamp(3rem, 15vw, 6rem);
}

.drop-hero-card,
.product-card,
.drop-card,
.category-card,
.info-panel,
.checkout-panel,
.cart-item,
.empty-state,
.products li.product,
.woocommerce ul.products li.product,
.woocommerce div.product .summary,
.woocommerce div.product .woocommerce-product-gallery,
.woocommerce-cart-form,
.cart_totals,
.woocommerce-checkout-review-order,
.woocommerce form.checkout {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.empty-state {
  padding: 1.25rem;
  display: grid;
  gap: 0.8rem;
}

.toolbar {
  display: grid;
  gap: 0.85rem;
  margin-block: 1.25rem;
}

.catalog-discovery {
  display: grid;
  gap: 0.9rem;
}

.catalog-filter-group {
  display: grid;
  gap: 0.55rem;
}

.catalog-filter-title {
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.catalog-filter-list {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  padding-bottom: 0.15rem;
  scrollbar-width: none;
}

.catalog-filter-list::-webkit-scrollbar {
  display: none;
}

.catalog-filter-chip {
  min-height: 2.35rem;
  border: 1px solid rgb(7 10 18 / 0.12);
  border-radius: 999px;
  padding: 0.58rem 0.8rem;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  background: rgb(255 255 255 / 0.82);
  color: var(--color-ink);
  font-size: 0.85rem;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease), color 180ms var(--ease);
}

.catalog-filter-chip:hover {
  border-color: rgb(24 92 255 / 0.34);
  background: var(--color-blue-soft);
  color: var(--color-blue);
}

.catalog-filter-chip.is-active {
  border-color: transparent;
  background: var(--color-blue);
  color: #fff;
}

.product-cultural-code {
  width: fit-content;
  border: 1px solid rgb(24 92 255 / 0.2);
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
  background: var(--color-blue-soft);
  color: var(--color-blue);
  font-size: 0.72rem;
  font-weight: 900;
}

.product-cultural-meta {
  margin-bottom: 0.75rem;
}

.drop-mood {
  margin: 0;
  color: var(--color-ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.drop-mood span {
  color: var(--color-blue);
}

.drop-mood.compact {
  font-size: 0.8rem;
}

.drop-note {
  max-width: 58ch;
  margin: 0;
  color: var(--color-muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.drop-hero-card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  background: linear-gradient(135deg, var(--surface), var(--surface-tint));
}

.drop-meta,
.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.badge,
.onsale,
.others-badge {
  display: inline-flex;
  align-items: center;
  min-height: 1.7rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.3rem 0.5rem;
  background: var(--surface-soft);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 900;
}

.badge.blue,
.others-badge.site-first,
.others-badge.new,
.others-badge.limited {
  border-color: color-mix(in oklch, var(--brand-blue) 55%, transparent);
  background: color-mix(in oklch, var(--brand-blue-soft) 86%, white);
  color: var(--blue);
}

.badge.red,
.others-badge.sold-out {
  border-color: color-mix(in oklch, var(--status-danger) 45%, transparent);
  background: var(--status-danger-soft);
  color: var(--status-danger);
}

.badge.yellow,
.others-badge.restock {
  border-color: color-mix(in oklch, var(--status-restock) 44%, transparent);
  background: var(--status-restock-soft);
  color: var(--status-restock);
}

.product-grid,
.drop-grid,
.why-grid,
.fit-grid,
.category-grid,
.legal-grid,
.contact-grid,
.products,
.woocommerce ul.products {
  display: grid;
  gap: 1rem;
}

.products,
.woocommerce ul.products {
  grid-template-columns: 1fr;
  padding: 0;
  margin: 0;
  list-style: none;
}

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

.products li.product,
.woocommerce ul.products li.product {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  overflow: hidden;
  list-style: none;
}

.products li.product::marker {
  content: "";
}

.products li.product a img,
.woocommerce ul.products li.product a img,
.product-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  margin: 0;
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
}

.woocommerce-loop-product__title,
.product-title {
  margin: 0;
  color: var(--white);
  font-weight: 900;
  line-height: 1.15;
}

.woocommerce ul.products li.product .price,
.price {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 900;
}

.others-card-body,
.products li.product .others-loop-body,
.woocommerce ul.products li.product .others-loop-body {
  display: grid;
  gap: 0.55rem;
  padding: 0.9rem;
}

.category-card {
  min-height: 9.5rem;
  position: relative;
  overflow: hidden;
  padding: 1rem;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent, oklch(0% 0 0 / 0.82));
}

.info-panel {
  padding: 1rem;
  display: grid;
  gap: 0.45rem;
}

.fit-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  background: linear-gradient(180deg, oklch(57% 0.238 264 / 0.08), var(--surface));
  box-shadow: var(--shadow);
}

.drop-card {
  overflow: hidden;
}

.drop-card img {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
}

.drop-card-content {
  padding: 1rem;
  display: grid;
  gap: 0.55rem;
}

.telegram-block {
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 5vw, 2rem);
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0, oklch(57% 0.238 264 / 0.16), transparent 18rem),
    var(--surface);
  box-shadow: var(--shadow);
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.faq-list summary {
  min-height: 52px;
  cursor: pointer;
  padding: 0.9rem 1rem;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: var(--muted);
}

.woocommerce div.product {
  display: grid;
  gap: 1.5rem;
}

.woocommerce div.product .summary,
.woocommerce div.product .woocommerce-product-gallery {
  padding: 1rem;
}

.woocommerce div.product .summary {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 0;
}

.woocommerce div.product .summary > * {
  margin-block: 0;
}

.woocommerce div.product form.cart {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  min-width: 0;
}

.woocommerce div.product table.variations {
  width: 100%;
  margin: 0;
  border: 0;
  border-collapse: separate;
  border-spacing: 0 0.45rem;
}

.woocommerce div.product table.variations tbody,
.woocommerce div.product table.variations tr,
.woocommerce div.product table.variations th,
.woocommerce div.product table.variations td {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
}

.woocommerce div.product table.variations tr {
  display: grid;
  gap: 0.4rem;
  justify-items: start;
  text-align: left;
}

.woocommerce div.product table.variations label {
  display: block;
  color: var(--white);
  font-weight: 900;
}

.woocommerce div.product table.variations .value {
  display: grid;
  gap: 0.5rem;
  justify-items: start;
}

.woocommerce div.product .reset_variations {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
}

.woocommerce div.product .single_variation_wrap,
.woocommerce div.product .woocommerce-variation-add-to-cart {
  display: grid;
  gap: 0;
  min-width: 0;
}

.woocommerce div.product .woocommerce-variation-price,
.woocommerce div.product .woocommerce-variation-availability {
  margin: 0;
}

.woocommerce div.product .quantity {
  width: 100%;
}

.woocommerce div.product .quantity .qty {
  width: 100%;
  max-width: none;
  height: 56px;
  min-height: 56px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--white);
  padding: 0.65rem 0.8rem;
  font-weight: 850;
}

.woocommerce div.product .single_add_to_cart_button {
  width: 100%;
}

.woocommerce div.product .product_meta {
  display: grid;
  gap: 0.45rem;
  padding-top: 0;
  color: var(--color-muted);
  font-size: 0.88rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.woocommerce div.product .product_meta > span {
  display: block;
}

.variations select,
.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select,
.others-field {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--white);
  padding: 0.85rem 0.95rem;
}

.variations select:focus,
.woocommerce input.input-text:focus,
.woocommerce textarea:focus,
.woocommerce select:focus,
.others-field:focus {
  border-color: var(--blue);
  outline: 3px solid oklch(57% 0.238 264 / 0.18);
}

.woocommerce input.input-text::placeholder,
.woocommerce textarea::placeholder,
.others-field::placeholder {
  color: var(--muted-2);
}

.others-restock-form {
  display: grid;
  gap: 0.75rem;
}

.others-product-panels {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.others-size-table,
.shop_table {
  width: 100%;
  border-collapse: collapse;
}

.others-size-table th,
.others-size-table td,
.shop_table th,
.shop_table td {
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.product-page-shell {
  background:
    radial-gradient(circle at 6% 4%, rgb(24 92 255 / 0.055), transparent 18rem),
    var(--color-bg, var(--base));
}

.woocommerce-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 1.15rem;
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.woocommerce-breadcrumb a {
  color: var(--color-muted);
}

.woocommerce-breadcrumb a:hover {
  color: var(--color-blue);
}

.woocommerce div.product {
  align-items: start;
}

body.single-product.woocommerce div.product {
  display: block;
}

.others-product-primary-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
}

.others-product-media-column {
  display: contents;
}

.others-product-media-shell {
  order: 1;
  min-width: 0;
}

.others-product-purchase-column {
  display: contents;
}

.others-product-purchase-column > .summary {
  order: 2;
  min-width: 0;
}

.product-restock-section {
  order: 3;
  min-width: 0;
}

.others-product-tabs-shell {
  order: 4;
  min-width: 0;
}

.woocommerce div.product > .product-details-section,
.woocommerce div.product > .section {
  grid-column: 1 / -1;
  width: 100%;
}

.woocommerce div.product .summary {
  border-color: rgb(7 10 18 / 0.1);
  background: rgb(255 255 255 / 0.92);
  box-shadow: 0 6px 18px rgb(15 23 42 / 0.055);
}

.product-summary-meta-group {
  display: grid;
  justify-items: start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.woocommerce div.product .summary .drop-meta {
  gap: 0.5rem;
}

.product-cultural-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.product-summary-identity {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.woocommerce div.product .product_title {
  margin: 0;
  max-width: 100%;
  color: var(--color-ink);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2rem, 9vw, 2.375rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.woocommerce div.product .summary .price {
  color: var(--color-ink);
  font-size: clamp(1.5rem, 6vw, 1.875rem);
  font-weight: 950;
}

.single-product-type {
  margin: 0;
  color: var(--color-ink-soft, var(--color-ink));
  font-size: 1rem;
  font-weight: 850;
}

.single-size-helper {
  margin: 0.5rem 0 1rem;
}

.single-size-helper a {
  color: var(--color-blue);
  font-size: 0.9rem;
  font-weight: 850;
}

.woocommerce div.product .others-product-panels {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.woocommerce div.product .others-product-panels .info-panel {
  min-height: 5.85rem;
  padding: 1rem;
  border: 0;
  border-radius: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}

.woocommerce div.product .others-product-panels .info-panel b {
  font-size: 0.9rem;
  line-height: 1.12;
}

.woocommerce div.product .others-product-panels .info-panel .muted {
  font-size: 0.8rem;
  line-height: 1.35;
}

.woocommerce div.product .others-product-panels .info-panel:nth-child(2n) {
  border-right: 0;
}

.woocommerce div.product .others-product-panels .info-panel:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.woocommerce div.product .quantity .qty,
.variations select,
.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select,
.others-field {
  border-color: rgb(7 10 18 / 0.14);
  background: rgb(255 255 255 / 0.94);
  color: var(--color-ink);
}

.woocommerce div.product table.variations label {
  color: var(--color-ink);
  font-size: 0.9rem;
  line-height: 1.2;
  font-weight: 900;
  text-align: left;
}

.woocommerce div.product .variations select {
  width: 100%;
  min-height: 50px;
  border-radius: 12px;
  padding: 0 2.5rem 0 0.875rem;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%236B7280' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: right 0.875rem center;
  background-repeat: no-repeat;
  background-size: 1rem;
  appearance: none;
  -webkit-appearance: none;
  font-size: 0.96rem;
  font-weight: 800;
}

.woocommerce div.product .woocommerce-variation-add-to-cart {
  grid-template-columns: minmax(6.5rem, 7.5rem) minmax(0, 1fr);
  gap: 0.75rem;
  align-items: stretch;
  margin-bottom: 1.5rem;
}

.woocommerce div.product .woocommerce-variation-add-to-cart > * {
  min-width: 0;
}

.woocommerce div.product .single_add_to_cart_button {
  min-height: 56px;
  border: 0;
  padding-inline: 1rem;
  box-shadow: 0 10px 20px rgb(24 92 255 / 0.18);
  white-space: normal;
}

.woocommerce div.product .others-product-gallery {
  display: grid;
  gap: 0.65rem;
  padding: 0.55rem;
  border: 1px solid rgb(7 10 18 / 0.1);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 0.9);
  box-shadow: 0 6px 18px rgb(15 23 42 / 0.045);
}

.others-product-gallery__viewport {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid rgb(7 10 18 / 0.1);
  border-radius: var(--radius);
  background: #f2f4f8;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.others-product-gallery__viewport::-webkit-scrollbar {
  display: none;
}

.others-product-gallery__track {
  display: flex;
}

.others-product-gallery__slide {
  position: relative;
  flex: 0 0 100%;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: #f2f4f8;
  cursor: zoom-in;
  scroll-snap-align: start;
}

.others-product-gallery__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.others-product-gallery__zoom,
.others-product-gallery__counter {
  position: absolute;
  z-index: 4;
  background: rgb(255 255 255 / 0.94);
  color: var(--color-ink);
  box-shadow: 0 10px 24px rgb(15 23 42 / 0.1);
}

.others-product-gallery__zoom {
  top: 0.8rem;
  right: 0.8rem;
  width: auto;
  min-width: 54px;
  height: 38px;
  border: 1px solid rgb(7 10 18 / 0.12);
  border-radius: 999px;
  padding: 0 0.82rem;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  cursor: zoom-in;
}

.others-product-gallery__counter {
  left: 0.8rem;
  bottom: 0.8rem;
  border-radius: 999px;
  padding: 0.42rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 900;
}

.others-product-gallery__thumbs {
  display: none;
}

.others-product-gallery__thumb {
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  padding: 0;
  background: #f2f4f8;
  cursor: pointer;
}

.others-product-gallery__thumb.is-active {
  border-color: var(--color-blue);
}

.others-product-gallery__thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.others-gallery-lightbox[hidden] {
  display: none;
}

.others-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgb(7 10 18 / 0.82);
}

.others-lightbox-open {
  overflow: hidden;
}

.others-gallery-lightbox__frame {
  position: relative;
  width: min(100%, 72rem);
  height: min(86vh, 62rem);
  display: grid;
  place-items: center;
}

.others-gallery-lightbox__image {
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.others-gallery-lightbox__close,
.others-gallery-lightbox__nav,
.others-gallery-lightbox__counter {
  position: absolute;
  z-index: 2;
  border: 1px solid rgb(255 255 255 / 0.22);
  background: rgb(255 255 255 / 0.92);
  color: var(--color-ink);
}

.others-gallery-lightbox__close,
.others-gallery-lightbox__nav {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  cursor: pointer;
}

.others-gallery-lightbox__close {
  top: 0;
  right: 0;
  font-size: 1.6rem;
}

.others-gallery-lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
}

.others-gallery-lightbox__nav.prev {
  left: 0;
}

.others-gallery-lightbox__nav.next {
  right: 0;
}

.others-gallery-lightbox__counter {
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  border-radius: 999px;
  padding: 0.5rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 900;
}

.product-detail-tabs-wrap {
  overflow: hidden;
  border: 1px solid rgb(7 10 18 / 0.12);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 0.94);
  box-shadow: 0 8px 22px rgb(15 23 42 / 0.055);
}

.product-detail-tabs {
  display: flex;
  gap: 0.25rem;
  overflow-x: auto;
  padding: 0.42rem;
  border-bottom: 1px solid rgb(7 10 18 / 0.1);
  scrollbar-width: none;
}

.product-detail-tabs::-webkit-scrollbar {
  display: none;
}

.product-detail-tab {
  flex: 0 0 auto;
  min-height: 44px;
  border: 0;
  border-radius: var(--radius-sm);
  padding: 0.72rem 0.95rem;
  background: transparent;
  color: var(--color-ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: background 160ms var(--ease), color 160ms var(--ease), transform 140ms var(--ease);
}

.product-detail-tab:hover,
.product-detail-tab:focus-visible {
  background: var(--surface-tint);
  color: var(--color-blue);
}

.product-detail-tab:active {
  transform: scale(0.98);
}

.product-detail-tab.is-active {
  background: var(--color-blue);
  color: #fff;
}

.product-detail-panels {
  min-height: 12rem;
}

.product-detail-panel {
  padding: clamp(1rem, 2.4vw, 1.55rem);
}

.product-detail-panel[hidden] {
  display: none;
}

.product-detail-panel h3 {
  margin: 0 0 0.8rem;
  color: var(--color-ink);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.15;
}

.product-detail-panel .muted {
  max-width: 72ch;
}

.product-spec-list {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgb(7 10 18 / 0.1);
  color: var(--color-muted);
}

.product-spec-list p {
  margin: 0;
}

.size-table-wrap {
  max-width: 100%;
  overflow-x: auto;
}

.size-table-note {
  margin: 0.65rem 0 0;
  font-size: 0.84rem;
}

.product-restock-section .others-restock-form {
  border-color: rgb(7 10 18 / 0.12);
  background: rgb(255 255 255 / 0.86);
  box-shadow: none;
}

.single-product-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(5.5rem, 0.38fr) minmax(0, 1fr);
  gap: 0.55rem;
  align-items: center;
  padding: 0.7rem max(1rem, env(safe-area-inset-left)) calc(0.7rem + env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-right));
  border-top: 1px solid rgb(7 10 18 / 0.12);
  background: rgb(255 255 255 / 0.96);
  box-shadow: 0 -12px 30px rgb(15 23 42 / 0.1);
  transform: translateY(105%);
  transition: transform 220ms var(--ease);
}

.single-product-sticky-cta.is-visible {
  transform: translateY(0);
}

.single-product-sticky-cta span {
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.single-product-sticky-cta .button {
  width: 100%;
  min-height: 48px;
}

.cart_totals,
.woocommerce-checkout-review-order,
.woocommerce form.checkout,
.woocommerce-cart-form {
  padding: 1rem;
}

.woocommerce-checkout-payment .wc_payment_methods.others-payment-list--robokassa {
  display: grid;
  gap: 0.75rem;
}

.woocommerce-checkout-payment .wc_payment_methods .others-payment-more-toggle {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgb(7 10 18 / 0.12);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  display: grid;
  gap: 0.2rem;
  background: rgb(255 255 255 / 0.78);
  color: var(--color-ink);
  text-align: left;
  cursor: pointer;
}

.woocommerce-checkout-payment .wc_payment_methods .others-payment-more-toggle:hover {
  border-color: rgb(24 92 255 / 0.28);
  background: #fff;
}

.woocommerce-checkout-payment .wc_payment_methods .others-payment-more-toggle span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-weight: 900;
}

.woocommerce-checkout-payment .wc_payment_methods .others-payment-more-toggle span::after {
  content: "+";
  color: var(--color-blue);
  font-size: 1.15rem;
  line-height: 1;
}

.woocommerce-checkout-payment .wc_payment_methods .others-payment-more-toggle[aria-expanded="true"] span::after {
  content: "-";
}

.woocommerce-checkout-payment .wc_payment_methods .others-payment-more-toggle small {
  color: var(--color-muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.woocommerce-checkout-payment .wc_payment_methods .payment_method_robokassa.is-collapsed-by-others {
  display: none;
}

.woocommerce-notices-wrapper {
  width: min(100% - 2rem, 1380px);
  margin: 1rem auto 0;
}

.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--white);
  padding: 1rem;
}

.site-footer {
  padding-block: 2rem calc(2rem + env(safe-area-inset-bottom));
  background: oklch(5.5% 0.01 275);
  color: oklch(95% 0.015 78);
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.footer-links a {
  color: oklch(78% 0.018 275);
}

.site-footer .muted {
  color: oklch(76% 0.018 275);
}

a:hover,
.desktop-nav a:hover,
.desktop-nav-link:hover,
.footer-links a:hover {
  color: var(--blue);
}

@media (prefers-reduced-motion: no-preference) {
  .hero h1,
  .hero-copy,
  .hero .button-row,
  .products li.product,
  .woocommerce ul.products li.product,
  .drop-card,
  .info-panel {
    animation: rise-in 560ms var(--ease) both;
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

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

@media (min-width: 560px) {
  .benefit-strip,
  .product-grid,
  .drop-grid,
  .why-grid,
  .fit-grid,
  .contact-grid,
  .products,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 840px) {
  .desktop-nav {
    display: block;
  }

  .desktop-nav-link {
    display: inline-flex;
    color: var(--white);
    font-weight: 800;
  }

  .desktop-nav ul {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: clamp(1rem, 3vw, 2.6rem);
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .desktop-nav a {
    color: var(--white);
    font-weight: 800;
    white-space: nowrap;
  }

  .menu-button {
    display: none;
  }

  .hero h1 {
    max-width: 13.6ch;
    font-size: clamp(5rem, 8.3vw, 7.4rem);
  }

  .benefit-strip {
    grid-template-columns: repeat(4, 1fr);
  }

  .drop-hero-card {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.74fr);
    align-items: start;
  }

  .woocommerce div.product {
    grid-template-columns: minmax(0, 1.2fr) minmax(420px, 1fr);
    column-gap: 2rem;
    row-gap: clamp(2.5rem, 3.4vw, 3rem);
  }

  .others-product-primary-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(420px, 1fr);
    gap: 2rem;
    align-items: start;
  }

  .others-product-media-column {
    display: grid;
    gap: 2rem;
    align-content: start;
    min-width: 0;
  }

  .others-product-purchase-column {
    display: grid;
    gap: 2rem;
    align-content: start;
    min-width: 0;
  }

  .others-product-media-shell,
  .others-product-tabs-shell,
  .others-product-purchase-column > .summary,
  .product-restock-section {
    order: initial;
  }

  .woocommerce div.product .summary {
    position: sticky;
    top: calc(var(--header-height) + 1rem);
    padding: 2rem;
  }

  .woocommerce div.product .product_title {
    max-width: none;
    font-size: clamp(2.125rem, 3vw, 2.75rem);
    line-height: 0.98;
  }

  .woocommerce div.product .summary .price {
    font-size: clamp(1.75rem, 2vw, 2rem);
  }

  .single-product-type {
    font-size: 1.04rem;
  }

  .woocommerce div.product .variations select {
    width: min(100%, 20rem);
  }

  .woocommerce div.product .others-product-gallery {
    --product-gallery-height: clamp(560px, calc(100vh - var(--header-height) - 4rem), 640px);
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 0.75rem;
    align-items: stretch;
  }

  .others-product-gallery__thumbs {
    order: 0;
    height: var(--product-gallery-height);
    max-height: 640px;
    align-self: stretch;
    display: grid;
    align-content: start;
    gap: 0.5rem;
    overflow-y: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .others-product-gallery__thumb {
    height: 88px;
    border-width: 2px;
    border-radius: 10px;
  }

  .others-product-gallery__thumb img {
    height: 100%;
    aspect-ratio: auto;
  }

  .others-product-gallery__viewport {
    order: 1;
    overflow: hidden;
    height: var(--product-gallery-height);
    max-height: 640px;
  }

  .others-product-gallery__track {
    height: 100%;
    display: block;
  }

  .others-product-gallery__slide {
    display: none;
  }

  .others-product-gallery__slide.is-active {
    display: block;
    height: 100%;
  }

  .others-product-gallery__image {
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
  }

  .woocommerce div.product table.variations tr {
    grid-template-columns: 1fr;
  }

  .woocommerce div.product .woocommerce-variation-add-to-cart {
    grid-template-columns: minmax(6.5rem, 7.5rem) minmax(0, 1fr);
    align-items: stretch;
  }

  .product-detail-tabs {
    justify-content: flex-start;
  }

  .product-detail-tab {
    padding-inline: 1.15rem;
  }

  .product-detail-panel {
    min-height: 12rem;
  }

  .single-product-sticky-cta {
    display: none;
  }

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

  .category-grid {
    grid-template-columns: 1.25fr 1fr 1fr 1fr;
  }

  .why-grid {
    grid-template-columns: 1.2fr repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

@media (min-width: 1180px) {
  .drop-grid,
  .legal-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Premium white editorial front */
:root {
  --color-bg: var(--brand-bg);
  --color-bg-warm: var(--brand-bg-warm);
  --color-surface: var(--brand-surface);
  --color-surface-soft: var(--brand-surface-soft);
  --color-ink: var(--brand-ink);
  --color-ink-soft: var(--brand-ink-soft);
  --color-muted: var(--brand-muted);
  --color-line: var(--brand-line);
  --color-line-strong: var(--brand-line-strong);
  --color-blue: var(--brand-blue);
  --color-blue-deep: var(--brand-blue-hover);
  --color-blue-soft: var(--brand-blue-soft);
  --color-gold: var(--status-restock);
  --base: var(--color-bg);
  --base-2: var(--color-bg-warm);
  --surface: var(--color-surface);
  --surface-soft: var(--color-surface-soft);
  --surface-tint: var(--color-blue-soft);
  --white: var(--color-ink);
  --muted: var(--color-muted);
  --muted-2: #8a91a3;
  --line: var(--color-line);
  --line-strong: var(--color-line-strong);
  --blue: var(--color-blue);
  --blue-2: #5d8dff;
  --yellow-text: var(--status-restock);
  --shadow: 0 24px 70px rgb(15 23 42 / 0.1);
  --shadow-soft: 0 14px 40px rgb(15 23 42 / 0.08);
  --radius: 8px;
  --radius-sm: 8px;
}

body {
  background:
    radial-gradient(circle at 18% 0, rgb(24 92 255 / 0.1), transparent 24rem),
    radial-gradient(circle at 96% 12%, rgb(24 92 255 / 0.08), transparent 28rem),
    linear-gradient(180deg, var(--color-bg-warm), var(--color-bg) 34rem);
  color: var(--color-ink);
  overflow-x: hidden;
}

.container,
.header-inner {
  width: min(100% - 1.25rem, 1440px);
}

.site-header {
  border-bottom-color: rgb(7 10 18 / 0.08);
  background: rgb(250 250 247 / 0.84);
  transition: background 180ms var(--ease), box-shadow 180ms var(--ease), border-color 180ms var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: rgb(7 10 18 / 0.14);
  background: rgb(255 255 255 / 0.9);
  box-shadow: 0 12px 34px rgb(7 10 18 / 0.08);
}

.header-inner {
  min-height: 68px;
}

.brand-logo {
  width: clamp(9.2rem, 42vw, 13.4rem);
}

.desktop-nav a,
.desktop-nav-link {
  position: relative;
  color: var(--color-ink);
}

.desktop-nav a::after,
.desktop-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  background: var(--color-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav-link:hover::after {
  transform: scaleX(1);
}

.icon-button,
.menu-button,
.cart-button,
.button,
.wp-element-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  border-color: rgb(7 10 18 / 0.12);
  background: rgb(255 255 255 / 0.88);
  color: var(--color-ink);
  box-shadow: 0 1px 0 rgb(255 255 255 / 0.8) inset;
}

.button.primary,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.single_add_to_cart_button {
  background: linear-gradient(135deg, var(--color-blue), #3f78ff);
  box-shadow: 0 14px 30px rgb(24 92 255 / 0.22);
}

.button.secondary {
  background: rgb(255 255 255 / 0.82);
}

.button:active,
.icon-button:active,
.menu-button:active,
.cart-button:active,
.woocommerce a.button:active,
.woocommerce button.button:active,
.woocommerce input.button:active {
  transform: translateY(1px) scale(0.985);
}

.hero-editorial {
  min-height: clamp(640px, 78vh, 860px);
  display: grid;
  align-items: center;
  padding: clamp(1rem, 3.2vw, 2rem) 0 clamp(1.1rem, 3vw, 2rem);
  border-bottom: 0;
}

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

.hero-editorial-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1rem, 4vw, 3rem);
  align-items: center;
  justify-items: stretch;
}

.hero-editorial .hero-content {
  min-height: auto;
  width: 100%;
  justify-self: stretch;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: clamp(0.85rem, 2.6vw, 1.45rem);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-editorial .kicker {
  flex-wrap: wrap;
  gap: 0.5rem 0.7rem;
  color: var(--color-ink-soft);
}

.hero-editorial .marker {
  display: inline-grid;
  place-items: center;
  min-height: 1.8rem;
  border: 1px solid rgb(24 92 255 / 0.26);
  border-radius: 999px;
  padding: 0 0.7rem;
  background: var(--color-blue-soft);
  color: var(--color-blue);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.hero-editorial .hero-title {
  max-width: min(100%, 39rem);
  display: grid;
  gap: 0.04em;
  font-size: clamp(1.85rem, 7.7vw, 4.6rem);
  letter-spacing: 0;
  line-height: 0.92;
}

.hero-editorial .hero-title > span {
  display: block;
  min-width: 0;
}

.hero-mobile-break {
  display: block;
}

.hero-editorial .hero-copy {
  max-width: 34rem;
  color: var(--color-ink-soft);
  font-size: clamp(1rem, 2.8vw, 1.2rem);
}

.hero-editorial .hero-copy span {
  display: block;
}

.hero-editorial .button-row {
  width: min(100%, 16rem);
}

.hero-editorial .button-row .button {
  width: 100%;
}

.hero-visual {
  position: relative;
  min-height: clamp(26rem, 74vw, 43rem);
  display: grid;
  align-items: end;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto 4% 3% 16%;
  z-index: -1;
  height: 42%;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgb(24 92 255 / 0.12), transparent 62%),
    rgb(7 10 18 / 0.04);
  filter: blur(8px);
  pointer-events: none;
}

.hero-visual-main {
  position: relative;
  display: block;
  width: min(100%, 34rem);
  justify-self: center;
  overflow: hidden;
  border: 1px solid rgb(7 10 18 / 0.1);
  border-radius: 8px;
  background: #f4f4f1;
  box-shadow: 0 18px 44px rgb(15 23 42 / 0.1);
}

.hero-visual-main img,
.hero-visual-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
}

.hero-visual-main img {
  aspect-ratio: 900 / 1180;
  object-position: center;
}

.hero-visual-side,
.hero-visual-tag {
  position: absolute;
  z-index: 2;
}

.hero-visual-side {
  display: none;
  overflow: hidden;
  border: 1px solid rgb(7 10 18 / 0.1);
  border-radius: 8px;
  background: #f4f4f1;
  box-shadow: 0 14px 34px rgb(15 23 42 / 0.11);
}

.hero-visual-side img {
  aspect-ratio: 700 / 933;
}

.hero-visual-cat img {
  object-position: 50% 36%;
}

.hero-visual-hoodie img {
  object-position: 52% 45%;
}

.hero-visual-tag {
  left: clamp(0.6rem, 3vw, 1rem);
  bottom: clamp(0.6rem, 3vw, 1rem);
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  background: rgb(255 255 255 / 0.9);
  color: var(--color-ink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  box-shadow: 0 10px 24px rgb(15 23 42 / 0.08);
}

.drop-ticker {
  position: relative;
  z-index: 2;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(13rem, 1fr);
  gap: 0.75rem;
  margin-top: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: none;
}

.drop-ticker::-webkit-scrollbar {
  display: none;
}

.ticker-item {
  min-height: 5.25rem;
  border: 1px solid rgb(7 10 18 / 0.1);
  border-radius: 8px;
  padding: 0.9rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.2rem 0.7rem;
  align-content: center;
  background: rgb(255 255 255 / 0.82);
  box-shadow: var(--shadow-soft);
}

.ticker-item span {
  grid-row: span 2;
  color: var(--color-blue);
  font-weight: 900;
}

.ticker-item b {
  font-size: 0.85rem;
}

.ticker-item em {
  color: var(--color-muted);
  font-size: 0.78rem;
  font-style: normal;
}

.section {
  border-bottom-color: rgb(7 10 18 / 0.07);
}

.section-drop {
  padding-block: clamp(3rem, 6vw, 4rem);
}

.cultural-codes-panel {
  border: 1px solid rgb(7 10 18 / 0.09);
  border-radius: 8px;
  padding: clamp(1rem, 4vw, 1.5rem);
  background:
    radial-gradient(circle at 90% 10%, rgb(24 92 255 / 0.12), transparent 34%),
    rgb(255 255 255 / 0.86);
  box-shadow: var(--shadow-soft);
}

.cultural-code-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.drop-intro {
  align-items: start;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background:
    radial-gradient(circle at 100% 0, rgb(24 92 255 / 0.1), transparent 18rem),
    linear-gradient(135deg, rgb(255 255 255 / 0.98), rgb(244 247 255 / 0.9)),
    var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.current-drop-copy {
  max-width: 46rem;
  gap: 0.65rem;
  margin-bottom: 0;
  min-width: 0;
}

.current-drop-copy > * {
  max-width: 100%;
  min-width: 0;
}

.current-drop-meta {
  margin-bottom: 0.2rem;
}

.current-drop-module .section-title {
  font-size: clamp(1.95rem, 8vw, 3.25rem);
  line-height: 0.98;
  letter-spacing: -0.015em;
  overflow-wrap: anywhere;
}

.current-drop-module .section-copy,
.current-drop-module .drop-note {
  max-width: min(100%, 58ch);
  text-wrap: initial;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

.drop-subtitle {
  margin: 0;
  color: var(--color-blue);
  font-size: clamp(0.9rem, 2.6vw, 1.08rem);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.current-drop-products {
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.current-drop-products .products,
.current-drop-products .woocommerce ul.products {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15.5rem), 1fr));
  gap: clamp(0.85rem, 2vw, 1rem);
}

.current-drop-products .products li.product a img,
.current-drop-products .woocommerce ul.products li.product a img {
  aspect-ratio: 4 / 5;
  object-position: center;
  filter: saturate(0.96) contrast(0.98);
}

.current-drop-products .products li.product,
.current-drop-products .woocommerce ul.products li.product {
  display: grid;
  background: #fff;
  box-shadow: 0 10px 26px rgb(15 23 42 / 0.07);
}

.current-drop-products .woocommerce ul.products li.product .woocommerce-loop-product__link,
.current-drop-products .products li.product .woocommerce-loop-product__link {
  overflow: hidden;
  border-bottom: 1px solid rgb(7 10 18 / 0.08);
  background: #eef2f7;
}

.current-drop-products .woocommerce ul.products li.product .product-badges,
.current-drop-products .products li.product .product-badges {
  gap: 0.35rem;
}

.current-drop-products .woocommerce ul.products li.product .others-loop-body,
.current-drop-products .products li.product .others-loop-body {
  gap: 0.55rem;
  padding: 0.9rem;
  background: #fff;
}

.current-drop-products .product-cultural-code {
  font-size: 0.68rem;
}

.current-drop-products .woocommerce-loop-product__title {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
}

.current-drop-products .product-type-label,
.current-drop-products .product-size-hint {
  font-size: 0.78rem;
}

.current-drop-products .woocommerce ul.products li.product .price,
.current-drop-products .products li.product .price {
  font-size: 1.05rem;
}

.current-drop-products .woocommerce ul.products li.product .button,
.current-drop-products .products li.product .button {
  width: 100%;
  min-height: 44px;
  padding-block: 0.75rem;
  justify-self: stretch;
}

.current-drop-cta {
  width: fit-content;
  min-width: min(13rem, 100%);
  max-width: 16.25rem;
  min-height: 3rem;
  justify-self: start;
  padding-inline: 1rem;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .current-drop-module .section-copy,
  .current-drop-module .drop-note {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .current-drop-cta {
    width: 100%;
    max-width: none;
  }
}

@media (min-width: 640px) {
  .current-drop-products .products,
  .current-drop-products .woocommerce ul.products {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 15.5rem), 18rem));
    justify-content: start;
  }
}

@media (min-width: 840px) {
  .current-drop-module .drop-intro {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .current-drop-module .section-title {
    font-size: clamp(2.75rem, 4vw, 3.5rem);
  }
}

.product-type-label,
.product-size-hint {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.35;
}

.product-size-hint {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  align-items: center;
  color: var(--color-ink);
}

.product-size-hint span {
  color: var(--color-blue);
}

.woocommerce ul.products li.product,
.products li.product {
  overflow: hidden;
  border-color: rgb(7 10 18 / 0.1);
  background: rgb(255 255 255 / 0.88);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}

.woocommerce ul.products li.product:hover,
.products li.product:hover {
  border-color: rgb(24 92 255 / 0.24);
  box-shadow: 0 30px 80px rgb(15 23 42 / 0.14);
}

.woocommerce ul.products li.product .woocommerce-loop-product__link,
.products li.product .woocommerce-loop-product__link {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(180deg, #eef2f7, #ffffff);
}

.woocommerce ul.products li.product .product-badges,
.products li.product .product-badges {
  position: absolute;
  z-index: 2;
  top: 0.65rem;
  left: 0.65rem;
  right: 0.65rem;
}

.products li.product a img,
.woocommerce ul.products li.product a img,
.product-card img {
  border-bottom: 0;
  transition: transform 320ms var(--ease), filter 320ms var(--ease);
}

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

.woocommerce-loop-product__title,
.product-title {
  font-size: clamp(1.25rem, 5vw, 1.85rem);
  letter-spacing: 0;
  text-transform: uppercase;
}

.woocommerce ul.products li.product .price,
.price {
  color: var(--color-ink);
}

.others-card-body,
.products li.product .others-loop-body,
.woocommerce ul.products li.product .others-loop-body {
  position: relative;
  z-index: 3;
  gap: 0.7rem;
  padding: 1rem;
  background: var(--color-surface);
}

.woocommerce ul.products li.product .button,
.products li.product .button {
  width: 100%;
  margin-top: 0;
}

.badge,
.onsale,
.others-badge {
  border-radius: 999px;
  background: rgb(255 255 255 / 0.86);
  backdrop-filter: blur(10px);
}

.section-rail .section-head,
.section-benefits .section-head {
  margin-bottom: 1rem;
}

.section-rail .category-grid {
  grid-auto-flow: column;
  grid-auto-columns: minmax(14rem, 78vw);
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}

.section-rail .category-grid::-webkit-scrollbar {
  display: none;
}

.category-card {
  min-height: 14rem;
  border-color: rgb(7 10 18 / 0.1);
  background: #111827;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}

.category-card:hover {
  border-color: rgb(24 92 255 / 0.35);
  box-shadow: 0 24px 64px rgb(15 23 42 / 0.16);
  transform: translateY(-3px);
}

.category-card__label,
.category-card__title {
  position: relative;
  z-index: 1;
}

.category-card__label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  border-radius: 999px;
  padding: 0.35rem 0.55rem;
  background: rgb(255 255 255 / 0.86);
  color: var(--color-blue);
  font-size: 0.68rem;
  font-weight: 900;
}

.category-card__title {
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  text-transform: uppercase;
}

.why-grid {
  align-items: stretch;
}

.benefit-card {
  min-height: 11rem;
  border-color: rgb(7 10 18 / 0.1);
  background:
    linear-gradient(145deg, rgb(255 255 255 / 0.96), rgb(246 247 251 / 0.9)),
    var(--color-surface);
}

.benefit-number {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: var(--color-blue-soft);
  color: var(--color-blue);
  font-weight: 900;
}

.fit-card {
  background: var(--color-surface);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}

.fit-card.is-active,
.fit-card:hover {
  border-color: rgb(24 92 255 / 0.28);
  box-shadow: 0 20px 56px rgb(24 92 255 / 0.1);
}

.fit-card__label {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: var(--color-blue);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
}

.archive-card {
  border-color: rgb(7 10 18 / 0.1);
  background: var(--color-surface);
}

.archive-card__media {
  position: relative;
  overflow: hidden;
  background: #111827;
}

.archive-card__media .badge {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
}

.telegram-banner {
  position: relative;
  overflow: hidden;
  min-height: 18rem;
  align-content: end;
  border-color: rgb(24 92 255 / 0.25);
  background:
    radial-gradient(circle at 90% 12%, rgb(255 255 255 / 0.28), transparent 13rem),
    linear-gradient(135deg, #0d45e8, #185cff 56%, #5d8dff);
  color: #fff;
  box-shadow: 0 30px 80px rgb(24 92 255 / 0.24);
}

.telegram-banner .section-copy {
  max-width: 38rem;
  color: rgb(255 255 255 / 0.78);
}

.telegram-banner .button.primary {
  background: #fff;
  color: var(--color-blue);
  box-shadow: 0 16px 34px rgb(7 10 18 / 0.16);
}

.telegram-banner__ghost {
  position: absolute;
  right: -0.28em;
  top: -0.22em;
  color: rgb(255 255 255 / 0.1);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(6rem, 24vw, 18rem);
  line-height: 0.8;
  letter-spacing: 0;
  pointer-events: none;
}

.faq-list details {
  border-color: rgb(7 10 18 / 0.1);
  background: rgb(255 255 255 / 0.9);
  box-shadow: 0 12px 32px rgb(15 23 42 / 0.06);
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.faq-list summary::after {
  content: "+";
  color: var(--color-blue);
}

.faq-list details[open] summary::after {
  content: "-";
}

.site-footer {
  border-top: 1px solid rgb(7 10 18 / 0.08);
  background: linear-gradient(180deg, #ffffff, #eef2f7);
  color: var(--color-ink);
}

.footer-links a,
.site-footer .muted {
  color: var(--color-muted);
}

@media (prefers-reduced-motion: no-preference) {
  .reveal-on-scroll {
    opacity: 0.98;
    transform: translateY(14px);
    transition: opacity 520ms var(--ease), transform 520ms var(--ease);
  }

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

@media (max-width: 640px) {
  .woocommerce div.product .summary {
    padding: 1.25rem 1rem;
  }

  .woocommerce div.product .product_title {
    font-size: clamp(1.75rem, 8vw, 2rem);
    line-height: 1;
    text-wrap: pretty;
  }

  .woocommerce div.product .woocommerce-variation-add-to-cart {
    grid-template-columns: 1fr;
  }

  .woocommerce div.product .woocommerce-variation-add-to-cart .quantity {
    width: min(7.5rem, 100%);
  }

  .woocommerce div.product .others-product-panels {
    grid-template-columns: 1fr;
  }

  .woocommerce div.product .others-product-panels .info-panel,
  .woocommerce div.product .others-product-panels .info-panel:nth-child(2n),
  .woocommerce div.product .others-product-panels .info-panel:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .woocommerce div.product .others-product-panels .info-panel:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 480px) {
  .container,
  .header-inner {
    width: min(100% - 1rem, 1440px);
  }

  .header-inner {
    gap: 0.45rem;
  }

  .brand-logo {
    width: clamp(7.6rem, 38vw, 8.8rem);
  }

  .header-actions {
    gap: 0.35rem;
  }

  .cart-button,
  .menu-button {
    min-height: 44px;
    padding: 0.65rem 0.7rem;
  }

  .cart-button {
    width: 44px;
    padding: 0;
    font-size: 0;
  }

  .cart-button .cart-count {
    font-size: 0.72rem;
  }
}

@media (max-width: 360px) {
  .hero-editorial .hero-content {
    width: 100%;
    justify-items: start;
  }

  .hero-editorial .hero-title {
    max-width: 100%;
    font-size: clamp(1.55rem, 7vw, 1.72rem);
  }

  .hero-editorial .hero-copy {
    max-width: 17rem;
    font-size: 0.95rem;
  }

  .hero-editorial .button-row {
    width: min(100%, 15rem);
  }
}

@media (min-width: 640px) {
  .container,
  .header-inner {
    width: min(100% - 2rem, 1440px);
  }

  .hero-editorial .button-row {
    width: auto;
  }

  .hero-editorial .button-row .button {
    width: auto;
  }
}

@media (min-width: 840px) {
  .hero-editorial {
    padding-top: clamp(1.5rem, 3vw, 2.25rem);
  }

  .hero-editorial-grid {
    grid-template-columns: minmax(20rem, 0.78fr) minmax(0, 1.22fr);
    align-items: stretch;
  }

  .hero-editorial .hero-content {
    min-height: clamp(36rem, calc(78vh - 4rem), 48rem);
  }

  .hero-editorial .hero-title {
    font-size: clamp(3.8rem, 5.6vw, 5rem);
  }

  .hero-mobile-break {
    display: inline;
  }

  .hero-visual {
    min-height: clamp(36rem, calc(78vh - 4rem), 48rem);
  }

  .hero-visual-main {
    width: min(72%, 36rem);
    margin-left: 6%;
    justify-self: start;
  }

  .hero-visual-side {
    display: block;
  }

  .hero-visual-cat {
    right: 0;
    top: 7%;
    width: min(32%, 15.5rem);
  }

  .hero-visual-hoodie {
    right: 2%;
    bottom: 6%;
    width: min(34%, 16.5rem);
  }

  .hero-visual-tag {
    left: 8%;
    bottom: 7%;
  }

  .drop-ticker {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: initial;
    grid-auto-columns: initial;
  }

  .section-rail .category-grid {
    grid-auto-flow: initial;
    grid-auto-columns: initial;
    overflow: visible;
  }

  .woocommerce ul.products li.product .button,
  .products li.product .button {
    width: auto;
    justify-self: start;
  }
}

@media (min-width: 1180px) {
  .products,
  .woocommerce ul.products,
  .product-grid {
    gap: 1.1rem;
  }

  .woocommerce ul.products li.product:hover,
  .products li.product:hover {
    transform: translateY(-5px);
  }
}
