:root {
  --bg: #0b0b0d;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: #141418;
  --line: rgba(212, 176, 106, 0.22);
  --gold: #d9b46c;
  --gold-strong: #f1d59b;
  --text: #f5f0e8;
  --muted: #b4aa9b;
  --card-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(217, 180, 108, 0.16), transparent 28%),
    linear-gradient(180deg, #060607 0%, #101014 55%, #09090b 100%);
}

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

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

button {
  font: inherit;
}

.section-shell {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(9, 9, 11, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 88px;
  gap: 24px;
}

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

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

.icon-link {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.cart-link {
  position: relative;
}

.cart-count-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-strong);
  color: #0c0c0e;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}

.icon-link:focus-visible {
  outline: 2px solid rgba(217, 180, 108, 0.55);
  outline-offset: 3px;
}

.icon-link:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.icon-link img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.user-entry img[data-user-avatar] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
}

.user-entry.has-photo img[data-user-avatar] {
  filter: none;
  opacity: 1;
}

.user-entry {
  position: relative;
}

.user-entry__badge {
  position: absolute;
  right: -5px;
  bottom: -3px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-strong);
  color: #0c0c0e;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
}

.icon-link:hover {
  transform: translateY(-1px);
  background: rgba(217, 180, 108, 0.12);
  border-color: var(--line);
}

.search-modal[hidden] {
  display: none;
}

.search-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.auth-modal[hidden] {
  display: none;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
}

.auth-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 3, 4, 0.76);
  backdrop-filter: blur(10px);
}

.auth-dialog {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100% - 32px));
  margin: 92px auto 0;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(14, 14, 18, 0.97);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
}

.auth-dialog__header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.auth-dialog__header strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
}

.auth-dialog__header p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.auth-close {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  cursor: pointer;
  line-height: 1;
  font-size: 1.35rem;
}

.auth-view[hidden] {
  display: none;
}

.auth-view {
  display: grid;
  gap: 18px;
}

.auth-view__intro h3 {
  margin: 8px 0 6px;
  font-size: 1.7rem;
}

.auth-view__intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.auth-register-cta {
  margin-top: 14px;
  justify-self: start;
  border-color: rgba(217, 180, 108, 0.35);
  background: rgba(235, 162, 18, 0.08);
  color: #fff;
}

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

.auth-form label {
  display: grid;
  gap: 8px;
}

.auth-form span {
  color: var(--muted);
  font-size: 0.92rem;
}

.auth-form input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(116, 114, 53, 0.04);
  color: var(--text);
  outline: none;
}

.auth-form input:focus {
  border-color: rgba(217, 180, 108, 0.65);
  box-shadow: 0 0 0 4px rgba(217, 180, 108, 0.12);
}

.auth-view__switch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.auth-switch-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gold-soft);
  cursor: pointer;
  font: inherit;
}

.auth-status {
  display: block;
  margin-top: 18px;
  color: var(--muted);
}

.auth-status.is-error {
  color: #ffb4b4;
}

.account-panel {
  display: grid;
}

.account-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.account-card h2 {
  margin: 0;
  font-size: 2rem;
}

.account-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.account-profile {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.account-avatar {
  width: 128px;
  height: 128px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.account-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-profile-form {
  display: grid;
  gap: 16px;
}

.account-profile-form label {
  display: grid;
  gap: 8px;
}

.account-profile-form span {
  color: var(--muted);
  font-size: 0.92rem;
}

.account-profile-form input[type="text"] {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: none;
}

.account-profile-form input[type="text"]:focus {
  border-color: rgba(217, 180, 108, 0.65);
  box-shadow: 0 0 0 4px rgba(217, 180, 108, 0.12);
}

.account-upload {
  display: grid;
  gap: 12px;
}

.account-upload input[type="file"] {
  display: none;
}

.account-upload__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 720px) {
  .account-profile {
    grid-template-columns: 1fr;
  }

  .account-avatar {
    width: 112px;
    height: 112px;
  }
}

.account-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
}

