:root {
  --black: #000;
  --white: #fff;
  --text: #111;
  --muted: #6b6b6b;
  --border: #e6e6e6;
  --bg: #fff;
  --bg-soft: #f6f6f6;
  --olive: #E31C23;
  --olive-dark: #9B111E;
  --danger: #C8102E;
  --header-h: 64px;
  --topbar-h: 32px;
  --max: 1120px;
  --font: "Albert Sans", "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  padding-bottom: 88px;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
  font-family: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(var(--max), calc(100% - 120px));
  margin: 0 auto;
}

/* Top utility */
.topbar {
  background: #1c1c1e;
  color: #bdbdbd;
  font-size: 12px;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.app-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.app-download svg {
  width: 16px;
  height: 16px;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #a3a3a3;
  font-size: 12px;
  font-weight: 400;
}

.topbar a:hover {
  color: var(--white);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #111;
  color: var(--white);
}

.header-main {
  background: var(--black);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 64px;
  height: var(--header-h);
}

.logo img {
  height: 38px;
  width: auto;
}

.nav-primary {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  font-size: 13.5px;
  font-weight: 500;
  background: none;
  border: 0;
  color: var(--white);
  white-space: nowrap;
}

.nav-link:hover,
.nav-item:hover > .nav-link,
.nav-item.open > .nav-link {
  opacity: 0.72;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--white);
  display: grid;
  place-items: center;
  position: relative;
}

.icon-btn svg {
  width: 21px;
  height: 21px;
}

.cart-count {
  position: absolute;
  top: 4px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  border-radius: 99px;
  background: var(--white);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  display: none;
  place-items: center;
  padding: 0 4px;
}

.cart-count.show {
  display: grid;
}

.menu-toggle,
.mobile-search {
  display: none;
}

/* Mega menu */
.mega {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  color: var(--text);
  min-width: 760px;
  padding: 28px 32px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  z-index: 60;
}

.nav-item:hover .mega,
.nav-item.open .mega {
  display: none;
}

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

.mega h4 {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mega a {
  display: block;
  padding: 4px 0;
  font-size: 13px;
  color: #444;
}

.mega a:hover,
.mega a.featured {
  color: var(--black);
  font-weight: 600;
}

.mega-wide {
  min-width: 880px;
}

/* Search overlay */
.search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 80;
}

.search-overlay.open {
  display: block;
}

.search-panel {
  background: var(--white);
  padding: 18px 0 24px;
}

.search-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.search-row input {
  flex: 1;
  border: 0;
  border-bottom: 1px solid var(--black);
  padding: 12px 4px;
  font-size: 16px;
  outline: none;
}

.search-close {
  border: 0;
  background: none;
  font-size: 22px;
}

/* Breadcrumb */
.breadcrumb-wrap {
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 18px 0 16px;
  font-size: 13px;
  color: #9a9a9a;
  list-style: none;
  margin: 0;
  font-weight: 400;
}

.breadcrumb a {
  color: #9a9a9a;
}

.breadcrumb a:hover {
  color: #555;
  text-decoration: none;
}

.breadcrumb .sep {
  color: #c8c8c8;
}

.breadcrumb li:last-child,
.breadcrumb a[aria-current="page"] {
  color: #222;
  font-weight: 700;
}

/* Product */
.product {
  padding: 8px 0 64px;
}

.product-grid {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.gallery {
  display: contents;
}

.thumbs-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: sticky;
  top: 112px;
}

.thumb-nav {
  width: 28px;
  height: 22px;
  border: 0;
  background: none;
  color: #777;
  display: grid;
  place-items: center;
  padding: 0;
}

.thumb-nav:hover {
  color: var(--black);
}

.thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 420px;
  overflow-y: auto;
  width: 64px;
  scrollbar-width: none;
}

.thumbs::-webkit-scrollbar {
  display: none;
}

.thumbs button {
  border: 1px solid #ddd;
  padding: 0;
  background: var(--white);
  flex: 0 0 auto;
}

.thumbs button.active,
.thumbs button:hover {
  border-color: var(--black);
}

.thumbs img {
  width: 62px;
  height: 62px;
  object-fit: cover;
}

