@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=Instrument+Sans:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap");

:root {
  --bg: #f3eee7;
  --paper: #faf7f1;
  --ink: #10100f;
  --ink-soft: #45423d;
  --line: #c8bfb2;
  --line-strong: #8c8172;
  --accent: #c9652e;
  --accent-dark: #a74e21;
  --accent-deep: #8e431c;
  --btn-text: #fff7ef;
  --btn-shadow: 0 10px 22px rgba(117, 58, 27, 0.28);
  --btn-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --accent-soft: #f1c0a4;
  --good: #1d7a47;
  --bad: #af2d29;
  --shadow: 0 18px 44px rgba(16, 15, 14, 0.17);
}

@keyframes premium-btn-shine {
  0% {
    opacity: 0;
    transform: translateX(-150%);
  }
  20% {
    opacity: 0.08;
  }
  50% {
    opacity: 0.38;
  }
  100% {
    opacity: 0;
    transform: translateX(150%);
  }
}

@keyframes premium-float {
  0%,
  100% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(calc(-50% - 5px));
  }
}

@keyframes premium-sheen-pass {
  0% {
    opacity: 0;
    transform: translateX(-120%);
  }
  45% {
    opacity: 0.16;
  }
  100% {
    opacity: 0;
    transform: translateX(140%);
  }
}