.account-meta div {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.account-meta dt {
  color: var(--muted);
  font-size: 0.92rem;
}

.account-meta dd {
  margin: 10px 0 0;
  color: var(--text);
  font-size: 1rem;
}

.account-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 3, 4, 0.72);
  backdrop-filter: blur(10px);
}

.search-dialog {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 32px));
  margin: 110px auto 0;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(14, 14, 18, 0.96);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
  padding: 22px;
}

.search-dialog__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.search-dialog__header strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  letter-spacing: 0.04em;
}

.search-close {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  cursor: pointer;
  line-height: 1;
  font-size: 1.35rem;
}

.search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.search-input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: none;
}

.search-input:focus {
  border-color: rgba(217, 180, 108, 0.65);
  box-shadow: 0 0 0 4px rgba(217, 180, 108, 0.12);
}

.btn-small {
  min-height: 52px;
  padding: 0 18px;
}

.search-results {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.search-result {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.search-result__tag {
  color: var(--gold-strong);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.search-result__title {
  font-weight: 600;
}

.search-result__hint {
  color: var(--muted);
  font-size: 0.92rem;
}

.search-empty {
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  color: var(--muted);
  line-height: 1.8;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.32));
}

.brand-mark strong,
.hero-panel h1,
.section-heading h2,
.page-hero h1,
.story-card h2,
.site-footer h3,
.site-footer h4,
.brand-tile h3,
.category-card h3,
.product-card h3,
.ranking-item h3,
.launch-card h3 {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.03em;
}

.brand-mark strong {
  display: block;
  font-size: 1.35rem;
}

.brand-mark span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.site-nav > a,
.nav-link {
  position: relative;
  padding: 12px 0;
  color: var(--text);
  font-weight: 600;
}

.site-nav > a::after,
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.site-nav > a:hover::after,
.site-nav > a.is-active::after,
.nav-item.is-active .nav-link::after,
.nav-link-group:hover .nav-link::after {
  transform: scaleX(1);
}

.nav-item {
  position: relative;
}

.nav-link-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown-toggle {
  position: relative;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.dropdown-toggle::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: translateY(-70%) rotate(45deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 200px;
  padding: 14px;
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(18, 18, 22, 0.97);
  box-shadow: var(--card-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.dropdown-menu a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu a:hover {
  background: rgba(217, 180, 108, 0.12);
  color: var(--text);
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu,
.has-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  background: transparent;
  color: var(--text);
}

main {
  flex: 1 0 auto;
  padding-bottom: 80px;
}

[data-include="footer"] {
  margin-top: auto;
}

.hero,
.page-main {
  padding-top: 40px;
}

.hero-carousel {
  padding-top: 40px;
}

.carousel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--card-shadow);
  height: clamp(360px, 44vw, 620px);
  min-height: 360px;
}

.carousel-track {
  position: relative;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}

.carousel-slide.slide-a {
  opacity: 1;
  animation: carouselFadeA 10s infinite;
  animation-fill-mode: both;
}

.carousel-slide.slide-b {
  animation: carouselFadeB 10s infinite;
  animation-fill-mode: both;
}

.carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 32%),
    linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.55));
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 2;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.carousel-dots .dot {
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  overflow: hidden;
}

.carousel-dots .dot::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--gold-strong), transparent);
  transform: translateX(-110%);
}

.carousel-dots .dot-a::after {
  animation: carouselDotA 10s infinite;
}

.carousel-dots .dot-b::after {
  animation: carouselDotB 10s infinite;
}