.main-image {
  background: var(--white);
  position: sticky;
  top: 112px;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.main-image img {
  width: 100%;
  height: 560px;
  object-fit: contain;
  cursor: zoom-in;
}

.color-tag {
  position: absolute;
  right: 18px;
  top: 54%;
  background: var(--white);
  border: 1px solid #ececec;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 10px;
  pointer-events: none;
}

.img-nav {
  position: absolute;
  bottom: 18px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
  color: #222;
  font-size: 22px;
  line-height: 1;
  display: grid;
  place-items: center;
  z-index: 2;
}

.img-nav.prev {
  left: 18px;
}

.img-nav.next {
  right: 18px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  background: #f1f1f1;
  color: #555;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
}

.product-title {
  margin: 0 0 10px;
  font-size: 32px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.price {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 14px;
}

.stock {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 22px;
}

.stock-label {
  color: #666;
}

.stock svg {
  width: 16px;
  height: 16px;
  color: #2f9e44;
}

.option-label {
  font-size: 13px;
  margin: 0 0 8px;
}

.option-label span {
  font-weight: 700;
}

.swatches {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.swatch {
  width: 52px;
  height: 52px;
  border-radius: 4px;
  border: 1px solid #d0d0d0;
  padding: 2px;
  background: var(--white);
}

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

.swatch img,
.swatch i {
  width: 100%;
  height: 100%;
  border-radius: 2px;
  display: block;
  object-fit: cover;
}

.swatch i {
  background: var(--olive);
}

.sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.size-btn {
  min-width: 56px;
  height: 40px;
  border: 1px solid #d0d0d0;
  background: var(--white);
  color: var(--black);
  font-weight: 600;
  border-radius: 4px;
}

.size-btn.active {
  border-color: #E31C23;
}

.add-cart {
  position: relative;
  isolation: isolate;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 52px;
  border: 1px solid #6B0F14;
  border-radius: 10px;
  background: linear-gradient(180deg, #b71c1c 0%, #7a0c14 48%, #4a0808 100%);
  color: #FFE566;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-shadow: 0 0 8px rgba(255, 229, 102, 0.55);
  cursor: pointer;
  box-sizing: border-box;
  box-shadow:
    0 6px 0 #3a0508,
    0 10px 18px rgba(80, 0, 0, 0.42),
    0 0 16px rgba(122, 12, 20, 0.55),
    inset 0 3px 0 rgba(183, 28, 28, 0.45),
    inset 0 -5px 10px rgba(0, 0, 0, 0.38);
  animation: btn-lightning-glow 2.6s ease-in-out infinite;
}

.add-cart::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.75) 50%, transparent 62%),
    radial-gradient(circle at 50% 40%, rgba(255, 210, 210, 0.55) 0%, transparent 55%);
  mix-blend-mode: screen;
  animation: lightning-flash 3.4s infinite;
}

.add-cart > * {
  position: relative;
  z-index: 1;
}

.add-cart span {
  color: #FFE566;
}

.add-cart .bolt {
  width: 18px;
  height: 18px;
  fill: #ffe566;
  filter:
    drop-shadow(0 0 3px #fff)
    drop-shadow(0 0 6px #ff2a2a)
    drop-shadow(0 0 10px #ff0000);
  animation: bolt-flicker 2.8s infinite;
  flex-shrink: 0;
}

.add-cart + .add-cart {
  margin-top: 14px;
}

.add-cart:hover {
  filter: brightness(1.08);
  color: #FFE566;
}

.add-cart:active {
  transform: translateY(5px);
  box-shadow:
    0 1px 0 #3a0508,
    0 0 12px rgba(122, 12, 20, 0.7),
    inset 0 4px 10px rgba(0, 0, 0, 0.5);
  animation: none;
}

@keyframes lightning-flash {
  0%, 7%, 10.5%, 13%, 62%, 66%, 100% { opacity: 0; }
  8%, 11% { opacity: 1; }
  12% { opacity: 0.4; }
  63%, 65% { opacity: 0.8; }
}

@keyframes btn-lightning-glow {
  0%, 100% {
    box-shadow:
      0 6px 0 #3a0508,
      0 10px 18px rgba(80, 0, 0, 0.42),
      0 0 14px rgba(122, 12, 20, 0.45),
      inset 0 3px 0 rgba(183, 28, 28, 0.45),
      inset 0 -5px 10px rgba(0, 0, 0, 0.38);
  }
  50% {
    box-shadow:
      0 6px 0 #3a0508,
      0 10px 18px rgba(80, 0, 0, 0.42),
      0 0 28px rgba(122, 12, 20, 0.9),
      0 0 48px rgba(90, 8, 12, 0.55),
      inset 0 3px 0 rgba(183, 28, 28, 0.55),
      inset 0 -5px 10px rgba(0, 0, 0, 0.38);
  }
}

@keyframes bolt-flicker {
  0%, 18%, 22%, 26%, 100% { opacity: 1; }
  20% { opacity: 0.15; }
  24% { opacity: 1; }
  25% { opacity: 0.35; }
}

.ship-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 16px;
  padding: 14px 16px;
  background: #f7f7f7;
  border-radius: 6px;
  font-size: 13px;
}

.ship-box svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  margin-top: 1px;
}

.ship-box strong {
  display: block;
  font-size: 13px;
  margin-bottom: 2px;
}

.ship-box p {
  margin: 0;
  color: #666;
}

.zoom-hint {
  display: none;
}

.gender {
  display: none;
}

.spec-table {
  width: 100%;
  margin-top: 24px;
  border-collapse: collapse;
  font-size: 13px;
}

.spec-table th,
.spec-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.spec-table tr:first-child th,
.spec-table tr:first-child td {
  border-top: 1px solid var(--border);
}

.spec-table th {
  width: 38%;
  color: #666;
  font-weight: 500;
}

.spec-table td {
  color: var(--text);
  font-weight: 600;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 90;
  place-items: center;
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-width: min(900px, 92vw);
  max-height: 88vh;
  object-fit: contain;
}

.lightbox button {
  position: absolute;
  border: 0;
  background: none;
  color: var(--white);
  font-size: 32px;
}

.lightbox .lb-close {
  top: 16px;
  right: 24px;
}

.lightbox .lb-prev,
.lightbox .lb-next {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox .lb-prev {
  left: 16px;
}

.lightbox .lb-next {
  right: 16px;
}

/* SEO / selling */
.experience {
  padding: 28px 0 40px;
  background: #f4f4f4;
}

.experience-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  padding: 40px 44px;
}

.rtp-widget {
  margin: 0 0 20px;
  padding: 28px 20px 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, #b71c1c 0%, #7a0c14 42%, #3a0508 100%);
  color: #fff;
  text-align: center;
  box-shadow: 0 12px 28px rgba(80, 0, 0, 0.35);
}

.rtp-widget .rtp-title {
  margin: 0;
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rtp-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 5px 14px;
  background: #111;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
}

.rtp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff2a2a;
  box-shadow: 0 0 8px #ff3b3b;
  animation: rtp-pulse 1.1s ease-in-out infinite;
}

@keyframes rtp-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.85); }
}