@keyframes premium-icon-breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background:
    radial-gradient(circle at 7% 8%, rgba(201, 101, 46, 0.16), transparent 32%),
    radial-gradient(circle at 86% 14%, rgba(18, 18, 18, 0.08), transparent 38%),
    linear-gradient(130deg, #f8f4ed 0%, #eee7dc 54%, #f9f5ee 100%);
  color: var(--ink);
  font-family: "Instrument Sans", "Segoe UI", sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before {
  background-image:
    radial-gradient(rgba(34, 28, 22, 0.08) 0.5px, transparent 0.5px),
    radial-gradient(rgba(201, 101, 46, 0.06) 0.5px, transparent 0.5px);
  background-position:
    0 0,
    11px 11px;
  background-size:
    22px 22px,
    22px 22px;
  content: "";
  inset: 0;
  opacity: 0.25;
  pointer-events: none;
  position: fixed;
  z-index: -2;
}

body::after {
  background:
    radial-gradient(circle at 50% -8%, rgba(20, 20, 20, 0.12), transparent 44%),
    radial-gradient(circle at 50% 108%, rgba(20, 20, 20, 0.12), transparent 42%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

.info-ribbon {
  align-items: center;
  background:
    linear-gradient(120deg, #131312 0%, #1c1a18 50%, #141311 100%),
    linear-gradient(120deg, rgba(201, 101, 46, 0.16), transparent 54%);
  border-bottom: 1px solid rgba(201, 101, 46, 0.34);
  box-shadow: 0 10px 24px rgba(12, 11, 9, 0.24);
  color: #f9f3e7;
  display: grid;
  font-size: 0.72rem;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  letter-spacing: 0.09em;
  padding: 10px 4.5vw;
  text-transform: uppercase;
}

.info-ribbon p {
  margin: 0;
}

.info-ribbon p:nth-child(2) {
  text-align: center;
}

.info-ribbon p:last-child {
  text-align: right;
}

.main-header {
  align-items: center;
  backdrop-filter: blur(9px);
  background: rgba(250, 246, 239, 0.82);
  border-bottom: 1px solid rgba(130, 120, 104, 0.34);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  left: 0;
  padding: 14px 4.5vw;
  position: sticky;
  top: 0;
  z-index: 30;
}

.brand {
  align-items: center;
  color: inherit;
  display: inline-flex;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  border: 1px solid rgba(130, 120, 104, 0.35);
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(15, 14, 13, 0.15);
  display: block;
  height: 2.6rem;
  object-fit: cover;
  object-position: center;
  width: 2.6rem;
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
}

.brand-text strong {
  font-family: "Archivo Black", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  line-height: 1;
}

.brand-text small {
  color: #655f56;
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.main-nav {
  align-items: center;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 22px;
}

.main-nav a {
  color: var(--ink);
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav a:hover {
  color: var(--accent);
}

.top-category-tabs {
  align-items: center;
  display: inline-flex;
  position: relative;
}

.top-category-btn {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(244, 236, 226, 0.82));
  border: 1px solid rgba(159, 119, 86, 0.5);
  border-radius: 10px;
  box-shadow: 0 5px 12px rgba(89, 67, 48, 0.13);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  min-height: 30px;
  padding: 0 8px;
  text-transform: uppercase;
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.top-category-btn.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-color: var(--accent-deep);
  box-shadow: var(--btn-shadow);
  color: var(--btn-text);
}

.category-dropdown {
  position: relative;
}

.dropdown-trigger {
  padding-right: 12px;
}

.category-dropdown-panel {
  background: rgba(252, 249, 244, 0.99);
  border: 1px solid rgba(136, 126, 109, 0.22);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(16, 15, 14, 0.12), 0 2px 8px rgba(16, 15, 14, 0.06);
  display: none;
  left: 0;
  min-width: 200px;
  overflow: hidden;
  padding: 6px;
  position: absolute;
  top: calc(100% + 8px);
  z-index: 45;
}

.category-dropdown-panel.open {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.top-category-option {
  background: transparent;
  border: none;
  border-radius: 8px;
  color: var(--ink-soft);
  cursor: pointer;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  min-height: 34px;
  padding: 0 12px;
  text-align: left;
  text-transform: none;
  transition: background 0.13s ease, color 0.13s ease;
}

.top-category-option:hover {
  background: rgba(136, 126, 109, 0.1);
  color: var(--ink);
}

.top-category-option.active {
  background: var(--ink);
  color: #fff;
  font-weight: 700;
}

.top-category-option::after {
  display: none;
}

.cart-button {
  align-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border: 1px solid var(--accent-deep);
  border-radius: 11px;
  box-shadow: var(--btn-shadow);
  color: var(--btn-text);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  gap: 8px;
  min-height: 2.6rem;
  min-width: 3.6rem;
  padding: 0 10px;
  transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.cart-icon-wrap {
  align-items: center;
  display: inline-flex;
  height: 20px;
  justify-content: center;
  width: 20px;
}

.cart-icon {
  color: var(--btn-text);
  display: block;
  height: 19px;
  width: 19px;
}

.cart-count-badge {
  align-items: center;
  background: #fff;
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  font-size: 0.7rem;
  font-weight: 700;
  justify-content: center;
  min-height: 1.52rem;
  min-width: 1.52rem;
}

.top-category-btn:hover,
.top-category-option:hover,
.cart-button:hover,
.lang-btn:hover {
  border-color: rgba(159, 119, 86, 0.76);
  box-shadow: 0 10px 20px rgba(89, 67, 48, 0.18);
  transform: translateY(-1px);
}

.top-category-btn:focus-visible,
.top-category-option:focus-visible,
.cart-button:focus-visible,
.lang-btn:focus-visible,
.filter-chip:focus-visible,
.chip:focus-visible,
.drawer-header button:focus-visible,
.icon-btn:focus-visible,
.remove-btn:focus-visible,
.modal-close:focus-visible,
.modal-media-nav:focus-visible {
  box-shadow:
    0 0 0 3px rgba(201, 101, 46, 0.28),
    0 12px 24px rgba(117, 58, 27, 0.24);
  outline: none;
}

.button-solid,
.button-ghost,
.top-category-btn,
.top-category-option,
.cart-button,
.lang-btn,
.filter-chip,
.chip,
.drawer-header button,
.modal-close,
.remove-btn {
  backface-visibility: hidden;
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.button-solid::after,
.button-ghost::after,
.top-category-btn::after,
.top-category-option::after,
.cart-button::after,
.lang-btn::after,
.filter-chip::after,
.chip::after,
.drawer-header button::after,
.modal-close::after,
.remove-btn::after {
  background: linear-gradient(120deg, transparent 28%, rgba(255, 255, 255, 0.32) 48%, transparent 68%);
  content: "";
  inset: -1px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translateX(-150%);
  z-index: 1;
}

.button-solid:hover::after,
.button-ghost:hover::after,
.top-category-btn:hover::after,
.top-category-option:hover::after,
.cart-button:hover::after,
.lang-btn:hover::after,
.filter-chip:hover::after,
.chip:hover::after,
.drawer-header button:hover::after,
.modal-close:hover::after,
.remove-btn:hover::after {
  animation: premium-btn-shine 760ms var(--btn-ease) 1;
}

.button-solid:active,
.button-ghost:active,
.top-category-btn:active,
.top-category-option:active,
.cart-button:active,
.lang-btn:active,
.filter-chip:active,
.chip:active,
.drawer-header button:active,
.modal-close:active,
.icon-btn:active,
.remove-btn:active {
  transform: translateY(0) scale(0.97);
}

main {
  margin: 0 auto;
  max-width: 1380px;
  padding: 26px 4.5vw 86px;
  position: relative;
}

main::before {
  background: radial-gradient(circle, rgba(201, 101, 46, 0.2), transparent 62%);
  content: "";
  height: 360px;
  pointer-events: none;
  position: absolute;
  right: -150px;
  top: 60px;
  width: 360px;
  z-index: -1;
}

main::after {
  background: radial-gradient(circle, rgba(18, 22, 29, 0.13), transparent 64%);
  content: "";
  height: 320px;
  left: -140px;
  pointer-events: none;
  position: absolute;
  top: 520px;
  width: 320px;
  z-index: -1;
}

.side-social {
  background: rgba(251, 248, 243, 0.94);
  border: 1px solid rgba(130, 116, 98, 0.28);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(16, 15, 14, 0.1);
  display: grid;
  gap: 6px;
  left: 14px;
  padding: 10px 8px;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 130px;
  z-index: 24;
  backdrop-filter: blur(8px);
}

.side-social-item {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(130, 116, 98, 0.2);
  border-radius: 9px;
  color: #2a251f;
  display: inline-flex;
  font-size: 0.65rem;
  font-weight: 600;
  gap: 7px;
  letter-spacing: 0.07em;
  min-height: 32px;
  padding: 0 8px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.side-social-item:hover {
  background: rgba(201, 101, 46, 0.07);
  border-color: rgba(201, 101, 46, 0.4);
  color: var(--accent, #c9652e);
}

.side-social-icon {
  align-items: center;
  background: var(--accent, #c9652e);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  flex-shrink: 0;
  height: 20px;
  justify-content: center;
  width: 20px;
}

.side-social-icon svg {
  display: block;
  height: 11px;
  width: 11px;
}

.side-social-item.disabled {
  cursor: default;
  opacity: 0.45;
  pointer-events: none;
}

.hero-slab {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.3fr 0.7fr;
  grid-template-rows: minmax(220px, auto) minmax(220px, auto);
}

.hero-panel {
  border: 1px solid rgba(136, 126, 109, 0.36);
  border-radius: 16px;
  box-shadow:
    0 16px 34px rgba(16, 15, 14, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  min-height: 200px;
  overflow: hidden;
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.hero-panel:hover {
  border-color: rgba(201, 101, 46, 0.45);
  box-shadow:
    0 24px 44px rgba(16, 15, 14, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.hero-panel-lead {
  background:
    linear-gradient(150deg, rgba(12, 12, 11, 0.96), rgba(21, 20, 18, 0.9)),
    linear-gradient(130deg, rgba(201, 101, 46, 0.2), transparent 65%);
  color: #f7f2e9;
  grid-row: 1 / span 2;
  padding: clamp(28px, 4vw, 56px);
}

.hero-panel-lead::after {
  color: rgba(255, 255, 255, 0.07);
  content: "TIO";
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(8rem, 20vw, 16rem);
  line-height: 0.86;
  pointer-events: none;
  position: absolute;
  right: -22px;
  top: 10px;
}

.hero-mini {
  color: #f0cfbc;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  margin: 0;
  text-transform: uppercase;
}

.hero-panel-lead h1 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(2rem, 5.3vw, 4.4rem);
  letter-spacing: 0.01em;
  line-height: 0.92;
  margin: 14px 0 0;
  max-width: 12ch;
  text-transform: uppercase;
}

.hero-copy {
  color: rgba(243, 233, 220, 0.92);
  max-width: 44ch;
}

.hero-panel-card {
  background:
    linear-gradient(145deg, rgba(236, 229, 216, 0.96), rgba(247, 241, 231, 0.92)),
    linear-gradient(120deg, rgba(201, 101, 46, 0.2), transparent 64%);
  padding: 22px;
}

.hero-panel-card.alt {
  background:
    linear-gradient(145deg, rgba(227, 233, 239, 0.94), rgba(244, 247, 250, 0.94)),
    linear-gradient(120deg, rgba(26, 42, 58, 0.24), transparent 62%);
}

.hero-panel-card p {
  color: #686157;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  margin: 0;
  text-transform: uppercase;
}

.hero-panel-card strong {
  display: block;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.2rem, 2.6vw, 1.9rem);
  line-height: 1.05;
  margin-top: 8px;
  text-transform: uppercase;
}

.hero-panel-card span {
  color: #534c43;
  display: block;
  margin-top: 8px;
}

.button-solid,
.button-ghost {
  align-items: center;
  border: 1px solid var(--accent-deep);
  border-radius: 11px;
  box-shadow: 0 8px 18px rgba(117, 58, 27, 0.2);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.11em;
  min-height: 42px;
  padding: 0 14px;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button-solid {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-color: var(--accent-deep);
  color: var(--btn-text);
}

.button-solid:hover {
  background: linear-gradient(135deg, #d5783d, #b85d2c);
  border-color: #9a4a21;
  box-shadow: 0 12px 24px rgba(117, 58, 27, 0.29);
  transform: translateY(-1px);
}

.button-solid.full {
  width: 100%;
}

.button-ghost {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(245, 236, 225, 0.84));
  border-color: rgba(159, 119, 86, 0.58);
  color: var(--ink);
}

.button-ghost:hover {
  background: linear-gradient(180deg, rgba(255, 243, 229, 0.95), rgba(244, 229, 213, 0.95));
  border-color: rgba(159, 119, 86, 0.72);
  box-shadow: 0 10px 20px rgba(89, 67, 48, 0.16);
  transform: translateY(-1px);
}

.button-solid:focus-visible,
.button-ghost:focus-visible {
  box-shadow:
    0 0 0 3px rgba(201, 101, 46, 0.28),
    0 12px 24px rgba(117, 58, 27, 0.24);
  outline: none;
}

.quote-strip {
  background: rgba(255, 252, 247, 0.42);
  border-bottom: 1px solid rgba(129, 118, 101, 0.34);
  border-top: 1px solid rgba(129, 118, 101, 0.34);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52);
  margin: 26px 0 30px;
  padding: 16px 8px;
}

.quote-strip p {
  color: #3d3934;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1rem, 2.3vw, 1.6rem);
  letter-spacing: 0.02em;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

.marquee-shell {
  background:
    linear-gradient(150deg, rgba(255, 253, 249, 0.97), rgba(243, 235, 223, 0.95)),
    linear-gradient(120deg, rgba(201, 101, 46, 0.1), transparent 65%);
  border: 1px solid rgba(136, 126, 109, 0.34);
  border-radius: 18px;
  box-shadow:
    0 18px 38px rgba(18, 16, 14, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
  margin: 0 0 18px;
  overflow: hidden;
  padding: 16px;
  position: relative;
}

.marquee-shell.alt {
  background:
    linear-gradient(150deg, rgba(242, 246, 250, 0.94), rgba(233, 239, 246, 0.93)),
    linear-gradient(120deg, rgba(35, 54, 76, 0.16), transparent 64%);
}

.marquee-shell::before {
  background: linear-gradient(90deg, rgba(201, 101, 46, 0.5), rgba(201, 101, 46, 0));
  content: "";
  height: 2px;
  left: 14px;
  position: absolute;
  right: 14px;
  top: 0;
}

.marquee-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.marquee-title {
  display: grid;
  gap: 5px;
}

.marquee-head p {
  color: #655d52;
  display: inline-flex;
  font-size: 0.65rem;
  font-weight: 700;
  gap: 8px;
  letter-spacing: 0.19em;
  margin: 0;
  text-transform: uppercase;
}

.marquee-head p::after {
  align-self: center;
  background: linear-gradient(90deg, rgba(201, 101, 46, 0.85), rgba(201, 101, 46, 0));
  content: "";
  height: 1px;
  width: 40px;
}

.marquee-head h2 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.14rem, 2.9vw, 1.95rem);
  line-height: 0.98;
  margin: 0;
  background: linear-gradient(180deg, #131210 0%, #2d2823 44%, #11100e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.35));
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.marquee-controls {
  display: inline-flex;
  gap: 8px;
}

.marquee-nav {
  align-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border: 1px solid var(--accent-deep);
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(117, 58, 27, 0.24);
  color: var(--btn-text);
  cursor: pointer;
  display: inline-flex;
  font-size: 1.06rem;
  font-weight: 700;
  height: 34px;
  justify-content: center;
  line-height: 1;
  min-height: auto;
  min-width: 34px;
  padding: 0;
  transition: transform 0.16s ease, box-shadow 0.18s ease, opacity 0.18s ease, filter 0.18s ease;
  width: 34px;
}

.marquee-nav:hover {
  box-shadow: 0 14px 24px rgba(117, 58, 27, 0.29);
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.marquee-nav:active {
  transform: translateY(0) scale(0.96);
}

.marquee-nav:disabled {
  cursor: not-allowed;
  filter: grayscale(0.25);
  opacity: 0.42;
  transform: none;
}

.marquee-viewport {
  overflow: hidden;
  position: relative;
}

.marquee-track {
  align-items: stretch;
  display: flex;
  gap: 12px;
  width: max-content;
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.marquee-track.no-transition {
  transition: none !important;
}

.marquee-track.is-static {
  width: 100%;
}

.marquee-item-card {
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.92), rgba(247, 240, 231, 0.9)),
    radial-gradient(circle at 80% 18%, rgba(201, 101, 46, 0.1), transparent 38%);
  border: 1px solid rgba(139, 126, 106, 0.3);
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(17, 16, 14, 0.1);
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: min(280px, 72vw);
  overflow: hidden;
  position: relative;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  width: 280px;
}

.marquee-item-card::after {
  background: linear-gradient(90deg, rgba(201, 101, 46, 0.92), rgba(201, 101, 46, 0));
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  transition: opacity 0.24s ease;
}

.marquee-item-card:hover {
  border-color: rgba(201, 101, 46, 0.54);
  box-shadow: 0 20px 34px rgba(18, 16, 14, 0.16);
  transform: translateY(-3px);
}

.marquee-item-card:hover::after {
  opacity: 1;
}

.marquee-item-view {
  appearance: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: block;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.marquee-item-image,
.marquee-item-placeholder {
  aspect-ratio: 4 / 5;
  border-bottom: 1px solid rgba(135, 124, 107, 0.24);
  display: block;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform 0.5s ease, filter 0.35s ease;
  width: 100%;
}

.marquee-item-card:hover .marquee-item-image {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.04);
}

.marquee-item-placeholder {
  background: linear-gradient(145deg, #e2d8c8, #d9cebe);
}

.marquee-item-body {
  display: grid;
  gap: 6px;
  padding: 11px;
}

.marquee-item-badge {
  left: 10px;
  max-width: min(54%, 128px);
  overflow: hidden;
  position: absolute;
  text-overflow: ellipsis;
  top: 10px;
  white-space: nowrap;
  z-index: 3;
}

.marquee-item-category {
  color: #6a6156;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  margin: 0;
  text-transform: uppercase;
}

.marquee-item-body h3 {
  font-family: "Archivo Black", sans-serif;
  font-size: 0.96rem;
  margin: 0;
  text-transform: uppercase;
}

.marquee-item-meta {
  color: #5d564d;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}

.marquee-item-discount-badge {
  background: rgba(176, 33, 33, 0.1);
  border: 1px solid rgba(176, 33, 33, 0.42);
  color: #9f2020;
  display: inline-flex;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 2px;
  padding: 3px 7px;
  text-transform: uppercase;
  width: fit-content;
}

.marquee-item-stock-warning,
.marquee-item-stock-out {
  color: #b32727;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 0;
}

.marquee-item-price-stack {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.marquee-item-price-old {
  color: #867b6d;
  font-size: 0.72rem;
  text-decoration: line-through;
}

.marquee-item-variants {
  margin: 0;
}

.marquee-discount-pill {
  min-height: 30px;
  min-width: 44px;
}

.marquee-item-foot {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 3px;
}

.marquee-item-foot strong {
  font-size: 1rem;
}

.marquee-item-foot .button-solid {
  min-height: 34px;
  min-width: 104px;
  padding: 0 10px;
}

.marquee-item-actions .button-solid,
.marquee-item-actions .button-ghost {
  font-size: 0.62rem;
  min-height: 34px;
  min-width: 88px;
  padding: 0 8px;
}

.marquee-empty {
  color: #5f574d;
  font-weight: 600;
  font-size: 0.86rem;
  padding: 10px 6px;
}

.store-shell {
  margin-top: 10px;
  background: rgba(255, 251, 245, 0.32);
  border: 1px solid rgba(135, 122, 103, 0.24);
  border-radius: 18px;
  box-shadow: 0 16px 32px rgba(20, 18, 15, 0.08);
  padding: 16px;
}

.store-head {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.store-head p {
  color: #6f675c;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  margin: 0;
  text-transform: uppercase;
}

.store-head h2 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.4rem, 3.2vw, 2.4rem);
  letter-spacing: 0.02em;
  margin: 0;
  position: relative;
  background: linear-gradient(180deg, #131210 0%, #2d2823 44%, #11100e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.34));
  text-transform: uppercase;
}

.store-head h2::after {
  background: linear-gradient(90deg, rgba(201, 101, 46, 0.86), rgba(201, 101, 46, 0));
  content: "";
  display: block;
  height: 2px;
  margin-top: 6px;
  width: min(190px, 58%);
}

.controls {
  align-items: center;
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.controls select {
  appearance: none;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(136, 126, 109, 0.3);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  min-height: 34px;
  padding: 0 12px;
}

.store-filters {
  align-items: start;
  border-bottom: 1px solid rgba(136, 126, 109, 0.16);
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  margin-bottom: 22px;
  padding: 18px 0;
}

.filter-group p {
  color: var(--ink-soft);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin: 0 0 8px;
  opacity: 0.65;
  text-transform: uppercase;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

/* Subgrouped sizes (clothing vs shoes) */
.filter-subgroup {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}
.filter-subgroup:last-child {
  margin-bottom: 0;
}
.filter-subgroup-label {
  color: rgba(36, 32, 29, 0.45);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.filter-options-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.filter-chip {
  background: transparent;
  border: 1px solid rgba(136, 126, 109, 0.28);
  border-radius: 5px;
  color: var(--ink-soft);
  cursor: pointer;
  font: inherit;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  min-height: 27px;
  padding: 0 9px;
  text-transform: uppercase;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.filter-chip.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.filter-chip:hover:not(.active) {
  border-color: rgba(136, 126, 109, 0.55);
  color: var(--ink);
}

.filter-actions {
  align-items: flex-end;
  display: flex;
  padding-bottom: 2px;
}

.filter-empty {
  color: #847969;
  display: inline-block;
  font-size: 0.73rem;
  min-height: 31px;
  padding-top: 6px;
}

.legal-consent-row {
  align-items: flex-start;
  display: flex;
  gap: 10px;
  margin: 16px 0 8px;
}

.legal-consent-row input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 3px;
  width: 16px;
  height: 16px;
}

.legal-consent-row span {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.legal-consent-row a {
  color: var(--accent);
  text-decoration: underline;
}

.filter-actions {
  align-items: end;
  display: flex;
  justify-content: flex-end;
}

.controls input,
.controls select,
.checkout-form input,
.checkout-form select,
.checkout-form textarea,
.product-form input,
.coupon-row input,
.auth-form input,
.auth-form select {
  appearance: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 240, 231, 0.95));
  border: 1px solid rgba(159, 119, 86, 0.58);
  border-radius: 10px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 4px 10px rgba(89, 67, 48, 0.09);
  color: var(--ink);
  font: inherit;
  min-height: 44px;
  padding: 10px 12px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.controls input:focus,
.controls select:focus,
.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus,
.product-form input:focus,
.coupon-row input:focus,
.auth-form input:focus,
.auth-form select:focus {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 244, 236, 0.98));
  border-color: rgba(159, 91, 52, 0.9);
  box-shadow:
    0 0 0 3px rgba(201, 101, 46, 0.21),
    0 10px 20px rgba(117, 58, 27, 0.17);
  outline: 0;
}

.controls input::placeholder,
.checkout-form input::placeholder,
.checkout-form textarea::placeholder,
.coupon-row input::placeholder,
.auth-form input::placeholder {
  color: #8e806e;
}

.product-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.product-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

@media (max-width: 860px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .store-filters {
    grid-template-columns: 1fr;
  }
}

.store-card {
  background:
    linear-gradient(160deg, rgba(255, 253, 249, 0.96), rgba(245, 238, 228, 0.92)),
    linear-gradient(145deg, rgba(201, 101, 46, 0.06), transparent 52%);
  border: 1px solid rgba(132, 121, 105, 0.38);
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(18, 16, 14, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 420px;
  overflow: hidden;
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.store-card::after {
  background: linear-gradient(90deg, rgba(201, 101, 46, 0.95), rgba(201, 101, 46, 0));
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  transition: opacity 0.28s ease;
}

.store-card:hover {
  border-color: rgba(201, 101, 46, 0.5);
  box-shadow: 0 22px 42px rgba(16, 15, 14, 0.18);
  transform: translateY(-6px);
}

.store-card:hover::after {
  opacity: 1;
}

.store-card:nth-child(2n) {
  animation-delay: 0.04s;
}

.store-card:nth-child(3n) {
  animation-delay: 0.08s;
}

.store-card:nth-child(4n) {
  animation-delay: 0.12s;
}

.store-card.out-of-stock {
  background: rgba(255, 234, 234, 0.82);
  border-color: rgba(182, 61, 51, 0.42);
}

.store-card.out-of-stock:hover {
  box-shadow: 0 18px 44px rgba(148, 45, 39, 0.18);
}

.store-art {
  aspect-ratio: 4 / 5;
  border-bottom: 1px solid rgba(132, 121, 105, 0.24);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 14px;
  position: relative;
}

.store-art-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transform: scale(1.001);
  transition: transform 0.65s ease, filter 0.42s ease;
  width: 100%;
}

.store-card:hover .store-art-image {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.06);
}

.store-art::before {
  background: linear-gradient(180deg, rgba(8, 8, 7, 0.4) 0%, rgba(8, 8, 7, 0) 40%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.store-art::after {
  background: linear-gradient(120deg, transparent 24%, rgba(255, 255, 255, 0.18) 52%, transparent 78%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.3s ease;
}

.store-badge {
  backdrop-filter: blur(6px);
  background: rgba(14, 14, 13, 0.53);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 10px;
  position: relative;
  text-transform: uppercase;
  width: fit-content;
  z-index: 2;
}

.store-no {
  display: none;
}

.store-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 15px 15px 14px;
}

.store-category {
  color: #6a6156;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.store-body h3 {
  font-family: "Archivo Black", sans-serif;
  font-size: 1.16rem;
  line-height: 1.12;
  margin: 0;
  text-transform: uppercase;
}

.store-body p {
  color: #4c4740;
  font-size: 0.82rem;
  line-height: 1.34;
  margin: 0;
}

.store-body p.stock-warning {
  color: #c62828;
  font-size: 0.8rem;
  font-weight: 700;
  margin: 2px 0 0;
}

.store-body p.stock-out-notice {
  color: #b42318;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 2px 0 0;
  text-transform: uppercase;
}

.store-discount-badge {
  background: rgba(176, 33, 33, 0.1);
  border: 1px solid rgba(176, 33, 33, 0.45);
  color: #9f2020;
  display: inline-flex;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-top: 3px;
  padding: 3px 8px;
  text-transform: uppercase;
  width: fit-content;
}

.store-row {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 11px;
  border-top: 1px dashed rgba(129, 117, 99, 0.4);
}

.store-price-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price-old {
  color: #8a8175;
  font-size: 0.76rem;
  text-decoration: line-through;
}

.price-current {
  color: #161412;
  font-size: 1.14rem;
  font-weight: 700;
}

.store-row small {
  background: rgba(16, 16, 15, 0.06);
  border: 1px solid rgba(16, 16, 15, 0.2);
  border-radius: 999px;
  color: #61584d;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  text-transform: uppercase;
}

.store-actions {
  display: grid;
  gap: 9px;
  grid-template-columns: 1fr 1fr;
  margin-top: 10px;
}

.store-actions .button-ghost,
.store-actions .button-solid {
  border-radius: 10px;
  min-height: 40px;
}

@keyframes store-card-enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .store-card {
    animation: none;
  }

  .marquee-track {
    animation: none !important;
  }

  .side-social,
  .side-social-icon {
    animation: none !important;
  }

  .store-card,
  .store-art-image,
  .marquee-item-card,
  .marquee-item-image,
  .side-social-item,
  .side-social,
  .filter-chip,
  .button-solid,
  .button-ghost,
  .top-category-btn,
  .top-category-option,
  .cart-button,
  .lang-btn,
  .chip,
  .drawer-header button,
  .icon-btn,
  .remove-btn,
  .modal-close,
  .modal-media-nav {
    transition: none;
  }

  .button-solid::after,
  .button-ghost::after,
  .top-category-btn::after,
  .top-category-option::after,
  .cart-button::after,
  .lang-btn::after,
  .filter-chip::after,
  .chip::after,
  .drawer-header button::after,
  .modal-close::after,
  .remove-btn::after {
    display: none;
  }
}

.value-stack {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 44px;
}

.value-stack article {
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.58), rgba(246, 238, 228, 0.54)),
    radial-gradient(circle at 84% 14%, rgba(201, 101, 46, 0.08), transparent 34%);
  border: 1px solid rgba(132, 121, 105, 0.36);
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(15, 13, 11, 0.09);
  min-height: 214px;
  padding: 16px;
}

.value-stack p {
  color: #72695e;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  margin: 0;
  text-transform: uppercase;
}

.value-stack h3 {
  font-family: "Archivo Black", sans-serif;
  font-size: 1.3rem;
  margin: 10px 0 0;
  text-transform: uppercase;
}

.value-stack span {
  color: #4e493f;
  display: block;
  margin-top: 10px;
}

.main-footer {
  border-top: 1px solid rgba(124, 113, 97, 0.45);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.73rem;
  gap: 10px;
  justify-content: space-between;
  letter-spacing: 0.09em;
  padding: 18px 4.5vw 26px;
  text-transform: uppercase;
}

.main-footer p {
  margin: 0;
}

.main-footer .footer-credit {
  color: #5e5549;
  font-size: 0.64rem;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: none;
  width: 100%;
}

.main-footer .footer-credit a {
  color: #181715;
  font-weight: 700;
  text-decoration: underline;
}

.cart-drawer {
  background:
    linear-gradient(160deg, rgba(19, 18, 16, 0.97), rgba(26, 24, 21, 0.97)),
    linear-gradient(130deg, rgba(201, 101, 46, 0.17), transparent 65%);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  bottom: 0;
  color: #f8f0e4;
  display: flex;
  flex-direction: column;
  position: fixed;
  right: 0;
  top: 0;
  transform: translate3d(calc(100% + 12px), 0, 0);
  transition: transform 0.22s ease-out;
  width: min(440px, 96vw);
  will-change: transform;
  contain: layout paint;
  backface-visibility: hidden;
  pointer-events: none;
  z-index: 55;
}

.cart-drawer.open {
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.drawer-header {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  justify-content: space-between;
  padding: 15px;
}

.drawer-header h2 {
  font-family: "Archivo Black", sans-serif;
  font-size: 1.1rem;
  margin: 0;
  text-transform: uppercase;
}

.drawer-header button {
  background: linear-gradient(135deg, rgba(219, 129, 72, 0.24), rgba(174, 86, 39, 0.22));
  border: 1px solid rgba(255, 206, 170, 0.64);
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(10, 9, 8, 0.24);
  color: #fff8ef;
  cursor: pointer;
  font: inherit;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  min-height: 32px;
  padding: 0 10px;
  text-transform: uppercase;
  transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
}

.cart-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 9px;
  padding: 10px;
}

.cart-item-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.cart-item strong {
  font-size: 0.83rem;
}

.cart-item small {
  color: rgba(242, 229, 210, 0.9);
  font-size: 0.73rem;
}

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

.icon-btn {
  align-items: center;
  background: linear-gradient(135deg, rgba(219, 129, 72, 0.25), rgba(174, 86, 39, 0.2));
  border: 1px solid rgba(255, 206, 170, 0.68);
  border-radius: 9px;
  box-shadow: 0 5px 12px rgba(10, 9, 8, 0.24);
  color: #fff8ef;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 700;
  height: 30px;
  justify-content: center;
  transition: transform 0.16s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  width: 30px;
}

.remove-btn {
  background: linear-gradient(135deg, rgba(182, 61, 51, 0.2), rgba(140, 44, 36, 0.18));
  border: 1px solid rgba(255, 148, 138, 0.74);
  border-radius: 9px;
  box-shadow: 0 5px 12px rgba(10, 9, 8, 0.2);
  color: #ffd4ce;
  cursor: pointer;
  font: inherit;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  margin-left: auto;
  min-height: 30px;
  padding: 0 9px;
  text-transform: uppercase;
  transition: transform 0.16s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.drawer-header button:hover,
.icon-btn:hover,
.remove-btn:hover {
  transform: translateY(-1px);
}

.drawer-header button:hover {
  background: linear-gradient(135deg, rgba(219, 129, 72, 0.34), rgba(174, 86, 39, 0.32));
  border-color: rgba(255, 224, 196, 0.82);
  box-shadow: 0 10px 20px rgba(10, 9, 8, 0.3);
}

.icon-btn:hover {
  background: linear-gradient(135deg, rgba(219, 129, 72, 0.35), rgba(174, 86, 39, 0.3));
  border-color: rgba(255, 224, 196, 0.82);
  box-shadow: 0 8px 16px rgba(10, 9, 8, 0.3);
}

.remove-btn:hover {
  background: linear-gradient(135deg, rgba(182, 61, 51, 0.34), rgba(140, 44, 36, 0.31));
  border-color: rgba(255, 170, 161, 0.86);
  box-shadow: 0 8px 16px rgba(10, 9, 8, 0.27);
}

.drawer-summary {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 12px;
}

.drawer-summary p {
  display: flex;
  justify-content: space-between;
  margin: 8px 0;
}

.drawer-summary span {
  color: rgba(233, 220, 202, 0.93);
  font-size: 0.8rem;
}

.drawer-summary strong {
  font-size: 0.94rem;
}

.grand-total strong {
  font-size: 1.08rem;
}

.overlay {
  background: rgba(10, 9, 8, 0.52);
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
}

.modal {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 12px;
  position: fixed;
  z-index: 60;
}

.modal-card {
  background: var(--paper);
  border: 1px solid var(--line-strong);
  box-shadow: 0 26px 58px rgba(13, 12, 11, 0.3);
  max-height: 92vh;
  max-width: 920px;
  overflow-y: auto;
  padding: 18px;
  position: relative;
  width: min(900px, 96vw);
}

.modal-close {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border: 1px solid var(--accent-deep);
  border-radius: 10px;
  box-shadow: var(--btn-shadow);
  color: var(--btn-text);
  cursor: pointer;
  font: inherit;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  min-height: 32px;
  padding: 0 10px;
  position: absolute;
  right: 12px;
  text-transform: uppercase;
  top: 12px;
  transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.modal-close:hover {
  background: linear-gradient(135deg, #d5783d, #b85d2c);
  border-color: #9a4a21;
  box-shadow: 0 12px 24px rgba(117, 58, 27, 0.29);
  transform: translateY(-1px);
}

.modal-product {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1.08fr;
  margin-top: 10px;
}

.modal-media {
  color: #fff;
  min-height: 360px;
  padding: 14px;
  position: relative;
}

.modal-media-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.modal-media-image.zoomable {
  cursor: zoom-in;
}

.modal-media-controls {
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 3;
}

.modal-media-nav {
  background: linear-gradient(135deg, rgba(206, 117, 59, 0.86), rgba(165, 80, 37, 0.86));
  border: 1px solid rgba(255, 224, 196, 0.75);
  border-radius: 999px;
  box-shadow: 0 8px 16px rgba(10, 9, 8, 0.22);
  color: #fff9f3;
  cursor: pointer;
  font-size: 1.35rem;
  height: 40px;
  line-height: 1;
  pointer-events: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.18s var(--btn-ease), box-shadow 0.18s ease, background 0.18s ease;
  will-change: transform, box-shadow;
  width: 40px;
}

.modal-media-nav:hover {
  background: linear-gradient(135deg, rgba(217, 127, 68, 0.92), rgba(181, 92, 45, 0.92));
  box-shadow: 0 10px 20px rgba(10, 9, 8, 0.28);
  transform: translateY(-50%) scale(1.05);
}

.modal-media-nav:active {
  transform: translateY(-50%) scale(0.96);
}

.modal-media-nav-prev {
  left: 10px;
}

.modal-media-nav-next {
  right: 10px;
}

.modal-media-thumbs {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
  margin-top: 9px;
}

.modal-thumb {
  background: #fff;
  border: 1px solid rgba(88, 78, 66, 0.4);
  cursor: pointer;
  padding: 2px;
}

.modal-thumb.active {
  border-color: #1b1b1a;
  box-shadow: 0 0 0 1px rgba(27, 27, 26, 0.7);
}

.modal-thumb img {
  display: block;
  height: 62px;
  object-fit: cover;
  width: 100%;
}

.modal-media::after {
  background: linear-gradient(180deg, transparent 18%, rgba(9, 8, 7, 0.5) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.modal-media span {
  bottom: 12px;
  font-family: "Archivo Black", sans-serif;
  font-size: 1.4rem;
  left: 12px;
  letter-spacing: 0.05em;
  position: absolute;
  text-transform: uppercase;
  z-index: 2;
}

.image-lightbox-card {
  background: rgba(10, 10, 9, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.28);
  max-height: 94vh;
  max-width: 96vw;
  overflow: hidden;
  padding: 48px 14px 14px;
  width: min(1180px, 96vw);
}

.lightbox-image {
  display: block;
  height: auto;
  margin: 0 auto;
  max-height: 82vh;
  max-width: 100%;
  object-fit: contain;
}

.modal-kicker {
  color: #746c61;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0;
  text-transform: uppercase;
}

.modal-product h3 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.03;
  margin: 8px 0 0;
  text-transform: uppercase;
}

.modal-description {
  color: #4e483f;
  margin: 10px 0 0;
}

.modal-specs {
  color: #514b41;
  margin: 12px 0;
  padding-left: 18px;
}

.modal-return-policy {
  color: #2e2821;
  margin: 6px 0 12px;
}

.modal-discount-badge {
  background: rgba(176, 33, 33, 0.1);
  border: 1px solid rgba(176, 33, 33, 0.45);
  color: #9f2020;
  display: inline-flex;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 0 0 10px;
  padding: 4px 10px;
  text-transform: uppercase;
}

.modal-price-line {
  align-items: baseline;
  display: flex;
  gap: 10px;
  margin: 6px 0 12px;
}

.modal-stock-warning {
  color: #c62828;
  font-size: 0.92rem;
  font-weight: 700;
  margin: 6px 0 10px;
}

.modal-stock-out {
  color: #b42318;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 6px 0 10px;
  text-transform: uppercase;
}

.button-solid:disabled,
.button-ghost:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 12px;
}

.chip {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(245, 236, 225, 0.85));
  border: 1px solid rgba(159, 119, 86, 0.5);
  border-radius: 10px;
  box-shadow: 0 5px 12px rgba(89, 67, 48, 0.12);
  cursor: pointer;
  font: inherit;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  min-height: 34px;
  padding: 0 12px;
  text-transform: uppercase;
  transition: transform 0.16s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.chip.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-color: var(--accent-deep);
  box-shadow: 0 8px 18px rgba(117, 58, 27, 0.23);
  color: var(--btn-text);
}

.chip:hover {
  border-color: rgba(159, 119, 86, 0.74);
  box-shadow: 0 8px 16px rgba(89, 67, 48, 0.17);
  transform: translateY(-1px);
}

.product-form {
  align-items: center;
  display: flex;
  gap: 8px;
}

.product-form input {
  max-width: 90px;
}

.checkout-modal-card h2 {
  font-family: "Archivo Black", sans-serif;
  margin-top: 24px;
  text-transform: uppercase;
}

.checkout-form {
  margin-top: 8px;
}

.checkout-hint {
  color: #5f594f;
  font-size: 0.8rem;
  margin: 10px 0 4px;
}

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

.input-grid label {
  color: #4b453d;
  display: flex;
  flex-direction: column;
  font-size: 0.74rem;
  font-weight: 700;
  gap: 5px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.input-grid .field-hint {
  color: #6d6459;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-top: 4px;
  text-transform: none;
}

.input-grid textarea {
  min-height: 88px;
}

.input-grid .full {
  grid-column: 1 / -1;
}

.input-grid .save-address-toggle {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(141, 130, 114, 0.55);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.01em;
  padding: 12px 14px;
  text-transform: none;
}

.input-grid .save-address-toggle > span {
  align-items: flex-start;
  display: inline-flex;
  gap: 11px;
}

.input-grid .save-address-toggle input[type="checkbox"] {
  accent-color: #c9652e;
  flex: 0 0 auto;
  height: 21px;
  margin: 2px 0 0;
  min-height: auto;
  min-width: 21px;
  padding: 0;
  width: 21px;
}

.input-grid .save-address-toggle [data-i18n] {
  display: inline-block;
  font-size: 0.9rem;
}

.guest-order-card {
  background: rgba(31, 122, 73, 0.08);
  border: 1px solid rgba(31, 122, 73, 0.44);
  margin-bottom: 12px;
  margin-top: 8px;
  padding: 12px 13px;
}

.guest-order-card-title {
  color: #154f31;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.guest-order-card-line {
  align-items: center;
  color: #2f2a24;
  display: flex;
  font-size: 0.96rem;
  gap: 8px;
  margin: 0;
}

.guest-order-card-line + .guest-order-card-line {
  margin-top: 5px;
}

.guest-order-card-line span {
  font-family: "Archivo Black", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.guest-order-card-warning {
  border-top: 1px dashed rgba(31, 122, 73, 0.42);
  color: #3f3a33;
  font-size: 0.79rem;
  font-weight: 700;
  line-height: 1.45;
  margin: 10px 0 0;
  padding-top: 9px;
}

.status-text {
  color: #5f594f;
  font-size: 0.82rem;
  min-height: 1.2em;
}

.status-text.error {
  color: var(--bad);
}

.status-text.success {
  color: var(--good);
}

.comment-sent-success {
  background: rgba(34, 120, 60, 0.08);
  border: 1px solid rgba(34, 120, 60, 0.28);
  border-radius: 10px;
  color: #1a7a3c;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.55;
  margin: 12px 0;
  padding: 12px 16px;
  white-space: pre-line;
}

.empty-state {
  background: rgba(255, 255, 255, 0.45);
  border: 1px dashed rgba(141, 130, 114, 0.7);
  color: #5a534a;
  padding: 22px;
  text-align: center;
}

.hidden {
  display: none !important;
}

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

  main::before,
  main::after {
    display: none;
  }

  .hero-slab {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .hero-panel-lead {
    grid-row: auto;
  }
}

@media (max-width: 860px) {
  .main-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .info-ribbon {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .info-ribbon p:nth-child(2),
  .info-ribbon p:last-child {
    text-align: center;
  }

  .main-nav {
    display: inline-flex;
    gap: 8px;
    width: 100%;
  }

  .top-category-tabs {
    width: 100%;
  }

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

  .store-shell {
    padding: 12px;
  }

  .marquee-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .marquee-item-card {
    min-width: min(240px, 78vw);
    width: 240px;
  }

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

  .value-stack {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .brand-text small {
    display: none;
  }

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

  .marquee-shell {
    padding: 11px;
  }

  .marquee-item-card {
    min-width: 80vw;
    width: 80vw;
  }

  .store-filters {
    grid-template-columns: 1fr;
  }

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

  .guest-order-card-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }
}

.header-right {
  align-items: center;
  display: inline-flex;
  gap: 10px;
}

.lang-switch {
  display: inline-flex;
  gap: 4px;
}

.lang-btn {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(245, 236, 225, 0.85));
  border: 1px solid rgba(159, 119, 86, 0.56);
  border-radius: 10px;
  box-shadow: 0 5px 12px rgba(89, 67, 48, 0.13);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  min-height: 34px;
  min-width: 42px;
  text-transform: uppercase;
  transition: transform 0.16s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-color: var(--accent-deep);
  box-shadow: var(--btn-shadow);
  color: var(--btn-text);
}

.account-actions {
  align-items: center;
  display: inline-flex;
  gap: 6px;
}

.button-ghost.mini {
  font-size: 0.64rem;
  min-height: 34px;
  padding: 0 10px;
}

.button-solid.mini {
  font-size: 0.64rem;
  min-height: 34px;
  padding: 0 10px;
}

.coupon-row {
  align-items: end;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr auto;
  margin-top: 10px;
}

.coupon-row label {
  color: #4b453d;
  display: flex;
  flex-direction: column;
  font-size: 0.74rem;
  font-weight: 700;
  gap: 5px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.coupon-row .button-ghost {
  min-height: 44px;
}

.auth-gate-card p {
  color: #4e483f;
  margin: 10px 0 0;
}

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

.auth-gate-card h2 {
  margin-top: 24px;
}

.premium-auth-card {
  max-width: 1020px;
  overflow: hidden;
  padding: 0;
  width: min(1020px, 96vw);
}

.auth-split {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 1fr);
}

.auth-visual {
  background:
    linear-gradient(150deg, rgba(12, 12, 11, 0.95), rgba(25, 23, 20, 0.92)),
    radial-gradient(circle at 78% 12%, rgba(201, 101, 46, 0.44), transparent 38%);
  color: #f4ede2;
  min-height: 100%;
  padding: 54px 28px 28px;
}

.auth-visual-kicker {
  color: #f0c5ad;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin: 0;
  text-transform: uppercase;
}

.auth-visual h2 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2.3rem);
  line-height: 1.02;
  margin: 12px 0 0;
  text-transform: uppercase;
}

.auth-visual > p {
  color: rgba(244, 237, 226, 0.88);
  margin: 12px 0 0;
}

.auth-feature-list {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 18px;
}

.auth-feature-list li {
  color: rgba(244, 237, 226, 0.88);
  font-size: 0.9rem;
}

.auth-panel {
  background:
    linear-gradient(160deg, rgba(252, 248, 242, 0.98), rgba(245, 238, 228, 0.96)),
    radial-gradient(circle at 88% 10%, rgba(201, 101, 46, 0.14), transparent 34%);
  padding: 56px 24px 24px;
}

.auth-tabs {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
}

.auth-tabs .button-solid,
.auth-tabs .button-ghost {
  min-height: 44px;
}

.auth-form {
  display: grid;
  gap: 11px;
  margin-top: 14px;
}

.auth-form label {
  color: #3f392f;
  display: grid;
  gap: 6px;
  letter-spacing: 0.05em;
}

.auth-form label span {
  color: #5c5447;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.auth-form input,
.auth-form select {
  appearance: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 240, 231, 0.95));
  border: 1px solid rgba(159, 119, 86, 0.58);
  border-radius: 10px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 4px 10px rgba(89, 67, 48, 0.09);
  color: var(--ink);
  display: block;
  font: inherit;
  min-height: 46px;
  outline: 0;
  padding: 10px 12px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  width: 100%;
}

.auth-form input::placeholder {
  color: #8e806e;
}

.auth-form input:focus,
.auth-form select:focus {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 244, 236, 0.98));
  border-color: rgba(159, 91, 52, 0.9);
  box-shadow:
    0 0 0 3px rgba(201, 101, 46, 0.21),
    0 10px 20px rgba(117, 58, 27, 0.17);
}

.auth-form .button-solid {
  margin-top: 4px;
  min-height: 46px;
}

@media (max-width: 980px) {
  .header-right {
    gap: 6px;
  }

  .account-actions {
    display: inline-flex;
    gap: 4px;
  }

  .button-ghost.mini,
  .button-solid.mini {
    font-size: 0.58rem;
    min-height: 32px;
    padding: 0 8px;
  }
}

@media (max-width: 760px) {
  .coupon-row,
  .auth-gate-actions {
    grid-template-columns: 1fr;
  }

  .auth-split {
    grid-template-columns: 1fr;
  }

  .auth-visual,
  .auth-panel {
    padding: 52px 16px 16px;
  }
}

/* Tonus-inspired Storefront Refresh (unique implementation) */
:root {
  --bg: #f5f2ec;
  --paper: #fdfaf4;
  --ink: #171513;
  --ink-soft: #5f584f;
  --line: #dfd7cb;
  --line-strong: #b8ad9c;
  --accent: #bc6b3c;
  --accent-dark: #9a5129;
  --accent-deep: #7b401f;
  --btn-text: #fff7f0;
  --btn-shadow: 0 10px 24px rgba(95, 51, 23, 0.22);
}

body {
  background:
    radial-gradient(circle at 12% -8%, rgba(188, 107, 60, 0.14), transparent 33%),
    radial-gradient(circle at 88% 8%, rgba(22, 20, 18, 0.06), transparent 36%),
    linear-gradient(135deg, #f9f6f1 0%, #f2ede4 56%, #fbf8f3 100%);
  color: var(--ink);
}

body::before {
  background-image: radial-gradient(rgba(20, 18, 16, 0.06) 0.55px, transparent 0.55px);
  background-size: 24px 24px;
  opacity: 0.16;
}

body::after {
  background: radial-gradient(circle at 50% -15%, rgba(18, 17, 15, 0.09), transparent 43%);
}

.info-ribbon {
  background: linear-gradient(90deg, #151412 0%, #1e1b18 100%);
  border-bottom: 1px solid rgba(190, 122, 80, 0.42);
  box-shadow: 0 8px 20px rgba(13, 11, 9, 0.22);
  color: #f6f0e5;
}

.main-header {
  backdrop-filter: blur(7px);
  background: rgba(252, 249, 244, 0.88);
  border-bottom: 1px solid rgba(167, 154, 137, 0.34);
  box-shadow: 0 10px 24px rgba(18, 16, 14, 0.08);
}

.brand-logo {
  border: 1px solid rgba(149, 132, 114, 0.44);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(20, 17, 14, 0.17);
}

.main-nav a {
  color: #201d19;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  position: relative;
}

.main-nav a::after {
  background: linear-gradient(90deg, var(--accent), transparent);
  bottom: -5px;
  content: "";
  height: 1px;
  left: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.2s ease;
  width: 100%;
}

.main-nav a:hover {
  color: var(--accent-dark);
}

.main-nav a:hover::after {
  opacity: 1;
}

.top-category-btn,
.top-category-option,
.lang-btn,
.button-ghost,
.filter-chip,
.chip {
  background: linear-gradient(180deg, #ffffff 0%, #f6f1e8 100%);
  border: 1px solid rgba(163, 141, 118, 0.48);
  box-shadow: 0 6px 14px rgba(24, 21, 18, 0.08);
  color: #1c1916;
}

.top-category-btn.active,
.top-category-option.active,
.lang-btn.active,
.filter-chip.active,
.chip.active,
.button-solid,
.cart-button,
.marquee-nav,
.modal-close {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-color: var(--accent-deep);
  color: var(--btn-text);
}

.button-solid,
.button-ghost,
.top-category-btn,
.top-category-option,
.cart-button,
.lang-btn,
.filter-chip,
.chip,
.drawer-header button,
.icon-btn,
.remove-btn,
.modal-close {
  border-radius: 10px;
}

.side-social {
  background: rgba(252, 249, 244, 0.95);
  border: 1px solid rgba(140, 124, 104, 0.26);
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(16, 14, 12, 0.09);
}

.side-social-item {
  background: transparent;
  border: 1px solid rgba(140, 124, 104, 0.18);
  color: #2a251f;
}

.side-social-icon {
  box-shadow: none;
}

.hero-panel {
  border: 1px solid rgba(157, 141, 120, 0.34);
  border-radius: 18px;
  box-shadow:
    0 18px 38px rgba(18, 15, 12, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.54);
}

.hero-panel-lead {
  background:
    linear-gradient(140deg, #171513 0%, #1e1a16 52%, #28231f 100%),
    radial-gradient(circle at 22% 18%, rgba(188, 107, 60, 0.24), transparent 35%);
}

.hero-panel-lead h1 {
  font-size: clamp(2.1rem, 5.1vw, 4.3rem);
  letter-spacing: 0.01em;
  line-height: 0.94;
}

.hero-copy {
  color: rgba(250, 245, 236, 0.9);
}

.hero-panel-card,
.hero-panel-card.alt {
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(244, 236, 226, 0.9)),
    radial-gradient(circle at 86% 10%, rgba(188, 107, 60, 0.1), transparent 37%);
}

.quote-strip {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.72), rgba(246, 239, 229, 0.6)),
    radial-gradient(circle at 50% 0%, rgba(188, 107, 60, 0.08), transparent 48%);
  border: 1px solid rgba(157, 141, 120, 0.3);
  border-radius: 16px;
}

.quote-strip p {
  color: #26221e;
  font-size: clamp(1rem, 2.2vw, 1.45rem);
  letter-spacing: 0.06em;
}

.marquee-shell,
.marquee-shell.alt,
.store-shell {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.93), rgba(246, 239, 229, 0.9)),
    radial-gradient(circle at 88% 12%, rgba(188, 107, 60, 0.08), transparent 36%);
  border: 1px solid rgba(157, 141, 120, 0.32);
  border-radius: 18px;
  box-shadow:
    0 18px 34px rgba(18, 15, 12, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.marquee-head h2,
.store-head h2 {
  background: linear-gradient(180deg, #171513 0%, #302921 56%, #171513 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.03em;
}

.controls,
.store-filters {
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(157, 141, 120, 0.3);
}

.controls input,
.controls select,
.checkout-form input,
.checkout-form select,
.checkout-form textarea,
.coupon-row input,
.auth-form input,
.auth-form select {
  background: linear-gradient(180deg, #fff 0%, #f8f3ea 100%);
  border: 1px solid rgba(157, 141, 120, 0.45);
  border-radius: 10px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    0 4px 12px rgba(25, 22, 18, 0.07);
}

.store-card,
.marquee-item-card {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(248, 242, 233, 0.92)),
    radial-gradient(circle at 86% 12%, rgba(188, 107, 60, 0.08), transparent 36%);
  border: 1px solid rgba(157, 141, 120, 0.3);
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(18, 15, 12, 0.09);
}

.store-card:hover,
.marquee-item-card:hover {
  border-color: rgba(188, 107, 60, 0.52);
  box-shadow: 0 20px 38px rgba(18, 15, 12, 0.15);
}

.store-card::after,
.marquee-item-card::after {
  background: linear-gradient(90deg, rgba(188, 107, 60, 0.95), rgba(188, 107, 60, 0));
}

.store-category,
.marquee-item-category {
  color: #6a604f;
  letter-spacing: 0.12em;
}

.store-body h3,
.marquee-item-body h3 {
  color: #161412;
  letter-spacing: 0.04em;
}

.store-body p,
.marquee-item-meta {
  color: #5f584f;
}

.price-current,
.marquee-item-foot strong {
  color: #181511;
}

.store-row,
.marquee-item-foot {
  border-top: 1px dashed rgba(157, 141, 120, 0.45);
  padding-top: 10px;
}

.main-footer {
  background: rgba(18, 16, 14, 0.95);
  border-top: 1px solid rgba(188, 107, 60, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #f7efe2;
}

.main-footer p {
  color: #f7efe2;
}

.main-footer .footer-credit {
  color: rgba(244, 236, 223, 0.86);
}

.main-footer .footer-credit a {
  color: #ffcbad;
}

@media (max-width: 1080px) {
  .hero-panel-lead h1 {
    font-size: clamp(1.9rem, 8vw, 3rem);
  }
}

/* Tonus v2 - high contrast visible storefront refresh */
body.look-tonus {
  background:
    radial-gradient(circle at 80% 0%, rgba(188, 107, 60, 0.08), transparent 32%),
    linear-gradient(180deg, #f7f3ed 0%, #f3eee6 100%);
  color: #151311;
}

body.look-tonus::before {
  opacity: 0.1;
}

body.look-tonus .info-ribbon {
  background: #141311;
  border-bottom: 1px solid rgba(188, 107, 60, 0.35);
  box-shadow: 0 6px 14px rgba(10, 9, 8, 0.2);
  letter-spacing: 0.11em;
}

body.look-tonus .main-header {
  background: rgba(253, 249, 243, 0.95);
  border-bottom: 1px solid rgba(158, 145, 129, 0.38);
  box-shadow: 0 12px 24px rgba(18, 16, 14, 0.08);
  padding: 16px 4.8vw;
}

body.look-tonus .brand-logo {
  border-radius: 10px;
  height: 2.9rem;
  width: 2.9rem;
}

body.look-tonus .brand-text strong {
  font-size: 1.22rem;
  letter-spacing: 0.01em;
}

body.look-tonus .main-nav {
  gap: 26px;
}

body.look-tonus .main-nav a {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

body.look-tonus .top-category-btn,
body.look-tonus .top-category-option,
body.look-tonus .button-ghost,
body.look-tonus .lang-btn,
body.look-tonus .filter-chip,
body.look-tonus .chip {
  background: #fff;
  border: 1px solid #d7cdbf;
  box-shadow: 0 4px 10px rgba(20, 16, 12, 0.07);
  color: #191613;
}

body.look-tonus .top-category-btn.active,
body.look-tonus .top-category-option.active,
body.look-tonus .button-solid,
body.look-tonus .cart-button,
body.look-tonus .lang-btn.active,
body.look-tonus .filter-chip.active,
body.look-tonus .chip.active,
body.look-tonus .marquee-nav,
body.look-tonus .modal-close {
  background: linear-gradient(135deg, #c26e3d, #9d542b);
  border-color: #7f421f;
  color: #fff8f1;
}

body.look-tonus .side-social {
  left: 10px;
  width: 132px;
  border-radius: 18px;
  border: 1px solid rgba(150, 134, 115, 0.42);
  box-shadow:
    0 16px 32px rgba(18, 14, 11, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

body.look-tonus main {
  max-width: 1420px;
  padding-top: 30px;
}

body.look-tonus .hero-slab {
  gap: 18px;
  grid-template-columns: 1.45fr 0.55fr;
  grid-template-rows: minmax(220px, auto) minmax(220px, auto);
}

body.look-tonus .hero-panel {
  border-radius: 20px;
  border: 1px solid rgba(151, 135, 116, 0.32);
  box-shadow:
    0 18px 40px rgba(17, 14, 11, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.56);
}

body.look-tonus .hero-panel-lead {
  background:
    radial-gradient(circle at 16% 18%, rgba(194, 110, 61, 0.24), transparent 34%),
    linear-gradient(145deg, #151311 0%, #1d1915 55%, #28221d 100%);
  min-height: 470px;
}

body.look-tonus .hero-panel-lead h1 {
  font-size: clamp(2.2rem, 5.2vw, 4.7rem);
  line-height: 0.9;
  max-width: 760px;
}

body.look-tonus .hero-copy {
  font-size: 1.02rem;
}

body.look-tonus .hero-panel-card,
body.look-tonus .hero-panel-card.alt {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(245, 237, 226, 0.92)),
    radial-gradient(circle at 80% 8%, rgba(188, 107, 60, 0.1), transparent 34%);
}

body.look-tonus .quote-strip {
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(154, 138, 120, 0.3);
  border-radius: 18px;
  padding: 14px 10px;
}

body.look-tonus .quote-strip p {
  font-size: clamp(1rem, 2.1vw, 1.4rem);
  letter-spacing: 0.08em;
}

body.look-tonus .marquee-shell,
body.look-tonus .store-shell {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(246, 239, 228, 0.92)),
    radial-gradient(circle at 86% 10%, rgba(188, 107, 60, 0.08), transparent 36%);
  border: 1px solid rgba(151, 136, 118, 0.34);
  border-radius: 20px;
  box-shadow:
    0 18px 36px rgba(17, 14, 11, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
  padding: 18px;
}

body.look-tonus .marquee-head h2,
body.look-tonus .store-head h2 {
  font-size: clamp(1.5rem, 3.4vw, 2.55rem);
  letter-spacing: 0.04em;
}

body.look-tonus .controls,
body.look-tonus .store-filters {
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(154, 138, 120, 0.32);
  border-radius: 14px;
  padding: 12px;
}

body.look-tonus .product-grid {
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

body.look-tonus .store-card {
  border-radius: 16px;
  border: 1px solid rgba(151, 136, 118, 0.32);
  box-shadow: 0 14px 28px rgba(17, 14, 11, 0.1);
  min-height: 438px;
}

body.look-tonus .store-card:hover {
  box-shadow: 0 24px 42px rgba(17, 14, 11, 0.17);
  transform: translateY(-6px);
}

body.look-tonus .store-art {
  aspect-ratio: 4 / 5.1;
}

body.look-tonus .store-body {
  gap: 9px;
  padding: 16px;
}

body.look-tonus .store-body h3 {
  font-size: 1.2rem;
}

body.look-tonus .store-actions {
  gap: 10px;
}

body.look-tonus .store-actions .button-ghost,
body.look-tonus .store-actions .button-solid {
  min-height: 41px;
}

body.look-tonus .value-stack {
  gap: 12px;
  margin-top: 26px;
}

body.look-tonus .value-stack article {
  border-radius: 16px;
  border: 1px solid rgba(151, 136, 118, 0.32);
  box-shadow: 0 12px 24px rgba(17, 14, 11, 0.08);
}

body.look-tonus .main-footer {
  background: #151311;
  border-top: 1px solid rgba(188, 107, 60, 0.36);
  color: #f8efe1;
}

body.look-tonus .main-footer p {
  color: #f8efe1;
}

body.look-tonus .main-footer .footer-credit {
  color: rgba(245, 235, 220, 0.87);
}

body.look-tonus .main-footer .footer-credit a {
  color: #ffcaa9;
}

@media (max-width: 1080px) {
  body.look-tonus .hero-slab {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  body.look-tonus .hero-panel-lead {
    min-height: 390px;
  }
}

/* Marquee heading refinement: editorial premium */
body.look-tonus .marquee-head {
  align-items: flex-end;
  gap: 14px;
  margin-bottom: 14px;
}

body.look-tonus .marquee-title {
  gap: 9px;
  position: relative;
}

body.look-tonus .marquee-title::before {
  background: linear-gradient(180deg, rgba(194, 110, 61, 0.92), rgba(194, 110, 61, 0.18));
  border-radius: 999px;
  content: "";
  height: 34px;
  left: -12px;
  position: absolute;
  top: 4px;
  width: 2px;
}

body.look-tonus .marquee-head p {
  align-items: center;
  color: #6f6152;
  display: inline-flex;
  font-size: 0.6rem;
  font-weight: 700;
  gap: 9px;
  letter-spacing: 0.2em;
  margin: 0;
  text-transform: uppercase;
}

body.look-tonus .marquee-head p::after {
  background: linear-gradient(90deg, rgba(194, 110, 61, 0.85), rgba(194, 110, 61, 0));
  border-radius: 999px;
  content: "";
  height: 1px;
  width: 68px;
}

body.look-tonus .marquee-head h2 {
  background: linear-gradient(180deg, #1a1612 0%, #3a2f24 52%, #17130f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(1.52rem, 3vw, 2.44rem);
  font-weight: 700;
  letter-spacing: 0.012em;
  line-height: 1.08;
  margin: 0;
  max-width: 920px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.28);
  text-transform: none !important;
  text-wrap: balance;
}

body.look-tonus #home-best-sellers .marquee-head h2::after,
body.look-tonus #home-style-picks .marquee-head h2::after {
  background: linear-gradient(90deg, rgba(194, 110, 61, 0.92), rgba(194, 110, 61, 0));
  border-radius: 999px;
  content: "";
  display: block;
  height: 2px;
  margin-top: 10px;
  width: min(210px, 56%);
}

body.look-tonus #home-style-picks .marquee-head h2 {
  background: linear-gradient(180deg, #181714 0%, #2e2a24 52%, #151310 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 980px) {
  body.look-tonus .marquee-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  body.look-tonus .marquee-title::before {
    display: none;
  }
}

@media (max-width: 860px) {
  body.look-tonus .marquee-head p {
    font-size: 0.56rem;
    letter-spacing: 0.18em;
  }

  body.look-tonus .marquee-head p::after {
    width: 44px;
  }

  body.look-tonus .marquee-head h2 {
    font-size: clamp(1.16rem, 5.1vw, 1.66rem);
    line-height: 1.12;
    max-width: 100%;
  }

  body.look-tonus #home-best-sellers .marquee-head h2::after,
  body.look-tonus #home-style-picks .marquee-head h2::after {
    margin-top: 7px;
    width: min(126px, 48%);
  }
}

/* Marquee heading refinement v3: minimal premium */
body.look-tonus .marquee-head {
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

body.look-tonus .marquee-title {
  gap: 6px;
}

body.look-tonus .marquee-title::before {
  display: none;
}

body.look-tonus .marquee-head p {
  color: #7a7063;
  font-family: "Instrument Sans", "Segoe UI", sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.look-tonus .marquee-head p::after {
  background: linear-gradient(90deg, rgba(188, 107, 60, 0.52), rgba(188, 107, 60, 0));
  height: 1px;
  width: 42px;
}

body.look-tonus .marquee-head h2 {
  background: none;
  -webkit-text-fill-color: currentColor;
  color: #1f1b17;
  font-family: "Instrument Sans", "Segoe UI", sans-serif;
  font-size: clamp(1.14rem, 2.1vw, 1.72rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.18;
  margin: 0;
  max-width: 760px;
  text-shadow: none;
  text-transform: none !important;
}

body.look-tonus #home-best-sellers .marquee-head h2::after,
body.look-tonus #home-style-picks .marquee-head h2::after {
  background: linear-gradient(90deg, rgba(188, 107, 60, 0.6), rgba(188, 107, 60, 0));
  content: "";
  display: block;
  height: 1px;
  margin-top: 7px;
  width: min(126px, 34%);
}

@media (max-width: 980px) {
  body.look-tonus .marquee-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
}

@media (max-width: 860px) {
  body.look-tonus .marquee-head p {
    font-size: 0.54rem;
    letter-spacing: 0.14em;
  }

  body.look-tonus .marquee-head h2 {
    font-size: clamp(1.02rem, 4.9vw, 1.34rem);
    line-height: 1.2;
    max-width: 100%;
  }

  body.look-tonus #home-best-sellers .marquee-head h2::after,
  body.look-tonus #home-style-picks .marquee-head h2::after {
    margin-top: 6px;
    width: min(94px, 32%);
  }
}

/* Marquee heading refinement v4: ultra-minimal luxury */
body.look-tonus .marquee-head {
  align-items: center;
  border-bottom: 1px solid rgba(163, 149, 131, 0.24);
  margin-bottom: 14px;
  padding-bottom: 9px;
}

body.look-tonus .marquee-title {
  gap: 4px;
}

body.look-tonus .marquee-title::before {
  display: none;
}

body.look-tonus .marquee-head p {
  color: #8b7f6f;
  font-family: "Instrument Sans", "Segoe UI", sans-serif;
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

body.look-tonus .marquee-head p::after {
  display: none;
}

body.look-tonus .marquee-head h2 {
  background: none;
  -webkit-text-fill-color: #221d17;
  color: #221d17;
  font-family: "Instrument Sans", "Segoe UI", sans-serif;
  font-size: clamp(1.02rem, 1.9vw, 1.44rem);
  font-weight: 600;
  letter-spacing: 0.004em;
  line-height: 1.24;
  margin: 0;
  max-width: 680px;
  text-shadow: none;
  text-transform: none !important;
}

body.look-tonus #home-best-sellers .marquee-head h2::after,
body.look-tonus #home-style-picks .marquee-head h2::after {
  display: none;
}

@media (max-width: 980px) {
  body.look-tonus .marquee-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding-bottom: 8px;
  }
}

@media (max-width: 860px) {
  body.look-tonus .marquee-head p {
    font-size: 0.52rem;
    letter-spacing: 0.15em;
  }

  body.look-tonus .marquee-head h2 {
    font-size: clamp(0.96rem, 4.4vw, 1.18rem);
    line-height: 1.26;
    max-width: 100%;
  }
}

/* Layout v5: full-width flow (remove large outer boxes) */
body.look-tonus main {
  max-width: none;
  padding: 30px clamp(14px, 2.6vw, 40px) 86px;
  width: 100%;
}

body.look-tonus .hero-slab,
body.look-tonus .quote-strip,
body.look-tonus .marquee-shell,
body.look-tonus .store-shell,
body.look-tonus .value-stack {
  margin-left: 0;
  margin-right: 0;
}

body.look-tonus .quote-strip,
body.look-tonus .marquee-shell,
body.look-tonus .store-shell {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

body.look-tonus .quote-strip {
  border-bottom: 1px solid rgba(166, 151, 132, 0.3);
  margin: 18px 0 22px;
  padding: 0 0 12px;
}

body.look-tonus .marquee-shell {
  margin: 0 0 28px;
  overflow: visible;
}

body.look-tonus .marquee-shell::before {
  display: none;
}

body.look-tonus .store-shell {
  margin-top: 18px;
}

body.look-tonus .controls,
body.look-tonus .store-filters {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

body.look-tonus .controls {
  gap: 12px;
  margin-bottom: 14px;
}

body.look-tonus .store-filters {
  gap: 12px;
  margin-bottom: 18px;
}

@media (max-width: 860px) {
  body.look-tonus main {
    padding: 22px 12px 74px;
  }
}

/* Layout v6: true full-page fit */
body.look-tonus .info-ribbon {
  padding-left: clamp(10px, 1.4vw, 22px);
  padding-right: clamp(10px, 1.4vw, 22px);
}

body.look-tonus .main-header {
  padding-left: clamp(10px, 1.4vw, 22px);
  padding-right: clamp(10px, 1.4vw, 22px);
}

body.look-tonus main {
  max-width: none;
  padding: 26px clamp(10px, 1.4vw, 22px) 84px;
}

body.look-tonus .hero-slab {
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
}

body.look-tonus .store-shell,
body.look-tonus .marquee-shell,
body.look-tonus .value-stack,
body.look-tonus .quote-strip {
  width: 100%;
}

body.look-tonus .product-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

@media (max-width: 1080px) {
  body.look-tonus .hero-slab {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  body.look-tonus .info-ribbon,
  body.look-tonus .main-header {
    padding-left: 10px;
    padding-right: 10px;
  }

  body.look-tonus main {
    padding: 22px 10px 74px;
  }
}

/* =========================================================
   FINAL REDESIGN v8 - Full Page Premium Minimal Storefront
   ========================================================= */
body.look-tonus {
  background:
    radial-gradient(circle at 88% -4%, rgba(191, 118, 72, 0.1), transparent 36%),
    radial-gradient(circle at 10% 8%, rgba(20, 20, 20, 0.05), transparent 30%),
    linear-gradient(180deg, #f8f6f1 0%, #f3efe7 100%);
  color: #161412;
}

body.look-tonus::before {
  opacity: 0.08;
}

body.look-tonus::after {
  background: radial-gradient(circle at 50% -16%, rgba(16, 16, 16, 0.08), transparent 42%);
}

body.look-tonus .info-ribbon {
  background: #141312;
  border-bottom: 1px solid rgba(195, 124, 79, 0.4);
  box-shadow: 0 8px 18px rgba(12, 11, 10, 0.22);
  color: #f9f0e4;
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  padding: 10px clamp(12px, 1.6vw, 26px);
}

body.look-tonus .main-header {
  backdrop-filter: blur(8px);
  background: rgba(252, 248, 241, 0.95);
  border-bottom: 1px solid rgba(169, 154, 134, 0.34);
  box-shadow: 0 10px 20px rgba(18, 16, 14, 0.08);
  padding: 14px clamp(12px, 1.6vw, 26px);
}

body.look-tonus .brand-logo {
  border: 1px solid rgba(150, 132, 111, 0.4);
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(14, 12, 10, 0.13);
  height: 2.8rem;
  width: 2.8rem;
}

body.look-tonus .brand-text strong {
  font-size: 1.22rem;
  letter-spacing: 0.01em;
}

body.look-tonus .brand-text small {
  color: #6c6458;
  letter-spacing: 0.14em;
}

body.look-tonus .main-nav {
  gap: 24px;
}

body.look-tonus .main-nav a {
  color: #1f1c18;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  position: relative;
}

body.look-tonus .main-nav a::after {
  background: linear-gradient(90deg, rgba(195, 124, 79, 0.85), rgba(195, 124, 79, 0));
  bottom: -5px;
  content: "";
  height: 1px;
  left: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.2s ease;
  width: 100%;
}

body.look-tonus .main-nav a:hover {
  color: #a1572d;
}

body.look-tonus .main-nav a:hover::after {
  opacity: 1;
}

body.look-tonus .top-category-btn,
body.look-tonus .top-category-option,
body.look-tonus .button-ghost,
body.look-tonus .lang-btn,
body.look-tonus .filter-chip,
body.look-tonus .chip {
  background: linear-gradient(180deg, #ffffff 0%, #f6f1e8 100%);
  border: 1px solid rgba(168, 145, 121, 0.45);
  border-radius: 10px;
  box-shadow: 0 5px 12px rgba(21, 18, 14, 0.08);
  color: #1b1815;
}

body.look-tonus .top-category-btn.active,
body.look-tonus .top-category-option.active,
body.look-tonus .lang-btn.active,
body.look-tonus .button-solid,
body.look-tonus .cart-button,
body.look-tonus .marquee-nav,
body.look-tonus .modal-close,
body.look-tonus .filter-chip.active,
body.look-tonus .chip.active {
  background: linear-gradient(135deg, #c57240, #9f562d);
  border-color: #7f441f;
  color: #fff8ef;
}

body.look-tonus .button-solid,
body.look-tonus .button-ghost,
body.look-tonus .top-category-btn,
body.look-tonus .top-category-option,
body.look-tonus .lang-btn,
body.look-tonus .cart-button,
body.look-tonus .filter-chip,
body.look-tonus .chip,
body.look-tonus .modal-close {
  border-radius: 10px;
}

body.look-tonus .button-solid:hover,
body.look-tonus .cart-button:hover,
body.look-tonus .marquee-nav:hover {
  box-shadow: 0 12px 22px rgba(106, 58, 29, 0.24);
  transform: translateY(-1px);
}

body.look-tonus .button-ghost:hover,
body.look-tonus .top-category-btn:hover,
body.look-tonus .top-category-option:hover,
body.look-tonus .filter-chip:hover,
body.look-tonus .chip:hover {
  border-color: rgba(160, 122, 90, 0.7);
  box-shadow: 0 9px 18px rgba(21, 18, 14, 0.12);
  transform: translateY(-1px);
}

body.look-tonus .side-social {
  background:
    linear-gradient(170deg, rgba(255, 255, 255, 0.9), rgba(246, 239, 229, 0.88)),
    linear-gradient(120deg, rgba(195, 124, 79, 0.1), transparent 60%);
  border: 1px solid rgba(152, 133, 113, 0.35);
  border-radius: 16px;
  box-shadow:
    0 14px 28px rgba(18, 15, 12, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  left: 10px;
  width: 132px;
}

body.look-tonus .side-social-item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 239, 229, 0.9));
  border: 1px solid rgba(152, 133, 113, 0.45);
  color: #28231d;
}

body.look-tonus main {
  max-width: none;
  padding: 26px clamp(12px, 1.6vw, 26px) 84px;
  width: 100%;
}

body.look-tonus .hero-slab {
  gap: 16px;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.5fr);
  grid-template-rows: minmax(238px, auto) minmax(238px, auto);
}

body.look-tonus .hero-panel {
  border: 1px solid rgba(154, 136, 115, 0.33);
  border-radius: 18px;
  box-shadow:
    0 16px 30px rgba(18, 15, 12, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

body.look-tonus .hero-panel-lead {
  background:
    radial-gradient(circle at 16% 18%, rgba(197, 114, 64, 0.22), transparent 34%),
    linear-gradient(145deg, #161412 0%, #1f1a16 56%, #29231f 100%);
  min-height: 520px;
}

body.look-tonus .hero-panel-lead h1 {
  font-size: clamp(2.2rem, 5.3vw, 4.7rem);
  line-height: 0.92;
  max-width: 780px;
}

body.look-tonus .hero-copy {
  color: rgba(250, 242, 231, 0.92);
}

body.look-tonus .hero-panel-card,
body.look-tonus .hero-panel-card.alt {
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(245, 237, 227, 0.92)),
    radial-gradient(circle at 84% 12%, rgba(195, 124, 79, 0.1), transparent 34%);
}

body.look-tonus .quote-strip {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(162, 145, 126, 0.3);
  border-radius: 0;
  box-shadow: none;
  margin: 18px 0 22px;
  padding: 0 0 12px;
}

body.look-tonus .quote-strip p {
  color: #26221d;
  font-size: clamp(0.98rem, 2vw, 1.36rem);
  letter-spacing: 0.07em;
}

body.look-tonus .marquee-shell,
body.look-tonus .marquee-shell.alt,
body.look-tonus .store-shell {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

body.look-tonus .marquee-shell {
  margin: 0 0 28px;
  overflow: visible;
}

body.look-tonus .marquee-shell::before {
  display: none;
}

body.look-tonus .marquee-head {
  align-items: center;
  border-bottom: 1px solid rgba(162, 145, 126, 0.24);
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 10px;
}

body.look-tonus .marquee-title {
  gap: 4px;
}

body.look-tonus .marquee-title::before {
  display: none;
}

body.look-tonus .marquee-head p {
  color: #8a7d6b;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  margin: 0;
  text-transform: uppercase;
}

body.look-tonus .marquee-head p::after {
  display: none;
}

body.look-tonus .marquee-head h2 {
  background: none;
  -webkit-text-fill-color: #221d17;
  color: #221d17;
  font-family: "Instrument Sans", "Segoe UI", sans-serif;
  font-size: clamp(1rem, 1.9vw, 1.4rem);
  font-weight: 600;
  letter-spacing: 0.006em;
  line-height: 1.24;
  margin: 0;
  max-width: 700px;
  text-transform: none !important;
}

body.look-tonus #home-best-sellers .marquee-head h2::after,
body.look-tonus #home-style-picks .marquee-head h2::after {
  display: none;
}

body.look-tonus .marquee-item-card {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(247, 241, 231, 0.94)),
    radial-gradient(circle at 82% 14%, rgba(195, 124, 79, 0.08), transparent 34%);
  border: 1px solid rgba(151, 134, 114, 0.32);
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(17, 14, 12, 0.1);
}

body.look-tonus .marquee-item-card:hover {
  border-color: rgba(195, 124, 79, 0.5);
  box-shadow: 0 18px 32px rgba(17, 14, 12, 0.15);
}

body.look-tonus .marquee-item-card::after {
  background: linear-gradient(90deg, rgba(195, 124, 79, 0.9), rgba(195, 124, 79, 0));
}

body.look-tonus .store-shell {
  margin-top: 18px;
}

body.look-tonus .store-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.45rem);
}

body.look-tonus .controls,
body.look-tonus .store-filters {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

body.look-tonus .controls {
  gap: 12px;
  margin-bottom: 14px;
}

body.look-tonus .store-filters {
  gap: 12px;
  margin-bottom: 18px;
}

body.look-tonus .controls input,
body.look-tonus .controls select,
body.look-tonus .checkout-form input,
body.look-tonus .checkout-form select,
body.look-tonus .checkout-form textarea,
body.look-tonus .coupon-row input,
body.look-tonus .auth-form input,
body.look-tonus .auth-form select {
  background: linear-gradient(180deg, #ffffff 0%, #f8f3ea 100%);
  border: 1px solid rgba(162, 143, 122, 0.45);
  border-radius: 10px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 4px 10px rgba(21, 18, 14, 0.08);
}

body.look-tonus .controls input:focus,
body.look-tonus .controls select:focus,
body.look-tonus .checkout-form input:focus,
body.look-tonus .checkout-form select:focus,
body.look-tonus .checkout-form textarea:focus,
body.look-tonus .coupon-row input:focus,
body.look-tonus .auth-form input:focus,
body.look-tonus .auth-form select:focus {
  border-color: rgba(162, 94, 54, 0.86);
  box-shadow:
    0 0 0 3px rgba(195, 124, 79, 0.2),
    0 10px 18px rgba(101, 58, 29, 0.15);
}

body.look-tonus .product-grid {
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

body.look-tonus .store-card {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(247, 241, 231, 0.94)),
    radial-gradient(circle at 84% 12%, rgba(195, 124, 79, 0.08), transparent 34%);
  border: 1px solid rgba(151, 134, 114, 0.34);
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(17, 14, 12, 0.1);
  min-height: 436px;
}

body.look-tonus .store-card:hover {
  border-color: rgba(195, 124, 79, 0.54);
  box-shadow: 0 20px 34px rgba(17, 14, 12, 0.16);
  transform: translateY(-5px);
}

body.look-tonus .store-card::after {
  background: linear-gradient(90deg, rgba(195, 124, 79, 0.9), rgba(195, 124, 79, 0));
}

body.look-tonus .store-art {
  aspect-ratio: 4 / 5.1;
}

body.look-tonus .store-body {
  gap: 8px;
  padding: 15px;
}

body.look-tonus .store-body h3 {
  font-size: 1.14rem;
}

body.look-tonus .store-actions .button-solid,
body.look-tonus .store-actions .button-ghost {
  min-height: 40px;
}

body.look-tonus .value-stack {
  gap: 12px;
  margin-top: 24px;
}

body.look-tonus .value-stack article {
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.64), rgba(247, 241, 231, 0.58)),
    radial-gradient(circle at 82% 12%, rgba(195, 124, 79, 0.06), transparent 30%);
  border: 1px solid rgba(151, 134, 114, 0.3);
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(17, 14, 12, 0.08);
}

body.look-tonus .main-footer {
  background: #151311;
  border-top: 1px solid rgba(195, 124, 79, 0.35);
  color: #f8efe2;
}

body.look-tonus .main-footer p {
  color: #f8efe2;
}

body.look-tonus .main-footer .footer-credit {
  color: rgba(245, 235, 221, 0.86);
}

body.look-tonus .main-footer .footer-credit a {
  color: #ffcbab;
}

@media (max-width: 1080px) {
  body.look-tonus .hero-slab {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  body.look-tonus .hero-panel-lead {
    min-height: 410px;
  }
}

@media (max-width: 860px) {
  body.look-tonus .info-ribbon,
  body.look-tonus .main-header {
    padding-left: 10px;
    padding-right: 10px;
  }

  body.look-tonus main {
    padding: 20px 10px 72px;
  }

  body.look-tonus .marquee-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  body.look-tonus .marquee-head h2 {
    font-size: clamp(0.96rem, 4.3vw, 1.16rem);
    max-width: 100%;
  }
}

/* Card sizing fix: prevent over-stretched product cards */
body.look-tonus .product-grid {
  gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 300px));
  justify-content: start;
}

body.look-tonus .store-card {
  min-height: 410px;
}

body.look-tonus .marquee-item-card {
  min-width: 280px;
  width: 280px;
}

@media (max-width: 980px) {
  body.look-tonus .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}

@media (max-width: 560px) {
  body.look-tonus .product-grid {
    grid-template-columns: 1fr;
  }

  body.look-tonus .marquee-item-card {
    min-width: min(86vw, 320px);
    width: min(86vw, 320px);
  }
}

/* =========================================================
   REFRESH v9 (E:\Yeni-site inspired) - Full Page Minimal
   ========================================================= */
body.look-yeni {
  background:
    radial-gradient(circle at 10% -10%, rgba(255, 255, 255, 0.08), transparent 34%),
    radial-gradient(circle at 90% 0%, rgba(197, 124, 81, 0.12), transparent 38%),
    #0d0d0d;
  color: #f1ece3;
}

body.look-yeni::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.32;
  z-index: -2;
}

body.look-yeni::after {
  background: radial-gradient(circle at 50% 120%, rgba(255, 255, 255, 0.08), transparent 46%);
  z-index: -1;
}

body.look-yeni .info-ribbon {
  background: rgba(10, 10, 10, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
  color: #c8c2b7;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  padding: 10px clamp(10px, 1.6vw, 24px);
}

body.look-yeni .main-header {
  backdrop-filter: blur(8px);
  background: rgba(12, 12, 12, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
  padding: 14px clamp(10px, 1.6vw, 24px);
}

body.look-yeni .brand-logo {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: none;
}

body.look-yeni .brand-text strong {
  color: #f5f1e9;
}

body.look-yeni .brand-text small {
  color: #a49c90;
}

body.look-yeni .main-nav a {
  color: #b7afa3;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  transition: color 0.2s ease;
}

body.look-yeni .main-nav a:hover {
  color: #ffffff;
}

body.look-yeni .top-category-btn,
body.look-yeni .top-category-option,
body.look-yeni .button-ghost,
body.look-yeni .lang-btn,
body.look-yeni .filter-chip,
body.look-yeni .chip {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: none;
  color: #ddd6ca;
}

body.look-yeni .top-category-btn.active,
body.look-yeni .top-category-option.active,
body.look-yeni .lang-btn.active,
body.look-yeni .filter-chip.active,
body.look-yeni .chip.active {
  background: #f1ece3;
  border-color: #f1ece3;
  color: #11100f;
}

body.look-yeni .button-solid,
body.look-yeni .cart-button,
body.look-yeni .marquee-nav,
body.look-yeni .modal-close {
  background: linear-gradient(135deg, #c77745, #9a522b);
  border: 1px solid #85441f;
  border-radius: 8px;
  box-shadow: none;
  color: #fff6ef;
}

body.look-yeni .button-solid:hover,
body.look-yeni .cart-button:hover,
body.look-yeni .marquee-nav:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

body.look-yeni main {
  margin: 0;
  max-width: none;
  padding: 24px clamp(10px, 1.6vw, 24px) 86px;
  width: 100%;
}

body.look-yeni .side-social {
  background: rgba(10, 10, 10, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  box-shadow: none;
  left: 8px;
  width: 126px;
}

body.look-yeni .side-social::before,
body.look-yeni .side-social::after {
  display: none;
}

body.look-yeni .side-social-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #bfb6aa;
  min-height: 32px;
}

body.look-yeni .side-social-item:hover {
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: none;
}

body.look-yeni .side-social-icon {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #f2ece2;
}

body.look-yeni .hero-slab {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
}

body.look-yeni .hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  box-shadow: none;
}

body.look-yeni .hero-panel-lead {
  background:
    radial-gradient(circle at 12% 18%, rgba(199, 120, 72, 0.26), transparent 36%),
    linear-gradient(145deg, #121212 0%, #191919 56%, #212121 100%);
  min-height: 480px;
}

body.look-yeni .hero-panel-lead h1 {
  font-size: clamp(2.2rem, 5.4vw, 4.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

body.look-yeni .hero-mini,
body.look-yeni .hero-copy {
  color: #c9c1b5;
}

body.look-yeni .hero-panel-card,
body.look-yeni .hero-panel-card.alt {
  background:
    linear-gradient(160deg, rgba(245, 239, 228, 0.96), rgba(232, 224, 211, 0.94)),
    radial-gradient(circle at 80% 10%, rgba(199, 120, 72, 0.1), transparent 34%);
  color: #151311;
}

body.look-yeni .hero-panel-card p {
  color: #7a7165;
}

body.look-yeni .hero-panel-card span {
  color: #3b352e;
}

body.look-yeni .quote-strip {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  box-shadow: none;
  margin: 18px 0 22px;
  padding: 0 0 12px;
}

body.look-yeni .quote-strip p {
  color: #d4ccbf;
  font-size: clamp(0.9rem, 1.9vw, 1.26rem);
  letter-spacing: 0.12em;
}

body.look-yeni .marquee-shell,
body.look-yeni .marquee-shell.alt,
body.look-yeni .store-shell {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

body.look-yeni .marquee-shell {
  margin: 0 0 28px;
  overflow: visible;
}

body.look-yeni .marquee-shell::before {
  display: none;
}

body.look-yeni .marquee-head {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 12px;
  padding-bottom: 10px;
}

body.look-yeni .marquee-head p {
  color: #8f8578;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  margin: 0;
}

body.look-yeni .marquee-head p::after {
  display: none;
}

body.look-yeni .marquee-head h2 {
  background: none;
  -webkit-text-fill-color: #f0eae0;
  color: #f0eae0;
  font-family: "Instrument Sans", "Segoe UI", sans-serif;
  font-size: clamp(0.98rem, 1.8vw, 1.34rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.24;
  margin: 0;
  max-width: 740px;
  text-transform: none !important;
}

body.look-yeni #home-best-sellers .marquee-head h2::after,
body.look-yeni #home-style-picks .marquee-head h2::after {
  display: none;
}

body.look-yeni .marquee-item-card {
  background: rgba(20, 20, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  box-shadow: none;
  min-width: 260px;
  width: 260px;
}

body.look-yeni .marquee-item-card::after {
  background: linear-gradient(90deg, rgba(199, 120, 72, 0.9), rgba(199, 120, 72, 0));
}

body.look-yeni .marquee-item-category {
  color: #a59b8f;
}

body.look-yeni .marquee-item-body h3,
body.look-yeni .marquee-item-foot strong {
  color: #f2ece2;
}

body.look-yeni .marquee-item-meta {
  color: #b9b0a3;
}

body.look-yeni .marquee-item-foot {
  border-top: 1px dashed rgba(255, 255, 255, 0.16);
}

body.look-yeni .marquee-item-discount-badge {
  background: rgba(191, 51, 51, 0.15);
  border: 1px solid rgba(255, 112, 112, 0.5);
  color: #ffb5b5;
}

body.look-yeni .marquee-item-stock-warning,
body.look-yeni .marquee-item-stock-out {
  color: #ff7f7f;
}

body.look-yeni .marquee-item-price-old {
  color: #8f8578;
}

body.look-yeni .store-shell {
  margin-top: 20px;
}

body.look-yeni .store-head p {
  color: #8f8578;
}

body.look-yeni .store-head h2 {
  background: none;
  -webkit-text-fill-color: #f2ece2;
  color: #f2ece2;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  letter-spacing: 0.03em;
}

body.look-yeni .store-head h2::after {
  background: linear-gradient(90deg, rgba(199, 120, 72, 0.9), rgba(199, 120, 72, 0));
}

body.look-yeni .controls,
body.look-yeni .store-filters {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

body.look-yeni .controls {
  gap: 12px;
  margin-bottom: 14px;
}

body.look-yeni .store-filters {
  gap: 12px;
  margin-bottom: 18px;
}

body.look-yeni .filter-group p {
  color: #8f8578;
}

body.look-yeni .controls input,
body.look-yeni .controls select,
body.look-yeni .checkout-form input,
body.look-yeni .checkout-form select,
body.look-yeni .checkout-form textarea,
body.look-yeni .coupon-row input,
body.look-yeni .auth-form input,
body.look-yeni .auth-form select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: none;
  color: #f1ece3;
}

body.look-yeni .controls input::placeholder,
body.look-yeni .checkout-form input::placeholder,
body.look-yeni .checkout-form textarea::placeholder,
body.look-yeni .coupon-row input::placeholder,
body.look-yeni .auth-form input::placeholder {
  color: #8f8578;
}

body.look-yeni .controls input:focus,
body.look-yeni .controls select:focus,
body.look-yeni .checkout-form input:focus,
body.look-yeni .checkout-form select:focus,
body.look-yeni .checkout-form textarea:focus,
body.look-yeni .coupon-row input:focus,
body.look-yeni .auth-form input:focus,
body.look-yeni .auth-form select:focus {
  border-color: rgba(199, 120, 72, 0.8);
  box-shadow: 0 0 0 3px rgba(199, 120, 72, 0.16);
}

body.look-yeni .product-grid {
  gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 300px));
  justify-content: start;
}

body.look-yeni .store-card {
  background: rgba(20, 20, 20, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  box-shadow: none;
  min-height: 410px;
}

body.look-yeni .store-card:hover {
  border-color: rgba(199, 120, 72, 0.58);
  box-shadow: none;
  transform: translateY(-3px);
}

body.look-yeni .store-card::after {
  background: linear-gradient(90deg, rgba(199, 120, 72, 0.9), rgba(199, 120, 72, 0));
}

body.look-yeni .store-art {
  aspect-ratio: 4 / 5.05;
}

body.look-yeni .store-category {
  color: #a59b8f;
}

body.look-yeni .store-body h3,
body.look-yeni .price-current {
  color: #f3ede3;
}

body.look-yeni .store-body p {
  color: #b8afa3;
}

body.look-yeni .price-old {
  color: #8f8578;
}

body.look-yeni .store-row {
  border-top: 1px dashed rgba(255, 255, 255, 0.16);
}

body.look-yeni .store-row small {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #c8c0b4;
}

body.look-yeni .store-discount-badge {
  background: rgba(191, 51, 51, 0.15);
  border: 1px solid rgba(255, 112, 112, 0.5);
  color: #ffb5b5;
}

body.look-yeni .store-body p.stock-warning,
body.look-yeni .store-body p.stock-out-notice {
  color: #ff7f7f;
}

body.look-yeni .value-stack {
  gap: 10px;
  margin-top: 24px;
}

body.look-yeni .value-stack article {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  box-shadow: none;
}

body.look-yeni .value-stack article p {
  color: #8f8578;
}

body.look-yeni .value-stack h3 {
  color: #f2ece2;
}

body.look-yeni .value-stack span {
  color: #b8afa3;
}

body.look-yeni .main-footer {
  background: #0c0c0c;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #bdb5aa;
}

body.look-yeni .main-footer p {
  color: #bdb5aa;
}

body.look-yeni .main-footer .footer-credit {
  color: #9f9588;
}

body.look-yeni .main-footer .footer-credit a {
  color: #efe8dd;
}

@media (max-width: 1080px) {
  body.look-yeni .side-social {
    display: none;
  }

  body.look-yeni .hero-slab {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  body.look-yeni .hero-panel-lead {
    min-height: 390px;
  }
}

@media (max-width: 980px) {
  body.look-yeni .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    justify-content: stretch;
  }
}

@media (max-width: 860px) {
  body.look-yeni .info-ribbon,
  body.look-yeni .main-header {
    padding-left: 10px;
    padding-right: 10px;
  }

  body.look-yeni main {
    padding: 20px 10px 72px;
  }

  body.look-yeni .main-nav {
    gap: 14px;
  }

  body.look-yeni .marquee-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  body.look-yeni .marquee-head h2 {
    font-size: clamp(0.94rem, 4.3vw, 1.16rem);
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  body.look-yeni .product-grid {
    grid-template-columns: 1fr;
  }

  body.look-yeni .marquee-item-card {
    min-width: min(86vw, 320px);
    width: min(86vw, 320px);
  }
}

/* =========================================================
   LOOK-KOTON v1 - Clean ecommerce storefront (original)
   ========================================================= */
body.look-koton {
  background: #fff;
  color: #16120d;
}

body.look-koton::before,
body.look-koton::after {
  display: none;
}

body.look-koton .info-ribbon {
  background: #f8f8f8;
  border-bottom: 1px solid #e9e9e9;
  box-shadow: none;
  color: #4a453f;
  font-size: 0.63rem;
  letter-spacing: 0.1em;
  padding: 9px clamp(12px, 1.8vw, 30px);
}

body.look-koton .main-header {
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid #ececec;
  box-shadow: 0 10px 22px rgba(10, 10, 10, 0.05);
  gap: 16px;
  padding: 14px clamp(12px, 1.8vw, 30px);
}

body.look-koton .brand-logo {
  border: 1px solid #ece6df;
  border-radius: 8px;
  box-shadow: none;
}

body.look-koton .brand-text strong {
  color: #17130f;
  font-family: "Instrument Sans", "Segoe UI", sans-serif;
  font-size: 1.16rem;
  letter-spacing: 0;
}

body.look-koton .brand-text small {
  color: #6f675d;
}

body.look-koton .main-nav {
  gap: 18px;
}

body.look-koton .main-nav a {
  color: #3d3730;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  position: relative;
}

body.look-koton .main-nav a::after {
  background: #111;
  bottom: -6px;
  content: "";
  height: 1px;
  left: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.2s ease;
  width: 100%;
}

body.look-koton .main-nav a:hover {
  color: #111;
}

body.look-koton .main-nav a:hover::after {
  opacity: 1;
}

body.look-koton .top-category-btn,
body.look-koton .top-category-option,
body.look-koton .button-ghost,
body.look-koton .lang-btn,
body.look-koton .filter-chip,
body.look-koton .chip {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: none;
  color: #2c2621;
}

body.look-koton .top-category-btn.active,
body.look-koton .top-category-option.active,
body.look-koton .lang-btn.active,
body.look-koton .filter-chip.active,
body.look-koton .chip.active {
  background: #111;
  border-color: #111;
  color: #fff;
}

body.look-koton .button-solid,
body.look-koton .cart-button,
body.look-koton .marquee-nav,
body.look-koton .modal-close {
  background: #111;
  border: 1px solid #111;
  border-radius: 8px;
  box-shadow: none;
  color: #fff;
}

body.look-koton .button-solid:hover,
body.look-koton .cart-button:hover,
body.look-koton .marquee-nav:hover,
body.look-koton .modal-close:hover {
  background: #2a2a2a;
  border-color: #2a2a2a;
  box-shadow: none;
  transform: translateY(-1px);
}

body.look-koton .side-social {
  display: grid;
}

body.look-koton main {
  margin: 0 auto;
  max-width: 1340px;
  padding: 20px clamp(12px, 1.7vw, 26px) 86px;
}

body.look-koton .hero-slab {
  gap: 14px;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.5fr);
  grid-template-rows: minmax(210px, auto) minmax(210px, auto);
}

body.look-koton .hero-panel {
  border: 1px solid #ececec;
  border-radius: 10px;
  box-shadow: none;
}

body.look-koton .hero-panel:hover {
  border-color: #dcdcdc;
  box-shadow: 0 10px 20px rgba(17, 17, 17, 0.08);
  transform: translateY(-1px);
}

body.look-koton .hero-panel-lead {
  background:
    linear-gradient(130deg, rgba(245, 240, 232, 0.95), rgba(255, 255, 255, 0.97)),
    radial-gradient(circle at 82% 15%, rgba(201, 101, 46, 0.2), transparent 34%);
  color: #17120d;
  grid-row: 1 / span 2;
  min-height: 440px;
}

body.look-koton .hero-panel-lead::after {
  color: rgba(20, 20, 20, 0.07);
}

body.look-koton .hero-mini {
  color: #8a7760;
}

body.look-koton .hero-panel-lead h1 {
  color: #18130f;
  font-family: "Instrument Sans", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4.6vw, 3.7rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  max-width: 11ch;
}

body.look-koton .hero-copy {
  color: #3b352f;
}

body.look-koton .hero-panel-card,
body.look-koton .hero-panel-card.alt {
  background: #faf9f7;
}

body.look-koton .hero-panel-card p {
  color: #7c7268;
}

body.look-koton .hero-panel-card strong {
  color: #18130f;
  font-family: "Instrument Sans", "Segoe UI", sans-serif;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 800;
}

body.look-koton .hero-panel-card span {
  color: #4f463d;
}

body.look-koton .quote-strip {
  background: transparent;
  border: 0;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  border-radius: 0;
  box-shadow: none;
  margin: 18px 0 22px;
  padding: 12px 0;
}

body.look-koton .quote-strip p {
  color: #403a33;
  font-family: "Instrument Sans", "Segoe UI", sans-serif;
  font-size: clamp(0.9rem, 1.7vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}

body.look-koton .marquee-shell,
body.look-koton .marquee-shell.alt,
body.look-koton .store-shell {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

body.look-koton .marquee-shell {
  margin: 0 0 24px;
  overflow: visible;
}

body.look-koton .marquee-shell::before {
  display: none;
}

body.look-koton .marquee-head {
  align-items: center;
  border-bottom: 1px solid #ececec;
  margin-bottom: 12px;
  padding-bottom: 10px;
}

body.look-koton .marquee-head p {
  color: #867a6d;
  font-size: 0.57rem;
  letter-spacing: 0.18em;
  margin: 0;
}

body.look-koton .marquee-head p::after {
  display: none;
}

body.look-koton .marquee-head h2 {
  background: none;
  -webkit-text-fill-color: #1e1914;
  color: #1e1914;
  font-family: "Instrument Sans", "Segoe UI", sans-serif;
  font-size: clamp(1.08rem, 2vw, 1.46rem);
  font-weight: 700;
  line-height: 1.22;
  margin: 0;
  text-transform: none !important;
}

body.look-koton #home-best-sellers .marquee-head h2::after,
body.look-koton #home-style-picks .marquee-head h2::after {
  display: none;
}

body.look-koton .marquee-item-card {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  box-shadow: none;
  min-width: 244px;
  width: 244px;
}

body.look-koton .marquee-item-card:hover {
  border-color: #d8d8d8;
  box-shadow: 0 12px 20px rgba(15, 15, 15, 0.08);
}

body.look-koton .marquee-item-card::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
}

body.look-koton .marquee-item-category,
body.look-koton .store-category {
  color: #7f756b;
}

body.look-koton .marquee-item-body h3,
body.look-koton .marquee-item-foot strong,
body.look-koton .store-body h3,
body.look-koton .price-current {
  color: #18130f;
}

body.look-koton .marquee-item-meta,
body.look-koton .store-body p {
  color: #5e564d;
}

body.look-koton .marquee-item-price-old,
body.look-koton .price-old {
  color: #8d8377;
}

body.look-koton .marquee-item-discount-badge,
body.look-koton .store-discount-badge {
  background: #fff5f5;
  border: 1px solid #f5bcbc;
  color: #b93131;
}

body.look-koton .marquee-item-stock-warning,
body.look-koton .marquee-item-stock-out,
body.look-koton .store-body p.stock-warning,
body.look-koton .store-body p.stock-out-notice {
  color: #ba2d2d;
}

body.look-koton .store-shell {
  margin-top: 18px;
}

body.look-koton .store-head p {
  color: #7f756b;
}

body.look-koton .store-head h2 {
  background: none;
  -webkit-text-fill-color: #1d1914;
  color: #1d1914;
  font-size: clamp(1.45rem, 2.8vw, 2.25rem);
  font-weight: 800;
}

body.look-koton .store-head h2::after {
  background: linear-gradient(90deg, #111, rgba(17, 17, 17, 0));
}

body.look-koton .controls,
body.look-koton .store-filters {
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 10px;
  box-shadow: none;
  padding: 10px;
}

body.look-koton .controls {
  gap: 10px;
  margin-bottom: 12px;
}

body.look-koton .store-filters {
  gap: 10px;
  margin-bottom: 16px;
}

body.look-koton .controls input,
body.look-koton .controls select,
body.look-koton .checkout-form input,
body.look-koton .checkout-form select,
body.look-koton .checkout-form textarea,
body.look-koton .coupon-row input,
body.look-koton .auth-form input,
body.look-koton .auth-form select {
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 8px;
  box-shadow: none;
  color: #1b1712;
}

body.look-koton .controls input::placeholder,
body.look-koton .checkout-form input::placeholder,
body.look-koton .checkout-form textarea::placeholder,
body.look-koton .coupon-row input::placeholder,
body.look-koton .auth-form input::placeholder {
  color: #93887b;
}

body.look-koton .controls input:focus,
body.look-koton .controls select:focus,
body.look-koton .checkout-form input:focus,
body.look-koton .checkout-form select:focus,
body.look-koton .checkout-form textarea:focus,
body.look-koton .coupon-row input:focus,
body.look-koton .auth-form input:focus,
body.look-koton .auth-form select:focus {
  border-color: #1d1d1d;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.12);
}

body.look-koton .product-grid {
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

body.look-koton .store-card {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  box-shadow: none;
  min-height: 396px;
}

body.look-koton .store-card:hover {
  border-color: #d8d8d8;
  box-shadow: 0 14px 24px rgba(15, 15, 15, 0.08);
  transform: translateY(-2px);
}

body.look-koton .store-card::after {
  background: linear-gradient(90deg, #111, rgba(17, 17, 17, 0));
}

body.look-koton .store-art {
  aspect-ratio: 4 / 5;
}

body.look-koton .store-body {
  gap: 7px;
  padding: 13px;
}

body.look-koton .store-body h3 {
  font-size: 1.04rem;
}

body.look-koton .store-row {
  border-top: 1px dashed #e4e4e4;
}

body.look-koton .store-row small {
  background: #f4f4f4;
  border: 1px solid #dedede;
  color: #625a52;
}

body.look-koton .store-actions .button-solid,
body.look-koton .store-actions .button-ghost {
  min-height: 37px;
}

body.look-koton .value-stack {
  gap: 10px;
  margin-top: 24px;
}

body.look-koton .value-stack article {
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 10px;
  box-shadow: none;
}

body.look-koton .value-stack article p {
  color: #8a8074;
}

body.look-koton .value-stack h3 {
  color: #1d1914;
}

body.look-koton .value-stack span {
  color: #5f574e;
}

body.look-koton .main-footer {
  background: #fff;
  border-top: 1px solid #ececec;
  color: #71685d;
}

body.look-koton .main-footer p {
  color: #71685d;
}

body.look-koton .main-footer .footer-credit {
  color: #8d8478;
}

body.look-koton .main-footer .footer-credit a {
  color: #2e2923;
}

@media (max-width: 1080px) {
  body.look-koton .hero-slab {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  body.look-koton .hero-panel-lead {
    min-height: 360px;
  }
}

@media (max-width: 860px) {
  body.look-koton .info-ribbon,
  body.look-koton .main-header {
    padding-left: 10px;
    padding-right: 10px;
  }

  body.look-koton main {
    padding: 18px 10px 72px;
  }

  body.look-koton .main-nav {
    gap: 12px;
  }

  body.look-koton .marquee-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  body.look-koton .marquee-head h2 {
    font-size: clamp(0.95rem, 4.3vw, 1.14rem);
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  body.look-koton .product-grid {
    grid-template-columns: 1fr;
  }

  body.look-koton .marquee-item-card {
    min-width: min(85vw, 320px);
    width: min(85vw, 320px);
  }
}

/* Look-koton: redesigned category dropdown UI */
body.look-koton .top-category-tabs {
  position: relative;
}

body.look-koton .category-dropdown {
  position: relative;
}

body.look-koton .top-category-btn.dropdown-trigger {
  align-items: center;
  background: #fff;
  border: 1px solid #d7d7d7;
  border-radius: 10px;
  box-shadow: 0 10px 18px rgba(15, 15, 15, 0.08);
  color: #1e1914;
  display: inline-flex;
  font-size: 0.68rem;
  font-weight: 700;
  justify-content: space-between;
  letter-spacing: 0.08em;
  min-height: 40px;
  min-width: 210px;
  padding: 0 12px;
  text-transform: uppercase;
}

body.look-koton .top-category-btn.dropdown-trigger.active {
  background: #111;
  border-color: #111;
  box-shadow: 0 14px 24px rgba(15, 15, 15, 0.18);
  color: #fff;
}

body.look-koton .dropdown-trigger-label {
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.look-koton .dropdown-trigger-caret {
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  display: inline-block;
  height: 8px;
  transform: rotate(45deg);
  transition: transform 0.2s ease, margin-top 0.2s ease;
  width: 8px;
}

body.look-koton .top-category-btn.dropdown-trigger.active .dropdown-trigger-caret {
  margin-top: 4px;
  transform: rotate(-135deg);
}

body.look-koton .category-dropdown-panel {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  box-shadow: 0 20px 36px rgba(15, 15, 15, 0.14);
  display: none;
  gap: 8px;
  left: 0;
  min-width: 280px;
  padding: 10px;
  position: absolute;
  top: calc(100% + 10px);
  width: min(320px, 86vw);
  z-index: 65;
}

body.look-koton .category-dropdown-panel.open {
  display: grid;
}

body.look-koton .category-dropdown-head {
  align-items: center;
  border-bottom: 1px solid #efefef;
  display: flex;
  justify-content: space-between;
  margin-bottom: 2px;
  padding-bottom: 8px;
}

body.look-koton .category-dropdown-title {
  color: #1f1a15;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0;
  text-transform: uppercase;
}

body.look-koton .category-dropdown-count {
  background: #f4f4f4;
  border: 1px solid #e3e3e3;
  border-radius: 999px;
  color: #5d554b;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  text-transform: uppercase;
}

body.look-koton .top-category-option {
  background: #fafafa;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  box-shadow: none;
  color: #26211b;
  font-size: 0.69rem;
  font-weight: 700;
  justify-content: flex-start;
  letter-spacing: 0.07em;
  min-height: 36px;
  padding: 0 11px;
  text-transform: uppercase;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

body.look-koton .top-category-option:hover {
  background: #f1f1f1;
  border-color: #d4d4d4;
  box-shadow: none;
  color: #14110e;
  transform: translateY(-1px);
}

body.look-koton .top-category-option.active {
  background: #111;
  border-color: #111;
  box-shadow: none;
  color: #fff;
}

body.look-koton .top-category-option.all-option {
  border-style: dashed;
}

body.look-koton .top-category-option.is-parent {
  font-weight: 800;
}

body.look-koton .top-category-option[data-depth="1"] {
  padding-left: 20px;
}

body.look-koton .top-category-option[data-depth="2"] {
  padding-left: 30px;
}

body.look-koton .top-category-option[data-depth="3"] {
  padding-left: 40px;
}

body.look-koton .top-category-option.is-leaf[data-depth]:not([data-depth="0"])::before {
  content: "•";
  margin-right: 8px;
  opacity: 0.5;
}

@media (max-width: 860px) {
  body.look-koton .top-category-btn.dropdown-trigger {
    min-width: 185px;
  }

  body.look-koton .category-dropdown-panel {
    min-width: 240px;
    width: min(300px, 88vw);
  }
}

/* =========================================
   LOOK-YENI LIGHT OVERRIDE v10 (white base)
   ========================================= */
body.look-yeni {
  background:
    radial-gradient(circle at 88% -8%, rgba(201, 126, 81, 0.1), transparent 34%),
    radial-gradient(circle at 10% 4%, rgba(20, 20, 20, 0.04), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7f3ec 100%);
  color: #1d1915;
}

body.look-yeni::before {
  opacity: 0.16;
}

body.look-yeni::after {
  background: radial-gradient(circle at 50% 120%, rgba(20, 20, 20, 0.06), transparent 44%);
}

body.look-yeni .info-ribbon {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(154, 136, 115, 0.26);
  color: #5c5448;
}

body.look-yeni .main-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(154, 136, 115, 0.26);
}

body.look-yeni .brand-text strong,
body.look-yeni .main-nav a {
  color: #1d1915;
}

body.look-yeni .brand-text small,
body.look-yeni .main-nav a:hover,
body.look-yeni .filter-group p,
body.look-yeni .store-head p,
body.look-yeni .marquee-head p {
  color: #6f6558;
}

body.look-yeni .top-category-btn,
body.look-yeni .top-category-option,
body.look-yeni .button-ghost,
body.look-yeni .lang-btn,
body.look-yeni .filter-chip,
body.look-yeni .chip {
  background: linear-gradient(180deg, #ffffff 0%, #f9f4ec 100%);
  border-color: rgba(160, 136, 110, 0.42);
  color: #241f1a;
}

body.look-yeni .button-solid,
body.look-yeni .cart-button,
body.look-yeni .marquee-nav,
body.look-yeni .modal-close {
  background: linear-gradient(135deg, #c77745, #9a522b);
  border-color: #82431f;
  color: #fff8ef;
}

body.look-yeni .side-social {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(160, 136, 110, 0.32);
}

body.look-yeni .side-social-item {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(160, 136, 110, 0.35);
  color: #3b352d;
}

body.look-yeni .side-social-icon {
  border-color: rgba(160, 136, 110, 0.45);
}

body.look-yeni .hero-panel,
body.look-yeni .marquee-item-card,
body.look-yeni .store-card,
body.look-yeni .value-stack article {
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(249, 243, 234, 0.92)),
    radial-gradient(circle at 84% 10%, rgba(199, 120, 72, 0.08), transparent 34%);
  border-color: rgba(154, 136, 115, 0.3);
  box-shadow: 0 10px 22px rgba(22, 18, 14, 0.08);
}

body.look-yeni .hero-panel-lead {
  background:
    radial-gradient(circle at 12% 16%, rgba(199, 120, 72, 0.18), transparent 34%),
    linear-gradient(145deg, #ffffff 0%, #f6f1e8 58%, #ece4d6 100%);
}

body.look-yeni .hero-mini,
body.look-yeni .hero-copy,
body.look-yeni .hero-panel-lead h1 {
  color: #1f1a15;
}

body.look-yeni .hero-panel-card p,
body.look-yeni .hero-panel-card span {
  color: #554d43;
}

body.look-yeni .quote-strip,
body.look-yeni .marquee-head,
body.look-yeni .store-row,
body.look-yeni .marquee-item-foot {
  border-color: rgba(154, 136, 115, 0.24);
}

body.look-yeni .quote-strip p,
body.look-yeni .marquee-head h2,
body.look-yeni .store-head h2 {
  color: #201b16;
  -webkit-text-fill-color: #201b16;
}

body.look-yeni .controls input,
body.look-yeni .controls select,
body.look-yeni .checkout-form input,
body.look-yeni .checkout-form select,
body.look-yeni .checkout-form textarea,
body.look-yeni .coupon-row input,
body.look-yeni .auth-form input,
body.look-yeni .auth-form select {
  background: #fff;
  border-color: rgba(154, 136, 115, 0.36);
  color: #1d1915;
}

body.look-yeni .controls input::placeholder,
body.look-yeni .checkout-form input::placeholder,
body.look-yeni .checkout-form textarea::placeholder,
body.look-yeni .coupon-row input::placeholder,
body.look-yeni .auth-form input::placeholder {
  color: #8a7f6f;
}

body.look-yeni .marquee-item-category,
body.look-yeni .store-category {
  color: #6f6558;
}

body.look-yeni .marquee-item-body h3,
body.look-yeni .marquee-item-foot strong,
body.look-yeni .store-body h3,
body.look-yeni .price-current {
  color: #201b16;
}

body.look-yeni .marquee-item-meta,
body.look-yeni .store-body p,
body.look-yeni .price-old {
  color: #6f6558;
}

body.look-yeni .store-row small {
  background: rgba(34, 28, 22, 0.06);
  border-color: rgba(34, 28, 22, 0.18);
  color: #5a5147;
}

body.look-yeni .main-footer {
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(154, 136, 115, 0.26);
}

body.look-yeni .main-footer p,
body.look-yeni .main-footer .footer-credit {
  color: #655c51;
}

body.look-yeni .main-footer .footer-credit a {
  color: #1f1a15;
}

/* =========================================
   LOOK-KOTON MEGA MENU + CARD REFINEMENT
   ========================================= */
body.look-koton .category-dropdown-panel.mega-panel {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  box-shadow: 0 28px 44px rgba(18, 18, 18, 0.18);
  display: none;
  left: 50%;
  min-width: 1040px;
  padding: 18px;
  position: absolute;
  top: calc(100% + 12px);
  transform: translateX(-50%);
  width: min(calc(100vw - 32px), 1680px);
  z-index: 90;
}

body.look-koton .category-dropdown-panel.mega-panel.open {
  display: block;
}

body.look-koton .mega-menu-shell {
  display: grid;
  gap: 24px;
  grid-template-columns: 190px minmax(0, 1fr) 340px;
}

body.look-koton .mega-shortcuts-col {
  align-content: start;
  display: grid;
  gap: 6px;
}

body.look-koton .mega-shortcut {
  appearance: none;
  background: transparent;
  border: 0;
  color: #111;
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  min-height: 32px;
  padding: 0;
  text-align: left;
  text-transform: uppercase;
}

body.look-koton .mega-shortcut:nth-child(1) {
  color: #0038af;
}

body.look-koton .mega-shortcut:nth-child(2) {
  color: #0038af;
}

body.look-koton .mega-shortcut:nth-child(3) {
  color: #d11111;
}

body.look-koton .mega-shortcut.active {
  text-decoration: underline;
  text-underline-offset: 5px;
}

body.look-koton .mega-groups-grid {
  align-content: start;
  display: grid;
  gap: 18px 26px;
  grid-template-columns: repeat(3, minmax(170px, 1fr));
}

body.look-koton .mega-group {
  align-content: start;
  display: grid;
  gap: 6px;
}

body.look-koton .mega-group-title {
  appearance: none;
  background: transparent;
  border: 0;
  color: #111;
  cursor: pointer;
  font-size: 1.03rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  min-height: 32px;
  padding: 0;
  text-align: left;
  text-transform: uppercase;
}

body.look-koton .mega-group-title.active,
body.look-koton .mega-group-title:hover {
  color: #b85a28;
}

body.look-koton .mega-group-links {
  align-content: start;
  display: grid;
  gap: 2px;
}

body.look-koton .mega-link {
  appearance: none;
  background: transparent;
  border: 0;
  color: #1e1e1e;
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 500;
  min-height: 26px;
  padding: 1px 0;
  text-align: left;
}

body.look-koton .mega-link[data-depth="2"] {
  padding-left: 12px;
}

body.look-koton .mega-link[data-depth="3"] {
  padding-left: 24px;
}

body.look-koton .mega-link.active,
body.look-koton .mega-link:hover {
  color: #b85a28;
}

body.look-koton .mega-visual-col {
  display: grid;
  gap: 12px;
}

body.look-koton .mega-visual-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.look-koton .mega-look-card {
  appearance: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: grid;
  gap: 6px;
  padding: 0;
  text-align: center;
}

body.look-koton .mega-look-card img {
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(16, 16, 16, 0.12);
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

body.look-koton .mega-look-card span {
  color: #202020;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

body.look-koton .mega-all-link {
  appearance: none;
  background: transparent;
  border: 0;
  color: #121212;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  justify-self: end;
  padding: 2px 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}

body.look-koton .mega-empty,
body.look-koton .mega-look-empty {
  color: #666;
  font-size: 0.88rem;
}

body.look-koton .product-grid {
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

body.look-koton .store-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(14, 14, 14, 0.08);
  min-height: 0;
  overflow: hidden;
}

body.look-koton .store-card::after {
  display: none;
}

body.look-koton .store-card:hover {
  border-color: #d5d5d5;
  box-shadow: 0 14px 26px rgba(14, 14, 14, 0.12);
  transform: translateY(-2px);
}

body.look-koton .store-art {
  aspect-ratio: 3 / 4;
  border-bottom: 0;
  border-radius: 0;
  overflow: hidden;
}

body.look-koton .store-art-image {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

body.look-koton .store-badge {
  background: color-mix(in srgb, var(--badge-tone, #171614) 86%, transparent);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  left: 10px;
  letter-spacing: 0.08em;
  max-width: min(58%, 148px);
  min-height: 24px;
  overflow: hidden;
  padding: 0 8px;
  text-overflow: ellipsis;
  top: 10px;
  white-space: nowrap;
}

body.look-koton .store-body {
  display: grid;
  gap: 6px;
  padding: 12px 12px 13px;
}

body.look-koton .store-category {
  color: #6c6c6c;
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: none;
}

body.look-koton .store-body h3 {
  color: #111;
  font-size: 1.14rem;
  font-weight: 500;
  letter-spacing: 0;
  margin: 0;
  text-transform: none;
}

body.look-koton .store-row {
  align-items: flex-end;
  border-top: 0;
  gap: 8px;
  justify-content: space-between;
  margin-top: 1px;
  padding-top: 0;
}

body.look-koton .store-price-stack {
  gap: 2px;
}

body.look-koton .price-old {
  color: #9a9a9a;
  font-size: 1rem;
}

body.look-koton .price-current {
  color: #111;
  font-size: 1.62rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
}

body.look-koton .store-discount-pill {
  align-items: center;
  background: #0f0f0f;
  color: #fff;
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 800;
  justify-content: center;
  min-height: 30px;
  min-width: 44px;
  padding: 0 8px;
}

body.look-koton .store-variants {
  color: #4f4f4f;
  font-size: 1.02rem;
  margin: 0;
}

body.look-koton .store-body p.stock-warning,
body.look-koton .store-body p.stock-out-notice {
  margin-top: 0;
}

body.look-koton .store-actions {
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 6px;
}

body.look-koton .store-actions .button-ghost,
body.look-koton .store-actions .button-solid {
  border-radius: 6px;
  font-size: 0.72rem;
  min-height: 37px;
}

@media (max-width: 1320px) {
  body.look-koton .mega-menu-shell {
    grid-template-columns: 170px minmax(0, 1fr) 300px;
  }

  body.look-koton .mega-groups-grid {
    grid-template-columns: repeat(2, minmax(170px, 1fr));
  }
}

@media (max-width: 980px) {
  body.look-koton .category-dropdown-panel.mega-panel {
    min-width: 0;
    width: min(calc(100vw - 20px), 860px);
  }

  body.look-koton .mega-menu-shell {
    grid-template-columns: 1fr;
  }

  body.look-koton .mega-shortcuts-col {
    border-bottom: 1px solid #ececec;
    grid-auto-flow: column;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-bottom: 8px;
  }

  body.look-koton .mega-groups-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.look-koton .mega-all-link {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  body.look-koton .mega-groups-grid,
  body.look-koton .mega-visual-grid {
    grid-template-columns: 1fr;
  }

  body.look-koton .mega-shortcuts-col {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
  }

  body.look-koton .product-grid {
    grid-template-columns: 1fr;
  }

  body.look-koton .price-current {
    font-size: 1.54rem;
  }
}

.store-art-link {
  color: inherit;
  display: block;
  text-decoration: none;
}

.store-name-link,
.marquee-item-name-link {
  color: inherit;
  text-decoration: none;
}

.store-name-link:hover,
.marquee-item-name-link:hover {
  color: var(--accent);
}

.store-actions a.button-ghost,
.marquee-item-actions .button-ghost,
.modal-detail-link {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
}

.marquee-item-actions {
  display: inline-flex;
  gap: 6px;
}

.modal-detail-link {
  margin-top: 8px;
}

body.look-koton .mega-menu-shell.categories-only {
  display: block;
}

body.look-koton .mega-menu-shell.categories-only .mega-groups-grid {
  grid-template-columns: repeat(3, minmax(180px, 1fr));
}

@media (max-width: 980px) {
  body.look-koton .mega-menu-shell.categories-only .mega-groups-grid {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
  }
}

@media (max-width: 680px) {
  body.look-koton .mega-menu-shell.categories-only .mega-groups-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   2026-04-21 Storefront Refresh (cards + social + product detail)
   ========================================= */
body.look-koton .side-social {
  backdrop-filter: blur(8px);
  background: rgba(252, 250, 247, 0.96);
  border: 1px solid rgba(120, 108, 92, 0.22);
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(17, 17, 17, 0.08);
  left: clamp(8px, 1vw, 18px);
  top: 54%;
  width: 136px;
  z-index: 84;
}

body.look-koton .side-social-item {
  background: transparent;
  border: 1px solid rgba(120, 108, 92, 0.16);
  color: #211d18;
  font-weight: 600;
  min-height: 34px;
}

body.look-koton .side-social-item:hover {
  background: rgba(201, 101, 46, 0.06);
  border-color: rgba(201, 101, 46, 0.36);
  box-shadow: none;
  color: var(--accent, #c9652e);
}

body.look-koton .side-social-icon {
  background: var(--accent, #c9652e);
  border: none;
  box-shadow: none;
  color: #fff;
}

body.look-koton .side-social-item.disabled {
  border-color: rgba(120, 108, 92, 0.1);
  color: #9a8f82;
}

body.look-koton .side-social-item.disabled .side-social-icon {
  background: #c8c0b6;
  border: none;
  box-shadow: none;
  color: #fff;
}

body.look-koton .marquee-track {
  gap: 16px;
  padding: 3px 1px 10px;
}

body.look-koton .marquee-item-card {
  background: #fff;
  border: 1px solid #dfdfdf;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(18, 18, 18, 0.08);
  min-width: 252px;
  overflow: hidden;
  width: 252px;
}

body.look-koton .marquee-item-card:hover {
  box-shadow: 0 16px 34px rgba(18, 18, 18, 0.14);
  transform: translateY(-2px);
}

body.look-koton .marquee-item-view {
  aspect-ratio: 3 / 4;
  background: #f3f3f3;
  display: block;
}

body.look-koton .marquee-item-image {
  border: 0;
  height: 100%;
  width: 100%;
}

body.look-koton .marquee-item-body {
  gap: 7px;
  padding: 12px 12px 13px;
}

body.look-koton .marquee-item-category {
  color: #6a6158;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: none;
}

body.look-koton .marquee-item-body h3 {
  color: #15120f;
  font-family: "Instrument Sans", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

body.look-koton .marquee-item-foot {
  align-items: end;
  border-top: 1px dashed #e8e4de;
  display: grid;
  gap: 8px;
  margin-top: 4px;
  padding-top: 9px;
}

body.look-koton .marquee-item-foot strong {
  color: #111;
  font-size: 1.5rem;
  line-height: 1;
}

body.look-koton .marquee-item-actions {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
}

body.look-koton .marquee-item-actions .button-ghost,
body.look-koton .marquee-item-actions .button-solid {
  border-radius: 8px;
  min-height: 38px;
  width: 100%;
}

body.look-koton .product-grid {
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

body.look-koton .store-card {
  border: 1px solid #dfdfdf;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(18, 18, 18, 0.08);
}

body.look-koton .store-card:hover {
  box-shadow: 0 16px 34px rgba(18, 18, 18, 0.14);
}

body.look-koton .store-art {
  aspect-ratio: 3 / 4;
  padding: 0;
}

body.look-koton .store-badge {
  background: color-mix(in srgb, var(--badge-tone, #171614) 90%, transparent);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  font-size: 0.56rem;
  left: 9px;
  letter-spacing: 0.06em;
  line-height: 1;
  max-width: min(52%, 128px);
  min-height: 22px;
  padding: 0 7px;
  top: 9px;
}

body.look-koton .store-body {
  gap: 7px;
  padding: 12px 12px 14px;
}

body.look-koton .store-body h3 {
  font-size: 1.06rem;
  font-weight: 600;
}

body.look-koton .store-variants {
  font-size: 0.92rem;
}

body.look-koton .price-current {
  font-size: 1.48rem;
}

body.look-koton .store-actions {
  margin-top: 8px;
}

body.look-koton .store-actions .button-ghost,
body.look-koton .store-actions .button-solid {
  border-radius: 8px;
  min-height: 39px;
}

body.look-koton.product-page .product-detail-main {
  max-width: 1420px;
  padding: 18px clamp(16px, 3vw, 42px) 80px;
}

body.look-koton.product-page .product-detail-shell {
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 14px;
  box-shadow: 0 20px 44px rgba(16, 16, 16, 0.08);
  gap: 24px;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  padding: 16px;
}

body.look-koton.product-page .product-detail-gallery-stage {
  display: grid;
  gap: 12px;
  grid-template-columns: 78px minmax(0, 1fr);
}

body.look-koton.product-page .product-detail-gallery-stage.single-image {
  grid-template-columns: 1fr;
}

body.look-koton.product-page .product-detail-thumbs-rail {
  display: grid;
  gap: 8px;
  grid-auto-rows: 102px;
  margin-top: 0;
  overflow: auto;
  padding-right: 2px;
}

body.look-koton.product-page .product-detail-thumb {
  border-radius: 10px;
  height: 102px;
  width: 78px;
}

body.look-koton.product-page .product-detail-main-image-wrap {
  background: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 12px;
  min-height: 620px;
  position: relative;
}

body.look-koton.product-page .product-detail-main-image {
  aspect-ratio: auto;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

body.look-koton.product-page .product-detail-image-nav {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #dbdbdb;
  border-radius: 9px;
  color: #161310;
  cursor: pointer;
  display: inline-flex;
  font-size: 1.5rem;
  height: 42px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
  width: 42px;
  z-index: 3;
}

body.look-koton.product-page .product-detail-image-nav.prev {
  left: 14px;
}

body.look-koton.product-page .product-detail-image-nav.next {
  right: 14px;
}

body.look-koton.product-page .product-detail-image-nav:disabled {
  cursor: default;
  opacity: 0.36;
}

body.look-koton.product-page .product-detail-image-nav:not(:disabled):hover {
  background: #fff;
  transform: translateY(-50%) scale(1.04);
}

body.look-koton.product-page .product-detail-info {
  align-content: start;
  gap: 11px;
  padding: 2px 2px 2px 4px;
}

body.look-koton.product-page .product-detail-name {
  color: #14110f;
  font-family: "Instrument Sans", "Segoe UI", sans-serif;
  font-size: clamp(1.65rem, 2.6vw, 2.26rem);
  font-weight: 700;
  line-height: 1.1;
  text-transform: none;
}

body.look-koton.product-page .product-detail-product-code {
  color: #6b6359;
  font-size: 0.88rem;
  margin: 0;
}

body.look-koton.product-page .product-detail-description {
  color: #3f3a33;
  font-size: 1.01rem;
  line-height: 1.5;
}

body.look-koton.product-page .modal-price-line {
  border-bottom: 1px solid #e9e4dd;
  margin: 2px 0 0;
  padding-bottom: 10px;
}

body.look-koton.product-page .price-current {
  font-size: clamp(1.9rem, 2.7vw, 2.4rem);
}

body.look-koton.product-page .product-detail-option-group {
  display: grid;
  gap: 8px;
}

body.look-koton.product-page .product-detail-option-label {
  color: #4f473f;
  font-size: 0.94rem;
  font-weight: 600;
  margin: 0;
}

body.look-koton.product-page .product-detail-color-chips .chip {
  cursor: pointer;
  min-height: 34px;
  pointer-events: auto;
}

body.look-koton.product-page .detail-form-actions {
  gap: 10px;
}

body.look-koton.product-page .detail-qty-wrap {
  display: grid;
  gap: 6px;
}

body.look-koton.product-page .detail-qty-wrap span {
  color: #4f473f;
  font-size: 0.88rem;
  font-weight: 600;
}

body.look-koton.product-page .detail-qty-wrap input {
  max-width: 116px;
}

body.look-koton.product-page .product-detail-shipping-note {
  align-items: center;
  background: #f7f7f7;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  color: #1e1b18;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
  min-height: 40px;
  padding: 0 12px;
  width: fit-content;
}

body.look-koton.product-page .product-detail-share {
  align-items: center;
  display: flex;
  gap: 10px;
}

body.look-koton.product-page .product-detail-share span {
  color: #4f473f;
  font-size: 0.88rem;
  font-weight: 600;
}

body.look-koton.product-page .product-detail-share a {
  align-items: center;
  border: 1px solid #d6d6d6;
  border-radius: 999px;
  color: #1b1714;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  text-decoration: none;
  transition: border-color 0.18s ease, transform 0.18s ease;
  width: 34px;
}

body.look-koton.product-page .product-detail-share a svg {
  height: 17px;
  width: 17px;
}

body.look-koton.product-page .product-detail-share a:hover {
  border-color: #b8a896;
  transform: translateY(-1px);
}

body.look-koton.product-page .product-detail-specs {
  background: #f9f9f9;
  border-color: #e7e7e7;
}

@media (max-width: 1200px) {
  body.look-koton.product-page .product-detail-shell {
    grid-template-columns: 1fr;
  }

  body.look-koton.product-page .product-detail-gallery-stage {
    grid-template-columns: 1fr;
  }

  body.look-koton.product-page .product-detail-thumbs-rail {
    grid-auto-flow: column;
    grid-auto-rows: auto;
    grid-auto-columns: 78px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 2px;
  }

  body.look-koton.product-page .product-detail-main-image-wrap,
  body.look-koton.product-page .product-detail-main-image {
    min-height: 520px;
  }
}

@media (max-width: 860px) {
  body.look-koton .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.look-koton .marquee-item-card {
    min-width: 220px;
    width: 220px;
  }

  body.look-koton.product-page .product-detail-main-image-wrap,
  body.look-koton.product-page .product-detail-main-image {
    min-height: 380px;
  }
}

@media (max-width: 640px) {
  body.look-koton .product-grid {
    grid-template-columns: 1fr;
  }
}

.quick-size-picker {
  display: grid;
  gap: 10px;
  padding: 8px 4px 2px;
}

.quick-size-picker h3 {
  margin: 0;
}

.quick-size-picker p {
  color: #5c5348;
  margin: 0;
}

.quick-size-picker-chips .chip.disabled {
  cursor: default;
  opacity: 0.5;
}

.quick-size-form {
  display: grid;
  gap: 10px;
}

.quick-size-form label {
  display: grid;
  gap: 6px;
}

.quick-size-actions {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-page {
  min-height: 100vh;
}

.product-detail-main {
  margin: 0 auto;
  max-width: 1280px;
  padding: 24px 4.5vw 64px;
}

.product-detail-status {
  font-weight: 700;
  margin-bottom: 10px;
}

.product-detail-status.error {
  color: #b32727;
}

.product-detail-shell {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(136, 126, 109, 0.32);
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(20, 18, 15, 0.1);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  padding: 16px;
}

.product-detail-gallery {
  min-width: 0;
}

.product-detail-main-image-wrap {
  background: rgba(243, 236, 227, 0.9);
  border: 1px solid rgba(136, 126, 109, 0.28);
  border-radius: 12px;
  overflow: hidden;
}

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

.product-detail-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.product-detail-thumb {
  background: #fff;
  border: 1px solid rgba(136, 126, 109, 0.44);
  border-radius: 8px;
  cursor: pointer;
  height: 70px;
  overflow: hidden;
  padding: 0;
  width: 56px;
}

.product-detail-thumb.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(201, 101, 46, 0.22);
}

.product-detail-thumb img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.product-detail-info {
  align-content: start;
  display: grid;
  gap: 10px;
}

.product-detail-category {
  color: #675f54;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin: 0;
  text-transform: uppercase;
}

.product-detail-name {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.4rem, 3.2vw, 2.3rem);
  margin: 0;
  text-transform: uppercase;
}

.product-detail-description {
  color: #5c554b;
  margin: 0;
}

.product-detail-stock-warning {
  color: #b32727;
  font-weight: 700;
  margin: 0;
}

.product-detail-specs {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(136, 126, 109, 0.3);
  border-radius: 10px;
  padding: 10px;
}

.product-detail-specs p {
  color: #4d463d;
  margin: 0 0 6px;
}

.product-detail-specs p:last-child {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .product-detail-shell {
    grid-template-columns: 1fr;
  }
}
/* V2 checkout/favorite/header overrides */
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-search {
  display: inline-flex;
  align-items: center;
}

.header-search input {
  width: 220px;
  max-width: 30vw;
  min-height: 36px;
  border-radius: 999px;
  padding: 0 14px;
}

.cart-coupon-row {
  margin-top: 10px;
}

.cart-coupon-row .button-ghost {
  min-height: 40px;
}

.favorite-btn {
  position: absolute;
  z-index: 3;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(20, 19, 17, 0.62);
  color: #fff;
  font-size: 0.95rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease, background 0.2s ease, border-color 0.2s ease;
}

.favorite-btn:hover {
  transform: translateY(-1px);
  background: rgba(20, 19, 17, 0.82);
}

.favorite-btn.active {
  background: rgba(201, 101, 46, 0.9);
  border-color: rgba(255, 214, 180, 0.8);
}

.store-card,
.marquee-item-card {
  position: relative;
}

article.store-card[data-detail-url],
article.marquee-item-card[data-detail-url] {
  cursor: pointer;
}

article.store-card[data-detail-url]:focus-visible,
article.marquee-item-card[data-detail-url]:focus-visible {
  outline: 2px solid rgba(201, 101, 46, 0.7);
  outline-offset: 2px;
}

.store-favorite-btn {
  top: 12px;
  right: 12px;
}

.marquee-favorite-btn {
  top: 12px;
  right: 12px;
}

@media (max-width: 980px) {
  .header-search input {
    width: 160px;
    max-width: 42vw;
  }
}

.main-footer {
  padding: 40px clamp(20px, 4vw, 72px) 24px;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

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

.footer-column h4 {
  margin: 0 0 14px;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link,
.footer-text-row {
  color: rgba(18, 18, 18, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.35;
}

.footer-link:hover {
  color: var(--accent-dark, #171614);
}

.footer-contact-column p {
  margin: 0 0 14px;
  color: rgba(12, 12, 12, 0.9);
  line-height: 1.4;
}

.footer-bottom-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.footer-bottom-link {
  color: rgba(14, 14, 14, 0.9);
  text-underline-offset: 2px;
  justify-self: end;
}

.main-footer .footer-credit {
  justify-self: center;
  margin: 0;
}

@media (max-width: 1080px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }
}

body.look-koton .store-discount-pill,
body.look-koton .marquee-discount-pill {
  align-items: center;
  background: linear-gradient(135deg, rgba(23, 23, 23, 0.95), rgba(46, 46, 46, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 0.7rem;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.01em;
  line-height: 1;
  min-height: 22px;
  min-width: 0;
  padding: 0 7px;
  white-space: nowrap;
}

/* Marquee (En cok satanlar / Editorun secimi) icin ekstra kucuk indirim rozeti */
body.look-koton .marquee-item-foot .marquee-discount-pill {
  background: linear-gradient(135deg, rgba(56, 56, 56, 0.96), rgba(38, 38, 38, 0.92));
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
  display: inline-flex;
  font-size: 0.62rem;
  font-weight: 800;
  justify-self: start;
  letter-spacing: 0;
  min-height: 18px;
  width: fit-content;
  padding: 0 6px;
}

/* =========================================
   LOOK-KOTON CATEGORY MENU (MINIMAL PREMIUM)
   ========================================= */
body.look-koton .top-category-tabs {
  display: inline-flex;
  position: relative;
}

body.look-koton .top-category-btn.dropdown-trigger {
  align-items: center;
  backdrop-filter: blur(6px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 246, 246, 0.96));
  border: 1px solid rgba(22, 22, 22, 0.16);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(14, 14, 14, 0.09);
  color: #171614;
  display: inline-flex;
  font-size: 0.66rem;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 0.1em;
  min-height: 40px;
  min-width: 208px;
  padding: 0 14px 0 16px;
  text-transform: uppercase;
}

body.look-koton .top-category-btn.dropdown-trigger:hover {
  border-color: rgba(22, 22, 22, 0.28);
  box-shadow: 0 10px 20px rgba(14, 14, 14, 0.12);
  transform: translateY(-1px);
}

body.look-koton .top-category-btn.dropdown-trigger.active {
  background: linear-gradient(165deg, #161616 0%, #292929 100%);
  border-color: #101010;
  box-shadow: 0 14px 28px rgba(11, 11, 11, 0.28);
  color: #f8f8f8;
}

body.look-koton .dropdown-trigger-label {
  max-width: 170px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.look-koton .dropdown-trigger-caret {
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  display: inline-block;
  flex: 0 0 auto;
  height: 8px;
  margin-top: -2px;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  width: 8px;
}

body.look-koton .top-category-btn.dropdown-trigger.active .dropdown-trigger-caret {
  margin-top: 2px;
  transform: rotate(-135deg);
}

body.look-koton .category-dropdown-panel.mega-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(251, 251, 251, 0.98)),
    linear-gradient(120deg, rgba(0, 0, 0, 0.02), transparent 60%);
  border: 1px solid rgba(22, 22, 22, 0.12);
  border-radius: 18px;
  box-shadow:
    0 26px 50px rgba(12, 12, 12, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.55) inset;
  left: 50%;
  min-width: 0;
  padding: 16px 18px 18px;
  top: calc(100% + 12px);
  transform: translateX(-50%);
  width: clamp(760px, 82vw, 1160px);
}

body.look-koton .category-dropdown-head {
  align-items: center;
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  padding: 0 1px 10px;
}

body.look-koton .category-dropdown-title {
  color: #141414;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin: 0;
  text-transform: uppercase;
}

body.look-koton .category-dropdown-count {
  align-items: center;
  background: rgba(23, 23, 23, 0.06);
  border: 1px solid rgba(23, 23, 23, 0.11);
  border-radius: 999px;
  color: #3a3937;
  display: inline-flex;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  min-height: 22px;
  padding: 0 8px;
  text-transform: uppercase;
}

body.look-koton .top-category-option.all-option {
  background: #141414;
  border: 1px solid #141414;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(14, 14, 14, 0.18);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  min-height: 34px;
  padding: 0 14px;
  width: fit-content;
}

body.look-koton .top-category-option.all-option.active {
  background: #0f0f0f;
  border-color: #0f0f0f;
  box-shadow: 0 10px 22px rgba(12, 12, 12, 0.24);
}

body.look-koton .mega-menu-shell.categories-only {
  display: block;
}

body.look-koton .mega-groups-grid {
  align-items: stretch;
  display: grid;
  gap: 10px 34px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

body.look-koton .mega-group {
  background: transparent;
  border: 0;
  border-radius: 0;
  gap: 6px;
  min-height: 100%;
  padding: 0;
}

body.look-koton .mega-group-title {
  color: #121212;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  min-height: 30px;
  text-transform: none;
}

body.look-koton .mega-group-title:hover,
body.look-koton .mega-group-title.active {
  color: #000;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(22, 22, 22, 0.26);
  text-underline-offset: 5px;
}

body.look-koton .mega-group-links {
  display: grid;
  gap: 2px;
}

body.look-koton .mega-link {
  border-radius: 0;
  color: #262624;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  min-height: 28px;
  padding: 2px 0;
  text-transform: none;
  transition: color 0.16s ease;
}

body.look-koton .mega-link:hover {
  background: transparent;
  color: #000;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

body.look-koton .mega-link.active {
  background: transparent;
  color: #101010;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

body.look-koton .mega-link[data-depth="2"] {
  padding-left: 14px;
}

body.look-koton .mega-link[data-depth="3"] {
  padding-left: 24px;
}

body.look-koton .mega-empty {
  color: #4d4d4d;
  font-size: 0.9rem;
  margin: 0;
  padding: 12px 2px;
}

@media (max-width: 1024px) {
  body.look-koton .category-dropdown-panel.mega-panel {
    width: min(92vw, 860px);
  }
  body.look-koton .mega-groups-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body.look-koton .top-category-btn.dropdown-trigger {
    min-width: 184px;
  }
  body.look-koton .category-dropdown-panel.mega-panel {
    left: 0;
    right: auto;
    transform: none;
    width: min(95vw, 560px);
  }
  body.look-koton .mega-groups-grid {
    grid-template-columns: 1fr;
  }
}

/* 2026-04-23: Auth + Quick Add + Cart Summary visual polish */
body.look-koton .premium-auth-card {
  background: #fcfbf9;
  border: 1px solid rgba(28, 27, 25, 0.16);
  border-radius: 14px;
  box-shadow: 0 24px 46px rgba(17, 16, 15, 0.22);
}

body.look-koton .premium-auth-card .auth-panel {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(249, 247, 243, 0.96)),
    radial-gradient(circle at 90% 10%, rgba(23, 22, 20, 0.06), transparent 38%);
}

body.look-koton .premium-auth-card .auth-tabs .button-solid,
body.look-koton .premium-auth-card .auth-form .button-solid {
  background: linear-gradient(145deg, #1a1918, #2b2926);
  border-color: #181715;
  box-shadow: 0 10px 20px rgba(16, 15, 14, 0.2);
  color: #f8f6f2;
}

body.look-koton .premium-auth-card .auth-tabs .button-solid:hover,
body.look-koton .premium-auth-card .auth-form .button-solid:hover {
  background: linear-gradient(145deg, #2a2826, #3a3834);
  border-color: #22201d;
}

body.look-koton .premium-auth-card .auth-tabs .button-ghost {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 246, 242, 0.96));
  border-color: rgba(31, 30, 28, 0.18);
  color: #24211e;
}

body.look-koton .premium-auth-card .auth-tabs .button-ghost:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(243, 240, 235, 1));
  border-color: rgba(31, 30, 28, 0.3);
}

body.look-koton .premium-auth-card .auth-form label span {
  color: #645d54;
}

body.look-koton .quick-size-picker {
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.99), rgba(247, 244, 239, 0.96)),
    radial-gradient(circle at 92% 8%, rgba(24, 22, 20, 0.06), transparent 36%);
  border: 1px solid rgba(26, 24, 22, 0.14);
  border-radius: 14px;
  box-shadow: 0 14px 26px rgba(15, 14, 13, 0.12);
  gap: 12px;
  padding: 14px;
}

body.look-koton .quick-size-picker h3 {
  color: #161412;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}

body.look-koton .quick-size-picker p {
  color: #5f574d;
  font-size: 0.93rem;
}

body.look-koton .quick-size-picker .chip {
  background: #fff;
  border: 1px solid rgba(28, 26, 24, 0.22);
  border-radius: 10px;
  box-shadow: none;
  color: #201d1a;
  min-height: 36px;
  padding: 0 13px;
}

body.look-koton .quick-size-picker .chip.active {
  background: linear-gradient(145deg, #1a1918, #2a2926);
  border-color: #181715;
  color: #f8f6f2;
}

body.look-koton .quick-size-picker .chip.disabled {
  background: #f1eeea;
  border-color: rgba(28, 26, 24, 0.14);
  color: #8a8379;
  opacity: 1;
}

body.look-koton .quick-size-form label span {
  color: #4f473f;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.look-koton .quick-size-form input {
  background: #fff;
  border: 1px solid rgba(26, 24, 22, 0.22);
  border-radius: 10px;
  box-shadow: none;
  color: #1b1815;
  min-height: 42px;
}

body.look-koton .quick-size-form input:focus {
  border-color: rgba(26, 24, 22, 0.5);
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.11);
}

body.look-koton .quick-size-actions {
  gap: 10px;
  margin-top: 2px;
}

body.look-koton .quick-size-actions .button-ghost,
body.look-koton .quick-size-actions .button-solid {
  min-height: 42px;
}

body.look-koton .cart-drawer {
  background: #fff;
  border-left: 1px solid rgba(136, 126, 109, 0.18);
  color: #1a1714;
}

body.look-koton .drawer-header {
  border-bottom: 1px solid rgba(136, 126, 109, 0.13);
}

body.look-koton .drawer-header h2 {
  color: #1a1714;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
}

body.look-koton .drawer-header button {
  background: transparent;
  border: 1px solid rgba(136, 126, 109, 0.28);
  border-radius: 6px;
  box-shadow: none;
  color: #1a1714;
  font-size: 0.65rem;
  letter-spacing: 0.07em;
}

body.look-koton .drawer-header button:hover {
  background: #f2ede6;
  border-color: rgba(136, 126, 109, 0.48);
  box-shadow: none;
  transform: none;
}

body.look-koton .cart-item {
  background: #f9f7f3;
  border: 1px solid rgba(136, 126, 109, 0.13);
  border-radius: 8px;
}

body.look-koton .cart-item strong {
  color: #1a1714;
}

body.look-koton .cart-item small {
  color: rgba(36, 32, 29, 0.55);
}

body.look-koton .icon-btn {
  background: transparent;
  border: 1px solid rgba(136, 126, 109, 0.28);
  border-radius: 6px;
  box-shadow: none;
  color: #1a1714;
}

body.look-koton .icon-btn:hover {
  background: #f2ede6;
  border-color: rgba(136, 126, 109, 0.48);
  box-shadow: none;
  transform: none;
}

body.look-koton .remove-btn {
  background: transparent;
  border: 1px solid rgba(136, 126, 109, 0.28);
  border-radius: 6px;
  box-shadow: none;
  color: rgba(36, 32, 29, 0.6);
  font-size: 0.63rem;
  letter-spacing: 0.07em;
}

body.look-koton .remove-btn:hover {
  background: #fdf1ef;
  border-color: rgba(182, 61, 51, 0.3);
  box-shadow: none;
  color: #b03a30;
  transform: none;
}

body.look-koton .cart-drawer .drawer-summary {
  border-top: 1px solid rgba(136, 126, 109, 0.13);
}

body.look-koton .cart-drawer .drawer-summary span {
  color: rgba(36, 32, 29, 0.6);
  font-weight: 400;
}

body.look-koton .cart-drawer .drawer-summary strong {
  color: #1a1714;
  font-weight: 600;
}

body.look-koton .cart-drawer .drawer-summary .grand-total span,
body.look-koton .cart-drawer .drawer-summary .grand-total strong {
  color: #1a1714;
  font-size: 1rem;
  font-weight: 700;
}

/* 2026-04-23 Ürün Detay + Yorum + Alt Vitrin */
body.look-koton.product-page .product-detail-gallery-stage {
  align-items: start;
  grid-template-columns: 78px minmax(0, 600px);
  justify-content: center;
}

body.look-koton.product-page .product-detail-main-image-wrap {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-height: 700px;
  max-width: 600px;
  min-height: 700px;
  min-width: 0;
  width: min(100%, 600px);
}

body.look-koton.product-page .product-detail-main-image {
  cursor: zoom-in;
  max-height: 700px;
  max-width: 600px;
  min-height: 0;
  object-fit: contain;
  width: 100%;
}

body.look-koton.product-page .product-detail-headline {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

body.look-koton.product-page .detail-favorite-btn {
  flex: 0 0 auto;
  position: static;
}

body.look-koton.product-page .product-detail-stock-warning {
  align-items: center;
  color: #d23f31;
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 700;
  gap: 7px;
}

body.look-koton.product-page .stock-warning-icon {
  display: inline-flex;
  font-size: 0.92rem;
  line-height: 1;
}

body.look-koton.product-page .modal-discount-badge {
  align-items: center;
  background: linear-gradient(140deg, rgba(23, 22, 20, 0.95), rgba(42, 39, 35, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #f7f4ef;
  display: inline-flex;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  margin: 2px 0 8px;
  min-height: 24px;
  padding: 0 10px;
  text-transform: uppercase;
}

body.look-koton.product-page .detail-form-actions {
  align-items: end;
  display: grid;
  gap: 12px;
  grid-template-columns: 96px minmax(0, 1fr);
}

body.look-koton.product-page .detail-qty-wrap input {
  background: #fff;
  border: 1px solid rgba(21, 19, 17, 0.26);
  border-radius: 12px;
  box-shadow: none;
  color: #181614;
  max-width: 100%;
  min-height: 44px;
  padding: 0 12px;
}

body.look-koton.product-page .detail-qty-wrap input:focus {
  border-color: rgba(21, 19, 17, 0.56);
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.12);
}

body.look-koton.product-page #detail-size-chips .chip.sold-out {
  background: linear-gradient(180deg, rgba(248, 248, 248, 0.98), rgba(236, 232, 226, 0.96));
  border-color: rgba(64, 58, 50, 0.3);
  color: rgba(38, 32, 27, 0.55);
  cursor: not-allowed;
  overflow: hidden;
  position: relative;
}

body.look-koton.product-page #detail-size-chips .chip.sold-out::after {
  animation: none;
  background: transparent;
  border-top: 1.5px solid rgba(22, 19, 17, 0.6);
  bottom: auto;
  content: "";
  left: -4px;
  opacity: 1;
  pointer-events: none;
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateX(0) rotate(-18deg);
  z-index: 2;
}

body.look-koton.product-page #detail-size-chips .chip.sold-out span {
  position: relative;
  z-index: 3;
}

body.look-koton.product-page .detail-form-actions .button-solid {
  min-height: 44px;
}

body.look-koton.product-page .product-detail-shipping-note {
  align-items: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 247, 247, 0.96));
  border: 1px solid rgba(24, 22, 20, 0.14);
  border-radius: 12px;
  color: #171513;
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 600;
  gap: 9px;
  line-height: 1.35;
  min-height: 42px;
  padding: 8px 12px;
}

body.look-koton.product-page .shipping-note-icon {
  display: inline-flex;
  line-height: 1;
}

body.look-koton.product-page .shipping-note-icon svg {
  display: block;
  height: 18px;
  width: 18px;
}

.product-comments-section {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(130, 120, 102, 0.24);
  border-radius: 16px;
  margin-top: 22px;
  padding: 16px;
}

.product-comments-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.product-comments-head h2 {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  margin: 0;
}

.product-comments-tools {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.product-comments-sort {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.product-comments-sort span {
  color: rgba(24, 22, 20, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-comments-sort select {
  appearance: none;
  background: #fff;
  border: 1px solid rgba(24, 22, 20, 0.14);
  border-radius: 999px;
  color: #171614;
  font-size: 0.82rem;
  min-height: 34px;
  padding: 0 28px 0 12px;
}

.product-comment-form {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 248, 248, 0.92));
  border: 1px solid rgba(24, 22, 20, 0.1);
  border-radius: 14px;
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
  padding: 14px;
}

.product-comment-form label {
  display: grid;
  gap: 6px;
}

.product-comment-form label > span,
.product-comment-form .comment-rating-row > span {
  color: #24211f;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-comment-form input,
.product-comment-form textarea {
  background: #fff;
  border: 1px solid rgba(24, 22, 20, 0.14);
  border-radius: 10px;
  box-shadow: none;
  color: #171614;
  font: inherit;
  min-height: 40px;
  padding: 10px 11px;
}

.product-comment-form textarea {
  min-height: 98px;
  resize: vertical;
}

.product-comment-form input:focus,
.product-comment-form textarea:focus,
.product-comments-sort select:focus {
  border-color: rgba(24, 22, 20, 0.46);
  box-shadow: 0 0 0 3px rgba(24, 22, 20, 0.08);
  outline: 0;
}

.comment-rating-row {
  align-items: center;
  display: flex;
  gap: 12px;
}

.comment-stars {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 6px;
}

.comment-stars label {
  cursor: pointer;
}

.comment-stars input {
  display: none;
}

.comment-stars span {
  color: #c1b8ab;
  font-size: 1.4rem;
  line-height: 1;
  transition: color 0.15s ease;
}

.comment-stars label:hover span,
.comment-stars label:hover ~ label span,
.comment-stars label:has(input:checked) span,
.comment-stars label:has(input:checked) ~ label span {
  color: var(--accent, #c9652e);
}

.product-comment-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

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

.product-comments-empty {
  color: rgba(36, 32, 29, 0.72);
  grid-column: 1 / -1;
  margin: 0;
}

.product-comment-card {
  background: #fff;
  border: 1px solid rgba(24, 22, 20, 0.1);
  border-radius: 10px;
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 14px;
}

.product-comment-head {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: space-between;
}

.product-comment-stars {
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.product-comment-stars .filled-stars {
  color: var(--accent, #c9652e);
}

.product-comment-stars .empty-stars {
  color: #c1b8ab;
}

.product-comment-card p {
  color: #2c2722;
  margin: 0;
  overflow-wrap: anywhere;
}

.product-comment-card small {
  color: #6a6359;
}

.product-comments-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.detail-best-sellers {
  margin-top: 20px;
}

.detail-best-sellers .marquee-track {
  transition: transform 0.3s ease;
}

.detail-best-sellers .marquee-item-card {
  min-width: 248px;
  width: 248px;
}

@media (max-width: 980px) {
  body.look-koton.product-page .product-detail-gallery-stage {
    grid-template-columns: 1fr;
  }

  body.look-koton.product-page .product-detail-main-image-wrap {
    min-height: 460px;
    min-width: 0;
    width: min(100%, 600px);
  }

  body.look-koton.product-page .detail-form-actions {
    grid-template-columns: 1fr;
  }

  body.look-koton.product-page .detail-qty-wrap input {
    max-width: 110px;
  }

  .product-comments-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-comments-tools {
    justify-content: flex-start;
    width: 100%;
  }

  .product-comments-list {
    grid-template-columns: 1fr;
  }
}

body.look-koton.product-page .comment-stars span {
  color: #d6d6d6;
  font-size: 1.35rem;
  line-height: 1;
  transition: color 0.12s ease, transform 0.12s ease;
}

body.look-koton.product-page .comment-stars label.is-active span,
body.look-koton.product-page .comment-stars label:hover span,
body.look-koton.product-page .comment-stars label:hover ~ label span,
body.look-koton.product-page .comment-stars label:has(input:checked) span,
body.look-koton.product-page .comment-stars label:has(input:checked) ~ label span {
  color: #171717;
  transform: translateY(-1px);
}

body.look-koton.product-page .product-comment-stars .filled-stars {
  color: #171717;
}

body.look-koton.product-page .product-comment-stars .empty-stars {
  color: #d6d6d6;
}

/* === Low-stock notice under price === */
.product-detail-low-stock {
  align-items: center;
  color: #b03a30;
  display: flex;
  font-size: 0.7rem;
  font-weight: 600;
  gap: 8px;
  letter-spacing: 0.14em;
  margin: 6px 0 14px;
  text-transform: uppercase;
}
.product-detail-low-stock::before {
  background: #b03a30;
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 5px;
  width: 5px;
}
.product-detail-low-stock.hidden {
  display: none;
}

/* === Auth modal forgot password === */
.auth-extras {
  display: flex;
  justify-content: flex-end;
  margin: -2px 0 4px;
}
.auth-link-button {
  background: none;
  border: none;
  color: rgba(36, 32, 29, 0.6);
  cursor: pointer;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 4px 0;
  text-decoration: underline;
  text-decoration-color: rgba(36, 32, 29, 0.25);
  text-underline-offset: 3px;
  transition: color 0.18s ease, text-decoration-color 0.18s ease;
}
.auth-link-button:hover {
  color: #1a1714;
  text-decoration-color: #1a1714;
}
.auth-forgot-title {
  color: #1a1714;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin: 0 0 6px;
  text-transform: uppercase;
}
.auth-forgot-copy {
  color: rgba(36, 32, 29, 0.6);
  font-size: 0.82rem;
  line-height: 1.6;
  margin: 0 0 12px;
}
.auth-forgot-actions {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}
