:root {
  --red: #8f1226;
  --black: #111111;
  --white: #ffffff;
  --muted: #8d8884;
  --line: #ece8e3;
  --soft: #f7f5f2;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--black);
  background: var(--white);
}

body.cart-open,
body.checkout-open,
body.product-open {
  overflow: hidden;
}

body.intro-locked {
  overflow: hidden;
  height: 100vh;
}

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

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

.honeypot-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.site-shell {
  min-height: 100vh;
}

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: 52px;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  z-index: 50;
  transform: translateY(-100%);
  transition: transform 0.22s ease;
}

body.nav-visible .nav {
  transform: translateY(0);
}

.nav-logo {
  width: 38px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fcf1db;
}

.nav-logo svg {
  width: 100%;
  height: 100%;
  display: block;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  align-items: center;
}

.nav-links-left {
  justify-content: flex-end;
}

.nav-links-right {
  justify-content: flex-start;
}

.nav-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 28px;
  pointer-events: none;
}

.nav-center .nav-links,
.nav-center .nav-logo {
  pointer-events: auto;
}

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

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
}

.lang-btn {
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.72);
  padding: 6px 4px;
  min-width: 28px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  cursor: pointer;
}

.lang-btn.active {
  color: #ffffff;
}

.nav-cart {
  border: 1px solid rgba(255,255,255,0.24);
  background: transparent;
  color: #fff;
  padding: 7px 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  cursor: pointer;
}

.intro {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

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

.intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.38));
}

.intro-inner {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  padding: 90px 20px 40px;
}

.intro-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.intro-card img {
  width: 96px;
  filter: brightness(0) invert(1);
}

.intro-brand {
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-size: 14px;
}

.intro-menu {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.intro-menu a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
}

.intro-menu button {
  border: none;
  background: transparent;
  color: inherit;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  cursor: pointer;
  padding: 0;
}

.section {
  padding: 74px 14px 40px;
  position: relative;
  overflow: hidden;
}

.shop-section {
  background: #f1ebe2;
  color: #111111;
  padding-top: 96px;
  padding-bottom: 72px;
}

#looks,
.footer {
  background: #f1ebe2;
}

.shop-section::before,
#looks::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.8;
  background-image:
    radial-gradient(circle at 14% 18%, rgba(208, 194, 176, 0.18), transparent 28%),
    radial-gradient(circle at 85% 16%, rgba(237, 230, 219, 0.88), transparent 24%),
    radial-gradient(circle at 68% 74%, rgba(210, 196, 178, 0.18), transparent 22%);
}

.shop-section::after,
#looks::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(241,235,226,0.9), rgba(241,235,226,0.9)),
    radial-gradient(rgba(32,24,18,0.06) 0.55px, transparent 0.55px);
  background-size: auto, 18px 18px;
}

.section-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.float-shape {
  position: absolute;
  display: block;
  border-radius: 999px;
  filter: blur(22px);
  opacity: 0.24;
  animation: driftFloat 32s ease-in-out infinite;
}

.shape-one {
  width: 360px;
  height: 360px;
  top: 120px;
  left: -110px;
  background: radial-gradient(circle, rgba(214, 201, 185, 0.26) 0%, rgba(214, 201, 185, 0.05) 58%, transparent 100%);
}

.shape-two {
  width: 260px;
  height: 260px;
  top: 42px;
  right: 10%;
  background: radial-gradient(circle, rgba(240, 235, 228, 0.9) 0%, rgba(220, 210, 196, 0.1) 62%, transparent 100%);
  animation-duration: 40s;
}

.shape-three {
  width: 220px;
  height: 220px;
  bottom: 70px;
  right: -30px;
  background: radial-gradient(circle, rgba(223, 214, 204, 0.22) 0%, rgba(223, 214, 204, 0.04) 60%, transparent 100%);
  animation-duration: 36s;
}

.section-atmosphere-soft .float-shape {
  opacity: 0.2;
}