.rtp-widget .rtp-update {
  margin: 12px 0 22px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.rtp-time {
  color: #ffd54a;
  font-weight: 800;
}

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

.rtp-card {
  background: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  padding: 16px 10px 14px;
}

.rtp-card.active {
  box-shadow:
    0 0 0 2px #fff,
    0 0 18px rgba(255, 255, 255, 0.45);
}

.rtp-widget .rtp-day {
  margin: 0 0 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.rtp-widget .rtp-pct {
  margin: 0 0 10px;
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.rtp-bar {
  height: 8px;
  margin: 0 8px 10px;
  background: #2a0a0a;
  border-radius: 99px;
  overflow: hidden;
}

.rtp-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #9B111E, #7a0c14);
  border-radius: 99px;
}

.rtp-widget .rtp-hint {
  margin: 0;
  color: #eee;
  font-size: 11px;
}

.rtp-widget .rtp-note {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  font-style: italic;
  font-weight: 400;
}

.rtp-cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: 0 0 20px;
  padding: 18px 20px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.rtp-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #b71c1c 0%, #7a0c14 48%, #4a0808 100%);
  color: #FFE566;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  text-shadow: none;
  box-shadow:
    0 5px 0 #3a0508,
    0 8px 14px rgba(0, 0, 0, 0.35),
    inset 0 2px 0 rgba(183, 28, 28, 0.4);
}

.rtp-cta-btn:hover {
  filter: brightness(1.08);
  color: #FFE566;
}

.rtp-cta-btn:active {
  transform: translateY(4px);
  box-shadow:
    0 1px 0 #3a0508,
    inset 0 3px 8px rgba(0, 0, 0, 0.45);
}

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

  .rtp-widget .rtp-title {
    font-size: 22px;
  }
}