@keyframes carouselFadeA {
  0% {
    opacity: 1;
  }
  45% {
    opacity: 1;
  }
  55% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes carouselFadeB {
  0% {
    opacity: 0;
  }
  45% {
    opacity: 0;
  }
  55% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes carouselDotA {
  0% {
    transform: translateX(-110%);
  }
  45% {
    transform: translateX(0%);
  }
  55% {
    transform: translateX(110%);
  }
  100% {
    transform: translateX(110%);
  }
}

@keyframes carouselDotB {
  0% {
    transform: translateX(-110%);
  }
  45% {
    transform: translateX(-110%);
  }
  55% {
    transform: translateX(0%);
  }
  95% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(110%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .carousel-slide {
    animation: none !important;
    opacity: 0;
  }

  .carousel-slide.slide-a {
    opacity: 1;
  }

  .carousel-dots {
    display: none;
  }
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 32px;
  align-items: stretch;
}

.hero-panel,
.hero-visual,
.story-card,
.feature-stack article,
.product-card,
.brand-tile,
.category-card,
.ranking-item,
.launch-card,
.page-hero,
.site-footer,
.countdown-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--card-shadow);
}

.hero-panel,
.page-hero,
.story-card {
  padding: 40px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold-strong);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
}

.hero-panel h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.92;
}

.hero-panel p,
.page-hero p,
.story-card p,
.brand-tile p,
.category-card p,
.product-card p,
.ranking-item p,
.launch-card p,
.site-footer p,
.site-footer li,
.hero-badge span,
.hero-metrics span {
  color: var(--muted);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 32px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.btn:hover,
.text-link:hover,
.category-card a:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, #f1d59b, #bc8a36);
  color: #0c0c0e;
  font-weight: 700;
}

.btn-outline {
  border: 1px solid var(--line);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hero-metrics strong,
.hero-badge strong,
.product-meta strong,
.ranking-item strong,
.launch-card strong,
.countdown-box strong {
  display: block;
  font-size: 1.15rem;
  color: var(--gold-strong);
}

.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 620px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.55));
}

.hero-badge {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(10, 10, 12, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.content-section {
  padding-top: 72px;
}

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

.section-heading h2,
.story-card h2 {
  margin: 0;
  font-size: clamp(2.3rem, 3vw, 3.4rem);
}

.section-heading a,
.text-link,
.category-card a {
  color: var(--gold-strong);
}

.product-grid,
.brand-grid,
.category-grid,
.launch-grid {
  display: grid;
  gap: 24px;
}

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

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

.featured-showcase {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.featured-item {
  display: block;
}

.featured-item img {
  width: 100%;
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.featured-item:hover img {
  transform: translateY(-4px);
  opacity: 0.94;
}

.featured-item__body {
  padding-top: 14px;
}

.featured-item h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.1;
}

.featured-item strong {
  display: block;
  margin-top: 8px;
  color: var(--gold-strong);
  font-size: 0.96rem;
}

.product-card {
  position: relative;
  overflow: hidden;
}

.product-card img,
.launch-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-link {
  display: block;
}

.product-link:hover img {
  transform: scale(1.03);
}

.product-link:focus-visible {
  outline: 2px solid rgba(217, 180, 108, 0.55);
  outline-offset: 4px;
}

.product-card__body,
.launch-card div {
  padding: 24px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
}

.tag {
  position: absolute;
  margin: 18px;
  z-index: 1;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(8, 8, 10, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gold-strong);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag.sale {
  color: #f8d6d6;
  background: rgba(114, 25, 25, 0.86);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 24px;
}

.promo-banner-section {
  display: grid;
  gap: 20px;
}

.promo-banner {
  width: min(520px, 100%);
  margin: 0 auto;
  overflow: hidden;
}

.promo-banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
}

.promo-banner__actions {
  display: flex;
  justify-content: center;
}

.promo-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 8px;
}

.promo-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.promo-card:hover {
  transform: translateY(-2px);
  background: rgba(217, 180, 108, 0.08);
  border-color: var(--line);
}

.promo-card img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex-shrink: 0;
}

.promo-card h3 {
  margin: 0 0 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  letter-spacing: 0.03em;
}

.promo-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.latest-news-section {
  padding-bottom: 12px;
}

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

.news-card,
.news-article,
.news-sidebar {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--card-shadow);
}