.shape-four {
  width: 280px;
  height: 280px;
  top: 28px;
  left: 6%;
  background: radial-gradient(circle, rgba(226, 218, 208, 0.34) 0%, rgba(226, 218, 208, 0.05) 60%, transparent 100%);
  animation-duration: 42s;
}

.shape-five {
  width: 360px;
  height: 360px;
  bottom: -120px;
  right: 0;
  background: radial-gradient(circle, rgba(238, 232, 225, 0.72) 0%, rgba(222, 214, 205, 0.06) 58%, transparent 100%);
  animation-duration: 46s;
}

.section > :not(.section-atmosphere) {
  position: relative;
  z-index: 1;
}

@keyframes driftFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(10px, -14px, 0) scale(1.03);
  }
}

.section-title {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 13px;
  margin: 0 0 28px;
}

.toolbar {
  max-width: 1440px;
  margin: 0 auto 18px;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.toolbar input {
  flex: 1;
  min-width: 220px;
  height: 42px;
  border: 1px solid #d8d2ca;
  background: #ffffff;
  color: #171717;
  padding: 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.toolbar input::placeholder {
  color: rgba(17,17,17,0.45);
}

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

.chip {
  border: 1px solid #d8d2ca;
  background: #ffffff;
  color: rgba(17,17,17,0.72);
  padding: 10px 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  cursor: pointer;
}

.chip.active {
  background: #151515;
  color: #ffffff;
  border-color: #151515;
}

.summary {
  max-width: 1440px;
  margin: 0 auto 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
  color: rgba(17,17,17,0.52);
}

.grid {
  max-width: 1820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.product-card {
  position: relative;
  background: transparent;
}

.product-card-media {
  position: relative;
}

.product-card-image {
  width: 100%;
  aspect-ratio: 0.86 / 1;
  object-fit: contain;
  background: #ffffff;
  border: 1px solid #ece6df;
  padding: 28px;
  display: block;
}

.product-card-image-secondary {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.product-card.is-mobile-flip .product-card-image-secondary.is-ready {
  animation: mobileProductFlip 4.8s ease-in-out infinite;
}

@media (hover: hover) and (pointer: fine) {
  .product-card:hover .product-card-image-secondary.is-ready {
    opacity: 1;
  }
}

@keyframes mobileProductFlip {
  0%, 38% {
    opacity: 0;
  }
  50%, 88% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.product-meta {
  padding: 22px 8px 4px;
  text-align: center;
}

.product-name {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #171717;
}

.product-price {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #8d745a;
}

.quick-add {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: 1px solid #1a1a1a;
  background: #202426;
  color: #fff;
  cursor: pointer;
}

.lifestyle-grid {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.look-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #e9e2d8;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.look-card-media {
  position: absolute;
  inset: 0;
}

.look-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.look-card-image-secondary {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.28s ease;
}

@media (hover: hover) and (pointer: fine) {
  .look-card.has-hover-image:hover .look-card-image-secondary.is-ready {
    opacity: 1;
  }
}

.look-card.is-mobile-flip .look-card-image-secondary.is-ready {
  animation: mobileProductFlip 4.8s ease-in-out infinite;
}

.faq-section {
  background:
    radial-gradient(circle at top left, rgba(228, 217, 203, 0.42), transparent 32%),
    radial-gradient(circle at bottom right, rgba(241, 235, 226, 0.9), transparent 30%),
    #efe7dc;
  color: #171310;
  padding: 42px 20px 28px;
}

.faq-shell {
  max-width: 1240px;
  margin: 0 auto;
}

.faq-item {
  border-top: 1px solid rgba(71, 55, 41, 0.14);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(71, 55, 41, 0.14);
}

.faq-trigger {
  width: 100%;
  min-height: 92px;
  border: none;
  background: transparent;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0;
  text-align: left;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.15;
  cursor: pointer;
}

.faq-trigger-main {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.faq-icon,
.faq-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.faq-icon {
  width: 30px;
  height: 30px;
  color: #201912;
}

.faq-icon svg,
.faq-chevron svg {
  width: 100%;
  height: 100%;
  display: block;
}

.faq-icon svg path,
.faq-chevron svg path {
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-chevron {
  width: 22px;
  height: 22px;
  color: rgba(23, 19, 16, 0.72);
  transition: transform 0.22s ease;
}

.faq-trigger[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-content {
  max-width: 760px;
  max-height: 0;
  overflow: hidden;
  color: rgba(23, 19, 16, 0.68);
  font-size: 16px;
  line-height: 1.7;
  transition: max-height 0.28s ease, padding-bottom 0.28s ease;
  padding: 0 0 0 44px;
}

.faq-content p {
  margin: 0;
}

.faq-content p + p {
  margin-top: 16px;
}

.faq-item.is-open .faq-content {
  max-height: 520px;
  padding-bottom: 26px;
}

.faq-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid #171310;
  background: #171310;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  margin-top: 18px;
  text-decoration: none;
}

.look-card {
  position: relative;
  aspect-ratio: 3 / 4;
  background: #e8e3dd;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.look-card.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.look-card-empty {
  min-height: 280px;
}

.look-card span {
  position: absolute;
  inset: auto 0 12px 14px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
  z-index: 2;
}

.look-card.is-shoppable {
  cursor: pointer;
}

.look-shop-btn {
  position: absolute;
  right: 14px;
  bottom: 12px;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(17, 17, 17, 0.38);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 9px;
  z-index: 1;
  cursor: pointer;
}

.footer {
  padding: 0 20px 20px;
}

.footer-shell {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 28px 34px;
}

.footer-logo {
  width: 138px;
  filter: brightness(0) invert(1);
}

.footer-right {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
}

.footer-contact-label {
  display: block;
  margin-right: 6px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  opacity: 0.82;
}

.footer-icon-link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.footer-icon-link-label {
  width: auto;
  padding: 0 12px;
  gap: 8px;
}

.footer-icon-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.48);
}

.footer-icon-link svg {
  width: 18px;
  height: 18px;
  display: block;
}

.footer-icon-link img {
  width: 16px;
  height: 16px;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-link-text {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-icon-link path {
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-contact-fab {
  position: fixed;
  right: 18px;
  bottom: 20px;
  width: 62px;
  height: 62px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #0f0f10;
  color: #fff;
  box-shadow: 0 14px 32px rgba(15, 15, 16, 0.24);
  z-index: 45;
}

.mobile-contact-fab svg {
  width: 30px;
  height: 30px;
  display: block;
}

.mobile-contact-fab path {
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.drawer,
.overlay,
.modal,
.checkout-overlay {
  position: fixed;
  inset: 0;
}

.overlay,
.checkout-overlay {
  background: rgba(0,0,0,0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 80;
}

.drawer {
  left: auto;
  width: min(420px, 100vw);
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 90;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
}

body.cart-open #cartOverlay,
body.product-open #productOverlay,
body.checkout-open .checkout-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.cart-open #cartDrawer,
body.product-open #productDrawer {
  transform: translateX(0);
}

.drawer-header,
.drawer-footer {
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.drawer-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
}

.drawer-close {
  border: 1px solid var(--line);
  background: #fff;
  width: 34px;
  height: 34px;
  cursor: pointer;
}

.drawer-items {
  flex: 1;
  overflow: auto;
  padding: 10px 18px;
}

.drawer-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.drawer-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  background: var(--soft);
}

.drawer-item-name,
.drawer-item-meta,
.drawer-item-price,
.drawer-empty {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
}

.drawer-item-price {
  font-weight: 700;
}

.cart-stepper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.drawer-remove {
  margin-top: 8px;
  border: none;
  background: none;
  padding: 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  cursor: pointer;
}

.drawer-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  margin-bottom: 14px;
}

.primary-btn,
.secondary-btn {
  width: 100%;
  height: 44px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
}

.primary-btn {
  border: 1px solid var(--black);
  background: var(--black);
  color: #fff;
}

.secondary-btn {
  border: 1px solid var(--line);
  background: #fff;
}

.product-drawer {
  width: min(460px, 100vw);
}

.product-drawer-body {
  display: grid;
  gap: 18px;
}

.product-picker-media img {
  width: 100%;
  aspect-ratio: 0.92 / 1;
  object-fit: contain;
  background: #fff;
  border: 1px solid #ece6df;
  padding: 22px;
}

.product-picker-name {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 14px;
}

.product-picker-price {
  margin-top: 8px;
  color: #8d745a;
  font-size: 15px;
}

.product-picker-block {
  display: grid;
  gap: 10px;
}

.product-picker-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  color: rgba(17,17,17,0.6);
}

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

.size-chip,
.qty-btn {
  min-height: 40px;
  border: 1px solid #d8d2ca;
  background: #fff;
  cursor: pointer;
}

.size-chip {
  min-width: 56px;
  padding: 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
}

.size-chip.active {
  border-color: #171717;
  background: #171717;
  color: #fff;
}

.qty-stepper {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  gap: 8px;
  align-items: center;
}

.qty-btn {
  width: 40px;
  height: 40px;
  font-size: 24px;
  line-height: 1;
}

.qty-btn.small {
  width: 28px;
  height: 28px;
  min-height: 28px;
  font-size: 18px;
}

.qty-stepper input {
  width: 100%;
  min-height: 40px;
  border: 1px solid #d8d2ca;
  text-align: center;
}

.checkout-page {
  padding: 88px 16px 40px;
}

.checkout-back {
  max-width: 1120px;
  margin: 0 auto 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid #d8d2ca;
  background: #fffaf3;
  color: #171310;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
}

.checkout-back-arrow {
  font-size: 18px;
  line-height: 1;
}

.checkout-shell {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

.contacts-page {
  min-height: 100vh;
  background: #fffdf9;
}

.contacts-shell {
  max-width: 920px;
  margin: 0 auto;
  padding: 88px 20px 60px;
}

.contacts-hero {
  padding-top: 24px;
}

.contacts-eyebrow {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: #7f7367;
}

.contacts-title {
  margin: 14px 0 40px;
  text-align: center;
  font-size: clamp(52px, 8vw, 82px);
  line-height: 0.95;
  font-weight: 500;
}

.contacts-form {
  display: grid;
  gap: 22px;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contacts-form input,
.contacts-form textarea {
  width: 100%;
  min-height: 56px;
  border: 1px solid #92877c;
  background: #fff;
  padding: 16px 22px;
  font-size: 15px;
  color: #171310;
}

.contacts-form textarea {
  min-height: 170px;
  resize: vertical;
}

.contacts-submit {
  width: 130px;
  height: 50px;
  border: 1px solid #09111c;
  background: #09111c;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

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

.panel-title {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
}

.field small {
  display: block;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.5;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #242424;
  padding: 12px 14px;
}

.field textarea {
  min-height: 90px;
  resize: vertical;
}

.inline {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px;
}

.phone-input-wrap {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  min-height: 46px;
  border: 1px solid #242424;
  background: #fff;
  overflow: hidden;
}

.country-select {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  min-height: 46px;
  border: 1px solid #242424;
  background: #fff;
  overflow: hidden;
}

.country-flag {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background: #f5efe7;
  border-right: 1px solid #d8d2ca;
  font-size: 22px;
  line-height: 1;
}

.phone-flag-inline {
  border-right: 1px solid #d8d2ca;
}

.country-flag img.emoji {
  width: 22px;
  height: 22px;
  margin: 0;
}

.phone-input-wrap input {
  border: none !important;
  min-height: 46px;
}

.field .notice {
  margin-top: 8px;
}

.country-select select {
  width: 100%;
  min-height: 46px;
  border: none;
  background: transparent;
  padding: 0 12px 0 10px;
}

.promo-row {
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: 10px;
}

.totals {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: 16px;
}

.totals-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.totals-row strong {
  font-size: 18px;
}

.admin-page {
  min-height: 100vh;
  background: #efeae3;
  padding: 24px 16px 40px;
}

.admin-shell {
  max-width: 1500px;
  margin: 0 auto;
}

.admin-login,
.admin-panel {
  background: #fffdf9;
  border: 1px solid #ddd2c7;
  padding: 24px;
  box-shadow: 0 18px 48px rgba(92, 72, 54, 0.06);
}

.admin-login {
  max-width: 420px;
  margin: 50px auto 0;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
  padding: 0 0 18px;
  border-bottom: 1px solid #e8ddd2;
}

.admin-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  color: #7d6f61;
}

.admin-title {
  margin: 8px 0 8px;
  font-size: 36px;
  line-height: 1;
}

.admin-subtitle,
.editor-subtitle,
.muted-line {
  color: #786c61;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.admin-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stats-grid,
.admin-grid {
  display: grid;
  gap: 14px;
}

.stats-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-bottom: 20px;
}

.stat-card {
  border: 1px solid #e2d6cb;
  padding: 18px;
  background: linear-gradient(180deg, #fffdf9 0%, #f7f0e8 100%);
  min-height: 122px;
}

.stat-card .value {
  font-size: 28px;
  font-weight: 700;
  margin-top: 8px;
}

.stat-card .label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: #7f7367;
}

.card {
  border: 1px solid #e2d6cb;
  padding: 18px;
  background: #fff;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.insight-card {
  border: 1px solid #e7ddd2;
  background: linear-gradient(180deg, #fffdf9 0%, #fbf4eb 100%);
  padding: 16px;
}

.insight-rank {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10px;
  color: #8a7c6d;
}

.insight-name {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

.insight-meta {
  margin-top: 12px;
  display: grid;
  gap: 6px;
  color: #6f6357;
  font-size: 13px;
}

.admin-workspace {
  display: block;
}

.admin-sidebar {
  display: grid;
  gap: 18px;
  align-content: start;
  min-width: 0;
}

.admin-main {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.admin-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 13, 10, 0.34);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  z-index: 110;
}

.admin-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(520px, 100vw);
  height: 100vh;
  background: #fffdf9;
  border-left: 1px solid #ddd2c7;
  box-shadow: -14px 0 40px rgba(56, 40, 28, 0.12);
  transform: translateX(100%);
  transition: transform 0.24s ease;
  z-index: 111;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}

.admin-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 14px;
  border-bottom: 1px solid #e8ddd2;
}

.admin-drawer-header .panel-title {
  margin-bottom: 0;
}

.admin-drawer .admin-sidebar {
  padding: 18px;
  overflow: auto;
  min-height: 0;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

.admin-drawer-close {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
}

body.admin-drawer-open {
  overflow: hidden;
  overscroll-behavior: none;
}

body.admin-drawer-open .admin-drawer-overlay {
  opacity: 1;
  pointer-events: auto;
}

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

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

.admin-switch {
  border: 1px solid #dbcec2;
  background: #fff;
  color: #2a2420;
  height: 42px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
  cursor: pointer;
}

.admin-switch.active {
  background: #121212;
  border-color: #121212;
  color: #fff;
}

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

.editor-card.hidden {
  display: none !important;
}

.editor-head,
.list-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.editor-reset,
.admin-link-btn {
  width: auto;
  min-width: 132px;
  padding: 0 16px;
}

.admin-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  text-decoration: none;
}

.upload-progress {
  display: grid;
  gap: 8px;
}

.upload-progress-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 11px;
  color: #6f6357;
}

.upload-progress-track {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: #efe4d8;
  overflow: hidden;
}

.upload-progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8f1226 0%, #c2445c 100%);
  transition: width 0.18s ease;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.admin-form-grid input,
.admin-form-grid select {
  width: 100%;
  min-height: 44px;
  border: 1px solid #dbcec2;
  padding: 12px 14px;
  background: #fffdfb;
  min-width: 0;
}

.upload-field {
  width: 100%;
  min-height: 44px;
  border: 1px dashed #cdbdad;
  background: #fcf7f1;
  padding: 10px 14px;
  display: grid;
  gap: 6px;
  align-content: center;
  color: #51473f;
  cursor: pointer;
}

.upload-field span {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
}

.upload-field input[type="file"] {
  width: 100%;
  border: none;
  padding: 0;
  min-height: auto;
  background: transparent;
  max-width: 100%;
  font-size: 12px;
  overflow: hidden;
}

.admin-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.editor-actions {
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: 10px;
}

.admin-table-wrap {
  overflow: auto;
  border: 1px solid #efe4d8;
  background: #fffdfa;
}

.admin-mobile-list {
  display: none;
}

.admin-mobile-card {
  border: 1px solid #e7ddd2;
  background: #fffdfa;
  padding: 14px;
}

.admin-mobile-card + .admin-mobile-card {
  margin-top: 10px;
}

.admin-mobile-card.is-selected {
  border-color: #d4c3b3;
  background: #f8efe5;
}

.admin-mobile-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.admin-mobile-meta {
  margin-top: 12px;
  display: grid;
  gap: 6px;
  color: #786c61;
}

.admin-mobile-actions {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.admin-mobile-actions .table-action,
.admin-mobile-actions .order-status-select {
  width: 100%;
}

.product-cell {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: center;
}

.product-cell img,
.preview-item img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border: 1px solid #ece2d8;
  background: #fff;
}

.click-row {
  cursor: pointer;
  transition: background 0.18s ease;
}

.click-row:hover {
  background: #faf5ef;
}

.click-row.is-selected {
  background: #f4ece2;
}

.row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.table-action {
  border: 1px solid #d8ccbf;
  background: #fff;
  color: #161616;
  height: 30px;
  padding: 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  cursor: pointer;
}

.table-action.danger {
  border-color: #b84d4d;
  color: #9a2424;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid #ddd2c7;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.status-pill.is-active {
  background: #f2f6ef;
  border-color: #b5c9aa;
  color: #4f6e3e;
}

.status-pill.is-muted {
  background: #f7f4f0;
  color: #776d62;
}

.order-status-select {
  min-height: 34px;
  border: 1px solid #dbcec2;
  background: #fffdf9;
  padding: 6px 10px;
}

.order-preview {
  background: linear-gradient(180deg, #fffdfa 0%, #f8efe5 100%);
}

.order-preview.empty {
  color: #786c61;
}

.order-preview-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.order-preview-total {
  font-size: 24px;
  font-weight: 700;
}

.preview-block + .preview-block {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e8ddd2;
}

.preview-list {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.preview-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: center;
}

.table-wrap {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  text-align: left;
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  font-size: 13px;
}

.stack {
  display: grid;
  gap: 12px;
}

.hidden {
  display: none !important;
}

.notice {
  padding: 12px 14px;
  border: 1px solid #e0d4c8;
  background: #f8f1ea;
  margin-bottom: 14px;
  font-size: 13px;
}

.notice-success {
  border-color: #bfd3b2;
  background: #f1f8ec;
}

.notice-neutral {
  border-color: #e0d4c8;
  background: #f8f1ea;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav {
    padding: 0 12px;
    justify-content: flex-end;
  }

  .nav-center {
    left: 50%;
    transform: translate(-50%, -50%);
    gap: 0;
  }

  .nav-logo {
    width: 34px;
    height: 32px;
  }

  .nav-actions {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .lang-switch {
    gap: 0;
  }

  .lang-btn {
    min-width: 24px;
    padding: 6px 3px;
    font-size: 10px;
  }

  .nav-cart {
    min-width: auto;
    padding: 8px 10px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .toolbar,
  .checkout-shell,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .toolbar {
    align-items: stretch;
  }

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

  .footer-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-form-grid,
  .editor-actions {
    grid-template-columns: 1fr;
  }

  .admin-panel {
    padding: 18px 16px;
  }

  .admin-page {
    padding: 0;
  }

  .checkout-back {
    display: inline-flex;
  }

  .card {
    padding: 16px;
  }

  .editor-card,
  .order-preview {
    position: static;
  }

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

  .admin-drawer {
    inset: 0;
    width: 100dvw;
    height: 100dvh;
    max-width: none;
    border-left: none;
    box-shadow: none;
  }

  .admin-drawer-header {
    position: sticky;
    top: 0;
    z-index: 2;
    background: #fffdf9;
    padding: 16px 14px 12px;
  }

  .admin-drawer .admin-sidebar {
    padding: 14px 14px max(20px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 640px) {
  html,
  body,
  .admin-page,
  .admin-shell,
  .admin-panel,
  .admin-main,
  .admin-drawer,
  .admin-drawer .admin-sidebar {
    overflow-x: hidden;
  }

  body.admin-page {
    width: 100%;
    max-width: 100%;
  }

  .admin-shell,
  .admin-panel,
  .admin-main,
  .stats-grid,
  .stat-card,
  .list-head,
  .admin-mobile-list,
  .admin-mobile-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .nav {
    padding: 0 12px;
  }

  .grid,
  .lifestyle-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .product-card-image {
    padding: 20px;
  }

  .checkout-page {
    padding: 72px 12px 28px;
  }

  .checkout-back {
    width: 100%;
    margin-bottom: 12px;
    justify-content: flex-start;
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .product-name {
    font-size: 10px;
    letter-spacing: 0.16em;
  }

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

  .inline,
  .promo-row {
    grid-template-columns: 1fr;
  }

  .admin-title {
    font-size: 28px;
  }

  .admin-page {
    padding: 0;
    background: #efeae3;
  }

  .admin-login,
  .admin-panel {
    padding: 14px 12px 18px;
    border: none;
    box-shadow: none;
    width: 100%;
  }

  .admin-header-actions,
  .editor-actions {
    width: 100%;
  }

  .admin-header-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .admin-header,
  .editor-head,
  .list-head {
    flex-direction: column;
  }

  .admin-drawer {
    inset: 0;
    width: 100dvw;
    height: 100dvh;
    border-radius: 0;
  }

  .card {
    padding: 14px 12px;
    width: 100%;
    min-width: 0;
    overflow: hidden;
  }

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

  .admin-switch:last-child {
    grid-column: 1 / -1;
  }

  .admin-switch {
    height: 46px;
    padding: 0 10px;
    letter-spacing: 0.12em;
  }

  .admin-settings-switcher .admin-switch {
    height: 42px;
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .editor-reset,
  .admin-link-btn {
    width: 100%;
    min-width: 0;
  }

  .admin-form-grid input,
  .admin-form-grid select,
  .upload-field,
  .order-status-select {
    font-size: 16px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .upload-field {
    padding: 12px;
  }

  .upload-field input[type="file"] {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    font-size: 12px;
    overflow: hidden;
  }

  .stack,
  .admin-form-grid,
  .editor-actions,
  .admin-checks,
  .admin-mobile-list,
  .admin-mobile-card,
  .admin-mobile-head,
  .admin-mobile-meta,
  .admin-mobile-actions {
    min-width: 0;
    max-width: 100%;
  }

  .admin-settings-switcher {
    gap: 6px;
    margin-bottom: 2px;
  }

  .admin-settings-switcher .admin-switch {
    min-width: 0;
    padding: 0 8px;
  }

  .editor-subtitle,
  .muted-line {
    font-size: 14px;
    line-height: 1.45;
  }

  [data-settings-panel-card] .stack {
    gap: 10px;
  }

  [data-settings-panel-card] .upload-field {
    gap: 8px;
  }

  .admin-checks {
    gap: 10px 14px;
    font-size: 13px;
  }

  .admin-drawer-header {
    padding: 12px;
  }

  .admin-drawer-close {
    width: 36px;
    height: 36px;
  }

  table {
    min-width: 680px;
  }

  .admin-drawer .drawer-section-title {
    display: none;
  }

  .admin-table-wrap {
    display: none;
  }

  .admin-mobile-list {
    display: block;
  }

  .admin-mobile-head .product-cell {
    grid-template-columns: 44px 1fr;
    gap: 10px;
  }

  .admin-mobile-head .product-cell img {
    width: 44px;
    height: 44px;
  }

  .admin-mobile-actions {
    grid-template-columns: 1fr;
  }

  .order-preview-top {
    flex-direction: column;
  }

  .order-preview-total {
    font-size: 18px;
  }

  .row-actions,
  .product-cell,
  .admin-mobile-head {
    min-width: 0;
  }

  .admin-mobile-card .status-pill {
    max-width: 100%;
    flex-shrink: 1;
  }

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

  .footer {
    padding: 0 12px 12px;
  }

  .footer-shell {
    gap: 14px;
    padding: 18px 14px;
    align-items: center;
  }

  .footer-logo {
    width: 96px;
  }

  .footer-right {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
  }

  .footer-icon-link {
    width: 38px;
    height: 38px;
  }

  .footer-icon-link-label {
    width: auto;
    padding: 0 10px;
  }

  .footer-link-text {
    font-size: 10px;
  }

  .mobile-contact-fab {
    display: inline-flex;
  }

  .faq-trigger {
    min-height: 82px;
    font-size: 18px;
  }

  .faq-trigger-main {
    gap: 12px;
  }

  .faq-icon {
    width: 26px;
    height: 26px;
  }

  .faq-chevron {
    width: 18px;
    height: 18px;
  }

  .faq-content {
    font-size: 14px;
    padding-left: 34px;
  }

  .product-cell,
  .preview-item {
    grid-template-columns: 48px 1fr;
  }

  .product-cell img,
  .preview-item img {
    width: 48px;
    height: 48px;
  }

  .contacts-shell {
    padding: 84px 16px 42px;
  }

  .contacts-title {
    margin-bottom: 28px;
  }

  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contacts-form {
    gap: 14px;
  }

  .contacts-form input,
  .contacts-form textarea {
    min-height: 52px;
    padding: 14px 16px;
  }

  .contacts-form textarea {
    min-height: 150px;
  }

  .insights-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .nav {
    height: 50px;
    padding: 0 10px;
  }

  .nav-center {
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .nav-logo {
    width: 32px;
    height: 30px;
  }

  .nav-actions {
    gap: 8px;
  }

  .lang-btn {
    min-width: 20px;
    padding: 6px 2px;
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .nav-cart {
    padding: 7px 8px;
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .toolbar {
    gap: 10px;
    margin-bottom: 14px;
  }

  .summary {
    margin-bottom: 8px;
  }

  .grid {
    gap: 12px;
  }

  .product-card-image {
    padding: 14px;
  }

  .product-meta {
    padding: 14px 4px 2px;
  }

  .product-name {
    font-size: 9px;
    letter-spacing: 0.14em;
    line-height: 1.5;
  }

  .product-price {
    margin-top: 6px;
    font-size: 11px;
  }

  .lifestyle-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .look-card {
    min-height: 0;
    aspect-ratio: 4 / 5;
    padding: 12px;
  }

  .look-card-image {
    object-position: center top;
  }

  .look-card span {
    left: 12px;
    bottom: 10px;
    font-size: 9px;
    letter-spacing: 0.14em;
  }

  .look-shop-btn {
    right: 12px;
    bottom: 10px;
    min-height: 30px;
    padding: 0 10px;
    font-size: 8px;
  }

  .mobile-contact-fab {
    right: 14px;
    bottom: calc(18px + env(safe-area-inset-bottom));
    width: 58px;
    height: 58px;
  }
}