.experience h2 {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin: 0 0 18px;
}

.experience p {
  color: #4a4a4a;
  margin: 0 0 16px;
  line-height: 1.65;
  max-width: none;
}

.experience p:last-child {
  margin-bottom: 0;
}

.extras-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
  align-items: stretch;
}

.extras-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.extras-card h2 {
  font-size: 22px;
  margin-bottom: 16px;
}

.faq-item {
  border-bottom: 1px solid #ececec;
  padding: 10px 0;
}

.faq-item:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: #111;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: #888;
  font-size: 18px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 8px 0 4px;
  font-size: 14px;
  color: #555;
}

.review {
  padding: 12px 0;
  border-bottom: 1px solid #ececec;
}

.review:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.review-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.stars {
  color: #f5a623;
  letter-spacing: 1px;
  font-size: 14px;
}

.review-meta {
  margin: 4px 0 8px;
  font-size: 12px;
  color: #888;
}

.review p {
  font-size: 14px;
}

.related {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid #ececec;
}

.related h3 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
}

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

.related-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #f7f7f7;
  border-radius: 8px;
  padding: 8px;
}

.promo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  background: #f7f7f7;
  border-radius: 8px;
  padding: 14px 8px 12px;
}

.promo-item img {
  width: 48px;
  height: 48px;
}

.promo-item .related-name {
  font-size: 12px;
  font-weight: 700;
  color: #111;
}

.promo-item .related-price {
  font-size: 11px;
  color: #666;
}

.related-item img {
  width: 100%;
  height: 88px;
  object-fit: cover;
  border-radius: 6px;
  background: #fff;
}

.related-name {
  font-size: 12px;
  font-weight: 700;
  color: #111;
}

.related-price {
  font-size: 12px;
  color: #555;
}

/* Footer */
.footer {
  background: #1b1d1f;
  color: #ddd;
  padding: 0;
}

.footer-selling {
  background: #242628;
  padding: 28px 0;
  border-bottom: 2px solid #E31C23;
}

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

.selling-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--white);
}

.selling-item svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  stroke: var(--white);
}

.selling-item h3 {
  margin: 0 0 4px;
  font-size: 15px;
  color: var(--white);
}

.selling-item p {
  margin: 0;
  color: #b0b0b0;
  font-size: 13px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1.15fr;
  gap: 40px;
  padding-top: 40px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 42px;
  width: auto;
}

.newsletter h3 {
  color: var(--white);
  font-size: 15px;
  margin: 0 0 16px;
  line-height: 1.45;
  font-weight: 600;
}

.pay-logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  max-width: 340px;
}

.pay-logos img {
  width: 100%;
  height: 36px;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
}

.lang-switch {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  padding: 12px;
  background: #fff;
  border-radius: 8px;
  max-width: 340px;
}

.lang-label {
  font-weight: 700;
  color: #111;
  font-size: 13px;
}

.lang-btn {
  appearance: none;
  border: 2px solid #E31C23;
  background: #fff;
  color: #E31C23;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 7px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.lang-btn.active {
  background: #E31C23;
  color: #fff;
}

.lang-btn:hover {
  filter: brightness(1.06);
}

.footer h4 {
  color: var(--white);
  margin: 0 0 14px;
  font-size: 14px;
}