.news-card {
  overflow: hidden;
  transition: transform 0.2s ease, background 0.2s ease;
}

.news-card:hover {
  transform: translateY(-2px);
  background: rgba(217, 180, 108, 0.06);
}

.news-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.news-card__body {
  padding: 24px;
}

.news-card__date,
.news-sidebar__item span,
.news-article__meta span {
  color: var(--gold-strong);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-card h3,
.news-sidebar h3,
.news-article h2 {
  margin: 10px 0 0;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.03em;
}

.news-card h3 {
  font-size: 2rem;
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.news-article {
  overflow: hidden;
}

.news-article img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.news-article__meta,
.news-article__body,
.news-sidebar {
  padding: 28px;
}

.news-article h2 {
  font-size: clamp(2.3rem, 3.6vw, 3.2rem);
}

.news-article__body {
  padding-top: 0;
}

.news-article__body p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.9;
}

.news-sidebar__header h3 {
  font-size: 2rem;
}

.news-sidebar__list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.news-sidebar__item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.news-sidebar__item img {
  width: 92px;
  height: 92px;
  border-radius: 14px;
  object-fit: cover;
}

.news-sidebar__item strong {
  display: block;
  margin-top: 8px;
  line-height: 1.5;
}

.news-empty {
  padding: 18px;
  border-radius: 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
}

.shop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: start;
}

.shop-media,
.shop-info {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--card-shadow);
}

.shop-media {
  padding: 20px;
  display: grid;
  gap: 16px;
}

.shop-media__main {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: calc(var(--radius) - 4px);
  background: rgba(255, 255, 255, 0.03);
}

.shop-media__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-media__main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.55));
  pointer-events: none;
}

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

.shop-gallery__thumb {
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.shop-gallery__thumb:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 180, 108, 0.32);
}

.shop-gallery__thumb.is-active {
  border-color: rgba(217, 180, 108, 0.52);
  background: rgba(217, 180, 108, 0.08);
}

.shop-gallery__thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.shop-info {
  padding: 32px;
}

.shop-info h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.03em;
  font-size: 2.4rem;
}

.shop-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
}

.shop-price strong {
  color: var(--gold-strong);
  font-size: 1.3rem;
}

.shop-price span {
  color: var(--muted);
}

.shop-desc {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.85;
}

.shop-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.shop-cart-feedback {
  margin: 14px 0 0;
  color: var(--gold-strong);
  line-height: 1.7;
}

.shop-spec {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.shop-detail-copy {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--card-shadow);
  padding: 32px;
}

.shop-detail-copy h2 {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  letter-spacing: 0.03em;
}

.shop-detail-copy__body {
  color: var(--muted);
  line-height: 1.95;
  white-space: pre-wrap;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 24px;
  align-items: start;
}

.cart-panel,
.cart-summary,
.cart-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--card-shadow);
}

.cart-panel,
.cart-summary {
  padding: 28px;
}

.cart-heading {
  margin-bottom: 24px;
}

.cart-list {
  display: grid;
  gap: 20px;
}

.cart-item {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 24px;
  padding: 22px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03)),
    rgba(10, 10, 12, 0.82);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.cart-item:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 180, 108, 0.3);
  background:
    linear-gradient(180deg, rgba(217, 180, 108, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(10, 10, 12, 0.88);
}

.cart-item__media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 168px;
  background: rgba(255, 255, 255, 0.03);
}

.cart-item__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.cart-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.cart-item:hover .cart-item__media img {
  transform: scale(1.03);
}

.cart-item__content {
  min-width: 0;
  display: grid;
  align-content: start;
}

.cart-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cart-item__content h3 {
  margin: 12px 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.85rem, 2.5vw, 2.2rem);
  letter-spacing: 0.03em;
  line-height: 1;
}

.cart-item__content h3 a {
  transition: color 0.2s ease;
}

.cart-item__content h3 a:hover {
  color: var(--gold-strong);
}

.cart-item__content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  max-width: 58ch;
}

.cart-item__footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-quantity {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.cart-quantity button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(217, 180, 108, 0.14);
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cart-quantity button:hover {
  background: rgba(217, 180, 108, 0.24);
  transform: translateY(-1px);
}

.cart-quantity span {
  min-width: 30px;
  text-align: center;
  font-weight: 600;
  color: var(--text);
}

.cart-item__price {
  display: grid;
  gap: 6px;
  color: var(--muted);
  justify-items: end;
  text-align: right;
}

.cart-item__price strong {
  color: var(--gold-strong);
  font-size: 1.28rem;
  line-height: 1;
}

.cart-item__remove {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 120, 120, 0.22);
  border-radius: 999px;
  background: rgba(255, 120, 120, 0.08);
  color: var(--gold-strong);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.cart-item__remove:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 120, 120, 0.38);
  background: rgba(255, 120, 120, 0.14);
}

.cart-summary {
  position: sticky;
  top: 108px;
}

.cart-summary h2 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  letter-spacing: 0.03em;
}

.cart-summary__rows {
  display: grid;
  gap: 10px;
}

.cart-summary__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-summary__total strong {
  color: var(--gold-strong);
  font-size: 1.35rem;
}

.cart-summary__actions {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.cart-summary__actions .btn {
  width: 100%;
  justify-content: center;
}

.cart-summary__hint {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.95rem;
}

.spec-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.spec-row strong {
  color: var(--gold-strong);
  font-weight: 600;
}

.spec-row span {
  color: var(--muted);
}

.feature-stack {
  display: grid;
  gap: 20px;
}

.feature-stack article {
  padding: 24px;
}

.page-hero.compact {
  min-height: auto;
}

.sale-banner {
  display: grid;
  gap: 20px;
}

.countdown-box {
  width: fit-content;
  padding: 16px 22px;
  background: rgba(217, 180, 108, 0.12);
}

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

.brand-tile,
.category-card,
.ranking-item,
.launch-card {
  padding: 28px;
}

.brand-tile span,
.ranking-item span {
  color: var(--gold-strong);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
}

.ranking-list {
  display: grid;
  gap: 18px;
}

.ranking-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 20px;
  align-items: center;
}

.ranking-link {
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.ranking-link:hover {
  transform: translateY(-2px);
  background: rgba(217, 180, 108, 0.08);
}

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

.launch-card {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.admin-body {
  min-height: 100vh;
}

.admin-login-screen[hidden],
.admin-shell[hidden] {
  display: none;
}

.admin-login-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 24px;
}

.admin-login-card {
  width: min(520px, 100%);
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--card-shadow);
}

.admin-login-card h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4.1rem);
  line-height: 0.96;
}

.admin-login-card p {
  color: var(--muted);
  line-height: 1.8;
}

.admin-login-form {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.admin-login-form label {
  display: grid;
  gap: 10px;
}

.admin-login-form span {
  color: var(--gold-strong);
  font-weight: 600;
}

.admin-login-form input {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: none;
}

.admin-login-form input:focus {
  border-color: rgba(217, 180, 108, 0.65);
  box-shadow: 0 0 0 4px rgba(217, 180, 108, 0.12);
}

.admin-shell {
  width: min(1400px, calc(100% - 48px));
  margin: 0 auto;
  padding: 40px 0 80px;
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 24px;
}

.admin-sidebar,
.admin-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--card-shadow);
}

.admin-sidebar {
  position: sticky;
  top: 28px;
  align-self: start;
  padding: 32px;
}

.admin-sidebar h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 0.96;
}

.admin-sidebar p,
.admin-sub,
.admin-tip,
.admin-status {
  color: var(--muted);
  line-height: 1.8;
}