.footer-subhead {
  margin-top: 28px;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer li {
  margin: 0 0 8px;
}

.footer li a {
  color: #ececec;
  font-size: 13px;
}

.footer a:hover {
  color: var(--white);
}

.footer-contact h4 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-ico {
  width: 22px;
  height: 22px;
  border: 1px solid #666;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.contact-ico svg {
  width: 12px;
  height: 12px;
}

.footer-contact p {
  margin: 0 0 8px;
  font-size: 13px;
  color: #d5d5d5;
}

.contact-mail {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-mail svg {
  width: 16px;
  height: 16px;
}

.socials {
  display: flex;
  gap: 10px;
  margin: 14px 0 18px;
}

.socials a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
}

.socials svg {
  width: 16px;
  height: 16px;
  fill: var(--white);
}

.footer-legal {
  font-size: 12px;
  color: #9a9a9a;
  margin-top: 8px;
  line-height: 1.5;
}

.footer-bottom {
  margin-top: 32px;
  padding: 16px 0 20px;
  font-size: 12px;
  color: #888;
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 84px;
  width: 36px;
  height: 36px;
  border: 0;
  background: #000;
  color: var(--white);
  font-size: 16px;
  z-index: 40;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.fly-menu {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  padding: 8px 8px 10px;
  background: linear-gradient(180deg, #2d2d2d 0%, #111 42%, #090909 100%);
  border-top: 1px solid #4a4a4a;
  box-shadow:
    0 -8px 24px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.fly-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 70px;
  padding: 6px 4px 8px;
  color: #f2f2f2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  text-shadow: 0 1px 0 #000;
  border-radius: 12px;
}

.fly-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #5a5a5a 0%, #2a2a2a 48%, #141414 100%);
  border: 1px solid #6a6a6a;
  box-shadow:
    0 5px 0 #050505,
    0 8px 12px rgba(0, 0, 0, 0.45),
    inset 0 2px 0 rgba(255, 255, 255, 0.28),
    inset 0 -3px 5px rgba(0, 0, 0, 0.55);
}

.fly-ico img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.fly-btn-main .fly-ico {
  background: linear-gradient(180deg, #FF6B6B 0%, #E31C23 52%, #9B111E 100%);
  border-color: #FFB3B3;
  box-shadow:
    0 5px 0 #5C0A0A,
    0 8px 12px rgba(0, 0, 0, 0.45),
    inset 0 2px 0 rgba(255, 255, 255, 0.35),
    inset 0 -3px 5px rgba(0, 0, 0, 0.35);
}

.fly-btn:hover .fly-ico {
  filter: brightness(1.12);
}

.fly-btn:active .fly-ico {
  transform: translateY(4px);
  box-shadow:
    0 1px 0 #050505,
    inset 0 3px 6px rgba(0, 0, 0, 0.65);
}

.fly-btn:active.fly-btn-main .fly-ico {
  box-shadow:
    0 1px 0 #5C0A0A,
    inset 0 3px 6px rgba(0, 0, 0, 0.4);
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 140px;
  background: var(--black);
  color: var(--white);
  padding: 12px 16px;
  display: none;
  z-index: 100;
  font-size: 13px;
}

.toast.show {
  display: block;
}

.mobile-drawer {
  display: none;
}

@media (max-width: 1180px) {
  .nav-link {
    padding: 10px 8px;
    font-size: 13px;
  }

  .topbar-links {
    gap: 14px;
    font-size: 11px;
  }
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: 64px minmax(0, 1fr) 300px;
    gap: 18px;
  }

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

  .mega,
  .mega-wide {
    min-width: 640px;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .topbar-links {
    display: none;
  }

  .app-download {
    font-size: 11px;
  }

  .nav-primary {
    display: none;
  }

  .menu-toggle,
  .mobile-search {
    display: grid;
  }

  .header-inner {
    height: 60px;
    gap: 8px;
  }

  .logo {
    margin-right: auto;
  }

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

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

  .thumbs-col {
    position: static;
    flex-direction: row;
    order: 2;
    width: 100%;
  }

  .thumb-nav {
    display: none;
  }

  .thumbs {
    flex-direction: row;
    max-height: none;
    overflow-x: auto;
    width: 100%;
  }

  .main-image {
    order: 1;
    position: static;
    min-height: 360px;
  }

  .main-image img {
    height: 380px;
  }

  .product-title {
    font-size: 26px;
  }

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

  .mobile-drawer {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 70;
    padding: 20px;
    overflow: auto;
  }

  .mobile-drawer.open {
    display: block;
  }

  .mobile-drawer a,
  .mobile-drawer button.linkish {
    display: block;
    width: 100%;
    text-align: left;
    padding: 12px 0;
    border: 0;
    border-bottom: 1px solid var(--border);
    background: none;
    font-size: 16px;
    font-weight: 600;
  }

  .experience-card {
    padding: 24px 20px;
    border-radius: 10px;
  }

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