.admin-meta {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.admin-meta div {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.admin-meta strong,
.admin-meta span {
  display: block;
}

.admin-meta strong {
  color: var(--gold-strong);
  margin-bottom: 6px;
}

.admin-sidebar__actions {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.admin-nav {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.admin-nav__item {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.admin-nav__item:hover {
  transform: translateY(-1px);
  border-color: rgba(217, 180, 108, 0.35);
  background: rgba(217, 180, 108, 0.08);
}

.admin-nav__item.is-active {
  border-color: rgba(217, 180, 108, 0.55);
  background: rgba(217, 180, 108, 0.14);
  color: var(--gold-soft);
}

.admin-main {
  min-height: calc(100vh - 120px);
}

.admin-page[hidden] {
  display: none;
}

.admin-page {
  display: grid;
  gap: 24px;
}

.admin-page__intro {
  padding: 8px 4px 0;
}

.admin-page__intro h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 0.98;
}

.admin-page__intro p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.admin-panel {
  padding: 28px;
}

.admin-heading {
  margin-bottom: 22px;
}

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

.admin-form label,
.admin-types {
  display: grid;
  gap: 10px;
}

.admin-form span,
.admin-types legend {
  color: var(--gold-strong);
  font-weight: 600;
}

.admin-form input,
.admin-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: none;
}

.admin-form textarea {
  min-height: 120px;
  resize: vertical;
}

.admin-field-hint {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.92rem;
}

.admin-form input:focus,
.admin-form textarea:focus {
  border-color: rgba(217, 180, 108, 0.65);
  box-shadow: 0 0 0 4px rgba(217, 180, 108, 0.12);
}

.admin-form__wide {
  grid-column: 1 / -1;
}

.admin-upload-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.admin-upload-input {
  display: none;
}

.admin-upload-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.admin-upload-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.admin-upload-empty {
  padding: 18px;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  color: var(--muted);
  line-height: 1.8;
}

.admin-upload-card {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.admin-upload-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 140px;
  background: rgba(255, 255, 255, 0.04);
}

.admin-upload-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-upload-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(8, 8, 10, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gold-strong);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.admin-upload-card__body {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 10px;
}

.admin-upload-card__body strong {
  color: var(--text);
}

.admin-upload-card__body span {
  color: var(--muted);
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.7;
  word-break: break-all;
}

.admin-types {
  margin: 0;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-types label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: 20px;
  color: var(--text);
}

.admin-types input {
  width: auto;
  min-height: 0;
  padding: 0;
}

.admin-form__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.admin-inline-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
}

.admin-inline-form input {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: none;
}

.admin-inline-form input:focus {
  border-color: rgba(217, 180, 108, 0.65);
  box-shadow: 0 0 0 4px rgba(217, 180, 108, 0.12);
}

.admin-taxonomy-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.admin-taxonomy-card,
.admin-empty-card {
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.admin-taxonomy-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.admin-taxonomy-card__head strong {
  color: var(--text);
  font-size: 1.02rem;
}

.admin-taxonomy-card__head span,
.admin-empty-card,
.admin-filter-note {
  color: var(--muted);
  line-height: 1.8;
}

.admin-taxonomy-card__actions,
.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.admin-status.is-error {
  color: #ffb4b4;
}

.admin-table-wrap {
  overflow-x: auto;
}

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

.admin-table th,
.admin-table td {
  padding: 16px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--gold-strong);
  font-weight: 600;
}

.admin-hot-table th:first-child,
.admin-hot-table td:first-child,
.admin-hot-table th:nth-child(2),
.admin-hot-table td:nth-child(2) {
  white-space: nowrap;
}

.admin-hot-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}

.admin-hot-rank-input {
  width: 96px;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.admin-hot-rank-input:focus {
  outline: none;
  border-color: rgba(217, 180, 108, 0.45);
  box-shadow: 0 0 0 3px rgba(217, 180, 108, 0.16);
}

.admin-sub {
  display: block;
  font-size: 0.92rem;
  margin-top: 4px;
}

.admin-actions-cell {
  display: flex;
  gap: 10px;
}

.admin-mini {
  min-height: 40px;
  padding: 0 16px;
}

.danger {
  border-color: rgba(255, 120, 120, 0.3);
}

.admin-empty {
  color: var(--muted);
}

.site-footer {
  margin-top: 24px;
  border-radius: 32px 32px 0 0;
  background: rgba(15, 15, 18, 0.95);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 24px;
  padding: 48px 0 32px;
}

.site-footer h3,
.site-footer h4 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 2rem;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 32px;
  color: var(--muted);
  font-size: 0.92rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1024px) {
  .hero,
  .shop-layout,
  .cart-layout,
  .split-layout,
  .product-grid,
  .product-grid.two-columns,
  .brand-grid,
  .category-grid,
  .launch-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .admin-shell {
    grid-template-columns: 300px minmax(0, 1fr);
  }

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

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

  .hero-visual {
    min-height: 460px;
  }

  .shop-media {
    padding: 18px;
  }

  .shop-media__main {
    min-height: 420px;
  }

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

@media (max-width: 768px) {
  .section-shell {
    width: min(100% - 32px, 1200px);
  }

  .header-inner {
    display: flex;
    min-height: 76px;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-right {
    margin-left: auto;
  }

  .header-actions {
    gap: 10px;
  }

  .icon-link {
    width: 40px;
    height: 40px;
  }

  .search-dialog {
    margin-top: 92px;
  }

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

  .btn-small {
    width: 100%;
  }

  .search-result {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .site-nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px 0 18px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav > a,
  .nav-link {
    padding: 14px 0;
  }

  .nav-link-group {
    justify-content: space-between;
  }

  .dropdown-toggle {
    width: 24px;
    height: 24px;
  }

  .dropdown-menu {
    position: static;
    min-width: 100%;
    margin-top: 8px;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
  }

  .has-dropdown.open .dropdown-menu {
    display: grid;
  }

  .hero-panel,
  .page-hero,
  .story-card,
  .brand-tile,
  .category-card,
  .ranking-item {
    padding: 28px;
  }

  .hero-metrics,
  .product-grid,
  .brand-grid,
  .category-grid,
  .launch-grid,
  .news-grid,
  .cart-layout,
  .footer-grid,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .news-article__meta,
  .news-article__body,
  .news-sidebar {
    padding: 24px;
  }

  .news-sidebar__item {
    grid-template-columns: 78px 1fr;
  }

  .news-sidebar__item img {
    width: 78px;
    height: 78px;
  }

  .featured-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

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

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

  .promo-cards {
    grid-template-columns: 1fr;
  }



  .section-heading,
  .footer-bottom,
  .ranking-item {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-actions {
    flex-direction: column;
  }

  .admin-shell {
    width: min(100% - 32px, 1400px);
    grid-template-columns: 1fr;
  }

  .admin-login-card {
    padding: 28px;
  }

  .admin-sidebar {
    position: static;
  }

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

  .admin-form__actions,
  .admin-inline-form,
  .admin-upload-actions,
  .admin-toolbar,
  .admin-taxonomy-card__actions,
  .admin-actions-cell,
  .shop-actions {
    flex-direction: column;
  }

  .admin-inline-form {
    grid-template-columns: 1fr;
  }

  .admin-upload-list,
  .admin-upload-card {
    grid-template-columns: 1fr;
  }

  .cart-item {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
  }

  .cart-item__media {
    min-height: 240px;
  }

  .cart-item__footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .cart-item__price {
    justify-items: start;
    text-align: left;
  }

  .cart-summary {
    position: static;
  }

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

  .shop-detail-copy {
    padding: 26px;
  }
}
