:root {
  --black: #0a0a0a;
  --black-2: #111;
  --panel: #151515;
  --panel-2: #1d1a14;
  --text: #f5f5f7;
  --muted: #b6b1a7;
  --gold: #d4af37;
  --gold-2: #aa7c11;
  --green: #00ff66;
  --danger: #ff5e5e;
  --line: rgba(212, 175, 55, 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.1), transparent 34rem),
    radial-gradient(circle at 85% 20%, rgba(0, 255, 102, 0.035), transparent 22rem),
    var(--black);
  font-family: Montserrat, system-ui, sans-serif;
  letter-spacing: 0;
}

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

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

button {
  cursor: pointer;
}

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

.gold-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 38px 38px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 0.9rem clamp(1rem, 3vw, 3rem);
  border-bottom: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  min-width: 14rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: Cinzel, serif;
  font-weight: 700;
  overflow: hidden;
  background: #050505;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.12);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.18);
}

.brand strong {
  display: block;
  font-family: Cinzel, serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.25;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem;
}

.main-nav a {
  padding: 0.65rem 0.78rem;
  color: var(--muted);
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
  border-color: var(--line);
  background: rgba(212, 175, 55, 0.08);
}

.admin-link {
  color: var(--green) !important;
}

[hidden] {
  display: none !important;
}

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

.user-chip {
  min-height: 2.7rem;
  max-width: 12rem;
  padding: 0 0.75rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.72rem;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.icon-link {
  position: relative;
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.icon-link b {
  position: absolute;
  right: -0.25rem;
  top: -0.35rem;
  min-width: 1.2rem;
  height: 1.2rem;
  padding: 0 0.25rem;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #090909;
  font-size: 0.7rem;
  line-height: 1.2rem;
  text-align: center;
}

.menu-toggle {
  display: none;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  background: transparent;
}

.page {
  animation: fadeIn 0.6s ease both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: min(560px, calc(100svh - 5.1rem));
  display: grid;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #050505;
}

@keyframes goldDrift {
  to {
    transform: translate3d(70px, -90px, 0);
  }
}

.hero-showcase {
  position: relative;
  min-height: inherit;
  width: 100%;
}

.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.04);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0.22), rgba(5, 5, 5, 0.72)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.74), transparent 52%);
}

.hero-slide-info {
  position: absolute;
  right: clamp(1rem, 5vw, 4rem);
  bottom: clamp(1.3rem, 4vw, 2.2rem);
  z-index: 2;
  display: grid;
  gap: 0.35rem;
  max-width: min(360px, calc(100% - 2rem));
  text-align: right;
}

.hero-slide-info span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-slide-info strong {
  font-family: Cinzel, serif;
  font-size: clamp(1.05rem, 2.5vw, 2rem);
  line-height: 1.08;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-slide-info small {
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 800;
}

.hero-copy {
  position: absolute;
  left: clamp(1rem, 5vw, 4rem);
  top: 50%;
  z-index: 4;
  width: min(620px, calc(100% - 2rem));
  display: grid;
  gap: 0.8rem;
  padding: clamp(1rem, 3vw, 1.45rem);
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.48);
  backdrop-filter: blur(8px);
  transform: translateY(-50%);
}

.hero-copy h1 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(1.45rem, 3.5vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0.045em;
}

.hero-copy p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 50%;
  color: var(--text);
  background: rgba(5, 5, 5, 0.58);
  font-size: 1.7rem;
  line-height: 1;
  transform: translateY(-50%);
}

.hero-arrow:hover {
  color: #090909;
  background: linear-gradient(135deg, #f5d66f, var(--gold), var(--gold-2));
}

.hero-arrow.prev {
  left: clamp(0.75rem, 2vw, 1.5rem);
}

.hero-arrow.next {
  right: clamp(0.75rem, 2vw, 1.5rem);
}

.hero-dots {
  position: absolute;
  left: clamp(1rem, 5vw, 4rem);
  bottom: 2rem;
  z-index: 4;
  display: flex;
  gap: 0.45rem;
}

.hero-dots button {
  width: 2rem;
  height: 0.28rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.hero-dots button.active {
  background: var(--gold);
}

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
.section-title h2,
.page-title h1 {
  margin: 0;
  font-family: Cinzel, serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin-top: 0.9rem;
  font-size: clamp(2.1rem, 4.7vw, 4.25rem);
  line-height: 1.04;
}

.hero-content p {
  max-width: 540px;
  margin: 1rem 0 1.35rem;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
}

.hero-minimal .hero-content p {
  font-size: clamp(0.94rem, 1.6vw, 1.08rem);
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.hero-category-nav {
  display: inline-grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
  width: min(600px, 100%);
  padding: 0.35rem;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.56);
}

.hero-category-nav button {
  min-height: 2.9rem;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-category-nav button:hover {
  color: #090909;
  background: linear-gradient(135deg, #f5d66f, var(--gold), var(--gold-2));
}

.hero-badges,
.catalog-tools,
.detail-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.hero-badges span {
  padding: 0.48rem 0.68rem;
  border: 1px solid rgba(212, 175, 55, 0.26);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(10, 10, 10, 0.52);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-top {
  padding: 0.85rem 0 1.15rem;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.86)),
    url("https://images.unsplash.com/photo-1594035910387-fea47794261f?auto=format&fit=crop&w=1600&q=82") center/cover;
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.category-strip button {
  min-height: 2.55rem;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 6px;
  color: var(--text);
  background: rgba(5, 5, 5, 0.64);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.category-strip button:hover {
  color: #090909;
  background: linear-gradient(135deg, #f5d66f, var(--gold), var(--gold-2));
}

.promo-strip {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 0.55rem;
  width: min(920px, 100%);
  margin: 0 auto 0.75rem;
}

.promo-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 4.35rem;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 10px;
  padding: 0.72rem 0.8rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.016)),
    rgba(5, 5, 5, 0.68);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.promo-item::after {
  content: "";
  position: absolute;
  inset: -60% auto -60% -35%;
  width: 36%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(242, 199, 102, 0.16), transparent);
  animation: promoGlow 5.8s ease-in-out infinite;
}

.promo-main {
  border-color: rgba(212, 175, 55, 0.42);
  background:
    radial-gradient(circle at 0% 0%, rgba(212, 175, 55, 0.18), transparent 13rem),
    linear-gradient(135deg, rgba(170, 124, 17, 0.22), rgba(255, 255, 255, 0.025)),
    rgba(5, 5, 5, 0.72);
}

.promo-item i {
  display: grid;
  place-items: center;
  flex: 0 0 2.35rem;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(0, 0, 0, 0.32);
  font-size: 1rem;
}

.promo-item strong,
.promo-item span {
  position: relative;
  z-index: 1;
  display: block;
}

.promo-item strong {
  color: var(--text);
  font-size: 0.78rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.promo-item span {
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.35;
}

@keyframes promoGlow {
  0%,
  48% {
    transform: translateX(0) rotate(18deg);
    opacity: 0;
  }
  58% {
    opacity: 1;
  }
  100% {
    transform: translateX(410%) rotate(18deg);
    opacity: 0;
  }
}

.sample-shell {
  position: relative;
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(0.55rem, 1.4vw, 0.9rem);
  border: 1px solid rgba(212, 175, 55, 0.48);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.18), transparent 15rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012)),
    rgba(5, 5, 5, 0.72);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 24px 76px rgba(0, 0, 0, 0.5),
    0 0 46px rgba(212, 175, 55, 0.13);
}

.sample-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: 1fr;
  grid-auto-columns: 100%;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.1rem;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  touch-action: pan-x;
}

.sample-carousel::-webkit-scrollbar {
  display: none;
}

.sample-carousel .product-card {
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  align-items: stretch;
  border-color: rgba(212, 175, 55, 0.56);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    #0c0c0c;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 30px rgba(212, 175, 55, 0.16);
}

.sample-carousel.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.sample-carousel.is-dragging a {
  pointer-events: none;
}

.sample-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(212, 175, 55, 0.36);
  border-radius: 50%;
  color: var(--text);
  background: rgba(5, 5, 5, 0.78);
  font-size: 1.45rem;
}

.sample-arrow:hover {
  color: #090909;
  background: linear-gradient(135deg, #f5d66f, var(--gold), var(--gold-2));
}

.sample-arrow[data-scroll-left] {
  left: -1.15rem;
}

.sample-arrow[data-scroll-right] {
  right: -1.15rem;
}

.featured-band {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.72)),
    url("https://images.unsplash.com/photo-1594035910387-fea47794261f?auto=format&fit=crop&w=1600&q=82") center/cover;
}

.featured-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(235px, 280px);
  gap: 1rem;
  overflow-x: auto;
  padding: 0.15rem 0 0.9rem;
  scroll-snap-type: x mandatory;
}

.featured-carousel .product-card {
  scroll-snap-align: start;
}

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

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 0.95rem;
}

.home-showroom {
  margin-top: 0;
}

.home-showroom::before {
  content: "";
  display: block;
  height: 1px;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.24), transparent);
}

.showroom-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1rem;
}

.showroom-head h2 {
  margin: 0.15rem 0 0;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
}

.showroom-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-end;
}

.showroom-tabs button {
  min-height: 2.35rem;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 6px;
  padding: 0.58rem 0.8rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.showroom-tabs button.active,
.showroom-tabs button:hover {
  color: #090909;
  background: linear-gradient(135deg, #f5d66f, var(--gold), var(--gold-2));
}

.showroom-panel {
  display: none;
}

.showroom-panel.active {
  display: block;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.brand-card {
  min-height: 6.5rem;
  display: grid;
  align-content: center;
  gap: 0.35rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.brand-card strong {
  font-family: Playfair Display, serif;
  font-size: 1.12rem;
}

.brand-card span {
  color: var(--muted);
  font-size: 0.8rem;
}

.brand-card:hover {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.12);
}

.hero-badges span:nth-child(2) {
  color: var(--green);
  border-color: rgba(57, 255, 136, 0.25);
}

.gold-btn,
.dark-btn,
.ghost-btn,
.danger-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 2.9rem;
  padding: 0.85rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gold-btn {
  color: #090909;
  background: linear-gradient(135deg, #f5d66f, var(--gold), var(--gold-2));
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.16);
}

.gold-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 34px rgba(212, 175, 55, 0.28);
}

.dark-btn {
  color: var(--text);
  background: #171717;
  border-color: var(--line);
}

.ghost-btn {
  color: var(--text);
  background: transparent;
  border-color: var(--line);
}

.danger-btn {
  color: #fff;
  background: rgba(255, 94, 94, 0.14);
  border-color: rgba(255, 94, 94, 0.3);
}

.trust-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-item {
  min-height: 6rem;
  padding: 1.4rem;
  background: rgba(13, 13, 13, 0.96);
}

.trust-item strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.trust-item span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.section {
  padding: clamp(1.45rem, 3.4vw, 2.6rem) 0;
}

.compact-section {
  padding-top: clamp(1rem, 2.2vw, 1.55rem);
  padding-bottom: clamp(1rem, 2.2vw, 1.55rem);
}

.section-title,
.page-title {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1rem;
}

.compact-title {
  margin-bottom: 0.75rem;
}

.section-title h2,
.page-title h1 {
  font-size: clamp(1.65rem, 4vw, 3rem);
}

.section-title p,
.page-title p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.cinema-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 270px);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.7rem;
  scroll-snap-type: x mandatory;
}

.carousel-item {
  position: relative;
  min-height: 18rem;
  display: grid;
  align-content: end;
  gap: 0.25rem;
  overflow: hidden;
  scroll-snap-align: start;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101010;
}

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

.carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.92));
}

.carousel-item strong,
.carousel-item span {
  position: relative;
  z-index: 1;
}

.carousel-item span {
  color: var(--gold);
  font-weight: 800;
}

.product-card {
  position: relative;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.2);
}

.product-media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  background: #0d0d0d;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.05);
}

.badge {
  position: absolute;
  left: 0.8rem;
  bottom: 0.8rem;
  padding: 0.42rem 0.58rem;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(10, 10, 10, 0.78);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.heart-btn {
  position: absolute;
  right: 0.7rem;
  top: 0.7rem;
  z-index: 2;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: rgba(10, 10, 10, 0.72);
}

.heart-btn.is-on {
  color: var(--gold);
}

.product-info {
  padding: 0.85rem;
}

.brand-name {
  margin: 0 0 0.2rem;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-info h3 {
  min-height: 2.35rem;
  margin: 0;
  font-family: Playfair Display, serif;
  font-size: 1.12rem;
}

.rating,
.notes,
.installments {
  color: var(--muted);
  font-size: 0.8rem;
}

.notes {
  min-height: 2.35rem;
  line-height: 1.55;
}

.sample-carousel .product-card {
  min-height: 0;
}

.sample-carousel .product-media {
  aspect-ratio: auto;
  height: clamp(280px, 32vw, 390px);
  min-height: 0;
  border-right: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 0;
}

.sample-carousel .product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 62%, rgba(5, 5, 5, 0.46)),
    radial-gradient(circle at 50% 45%, transparent 35%, rgba(5, 5, 5, 0.2));
  pointer-events: none;
}

.sample-carousel .product-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1rem, 2.2vw, 1.55rem);
}

.sample-carousel .product-info h3 {
  min-height: auto;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.08;
}

.sample-carousel .notes {
  display: -webkit-box;
  min-height: 0;
  margin: 0.65rem 0 0;
  overflow: hidden;
  color: var(--muted);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.sample-carousel .price-row {
  margin: 0.85rem 0 0.9rem;
}

.sample-carousel .price {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.sample-carousel .add-btn {
  min-height: 2.8rem;
  padding: 0.78rem 0.95rem;
  font-size: 0.74rem;
}

.sample-carousel .rating {
  display: none;
}

.sample-carousel .mini-specs {
  display: none;
}

.mini-specs {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.72rem;
}

.mini-specs span,
.stock-line {
  padding: 0.45rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.22);
}

.stock-line {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
}

.price-row {
  display: grid;
  gap: 0.2rem;
  margin: 0.85rem 0 1rem;
}

.price {
  color: var(--text);
  font-size: 1.16rem;
}

.add-btn {
  width: 100%;
}

.cinema-band {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.78), rgba(10, 10, 10, 0.92)),
    url("https://images.unsplash.com/photo-1594035910387-fea47794261f?auto=format&fit=crop&w=1700&q=85") center/cover;
}

.cinema-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: center;
  min-height: 26rem;
}

.arabesque {
  min-height: 21rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, transparent 20%, rgba(212, 175, 55, 0.11)),
    url("https://images.unsplash.com/photo-1615634262417-98ba9274dd63?auto=format&fit=crop&w=1200&q=80") center/cover;
  box-shadow: var(--shadow);
}

.launch-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.feature-card,
.metric-card,
.info-card,
.checkout-panel,
.account-panel,
.legal-block {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.feature-card {
  min-height: 18rem;
  padding: 1.5rem;
  display: grid;
  align-content: end;
  background:
    linear-gradient(180deg, transparent, rgba(10, 10, 10, 0.94)),
    url("https://images.unsplash.com/photo-1585386959984-a41552231658?auto=format&fit=crop&w=1500&q=85") center/cover;
}

.feature-card h3 {
  max-width: 620px;
  margin: 0;
  font-family: Playfair Display, serif;
  font-size: clamp(1.6rem, 4vw, 3rem);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.55rem;
  margin-top: 1.1rem;
  max-width: 480px;
}

.countdown span {
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(10, 10, 10, 0.72);
  text-align: center;
}

.countdown b {
  display: block;
  color: var(--gold);
  font-size: 1.45rem;
}

.decant-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.2rem, 4vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(15, 15, 15, 0.95), rgba(15, 15, 15, 0.58)),
    url("https://images.unsplash.com/photo-1617897903246-719242758050?auto=format&fit=crop&w=1400&q=80") center/cover;
}

.decant-banner h2,
.feature-card h3,
.info-card h3,
.checkout-panel h2,
.account-panel h2 {
  font-family: Playfair Display, serif;
}

.decant-banner p,
.feature-card p,
.info-card p,
.checkout-panel p,
.account-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.auth-card {
  max-width: 520px;
  margin: 0 auto;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 10px;
  padding: clamp(1.15rem, 4vw, 1.8rem);
  background:
    radial-gradient(circle at 0% 0%, rgba(212, 175, 55, 0.12), transparent 15rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
    rgba(8, 8, 8, 0.86);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.auth-card.wide-auth {
  max-width: 760px;
}

.auth-card h2 {
  margin: 0.35rem 0 0.75rem;
  font-family: Playfair Display, serif;
  font-size: clamp(1.75rem, 4vw, 2.45rem);
}

.auth-card p {
  margin: 0 0 1.15rem;
  color: var(--muted);
  line-height: 1.65;
}

.auth-switch {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.auth-switch a {
  color: var(--gold-light);
  font-weight: 800;
}

.confirm-layer {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(12px);
}

.confirm-dialog {
  width: min(390px, 100%);
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 10px;
  padding: 1.2rem;
  background:
    radial-gradient(circle at 0% 0%, rgba(212, 175, 55, 0.12), transparent 12rem),
    #0c0c0c;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
}

.confirm-dialog h3 {
  margin: 0 0 0.55rem;
  font-family: Playfair Display, serif;
  font-size: 1.45rem;
}

.confirm-dialog p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.confirm-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.filters {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 0.8rem;
  margin-bottom: 1rem;
}

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

.field {
  display: grid;
  gap: 0.4rem;
}

.field label {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 2.8rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  background: #101010;
  padding: 0.75rem;
  outline: none;
}

.field textarea {
  min-height: 8rem;
  resize: vertical;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: start;
}

.detail-gallery {
  position: sticky;
  top: 6rem;
  display: grid;
  gap: 0.8rem;
}

.detail-media {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 0 55px rgba(212, 175, 55, 0.16);
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.thumb-row img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #111;
}

.detail-media img {
  width: 100%;
  aspect-ratio: 1 / 1.04;
  object-fit: cover;
}

.detail-panel {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.detail-panel h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin: 1.2rem 0;
}

.notes-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin: 1rem 0;
}

.notes-panel div,
.seo-box {
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(10, 10, 10, 0.42);
}

.notes-panel small,
.seo-box small {
  display: block;
  color: var(--muted);
}

.seo-box {
  margin-top: 1rem;
}

.seo-box p {
  color: var(--muted);
  line-height: 1.6;
}

.spec {
  padding: 0.95rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(10, 10, 10, 0.42);
}

.spec small {
  display: block;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.vip-price {
  display: grid;
  gap: 0.35rem;
  margin: 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(0, 255, 102, 0.2);
  border-radius: 6px;
  background: rgba(0, 255, 102, 0.045);
}

.vip-price strong {
  color: var(--green);
  font-size: 1.4rem;
}

.cart-layout,
.checkout-layout,
.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 1rem;
  align-items: start;
}

.cart-list {
  display: grid;
  gap: 0.8rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.cart-item img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 6px;
}

.quantity {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.55rem;
}

.quantity button {
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text);
  background: #111;
}

.summary {
  position: sticky;
  top: 6rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 18, 18, 0.96);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--muted);
}

.summary-row.total {
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 800;
}

.summary .gold-btn {
  width: 100%;
  margin-top: 1rem;
}

.coupon-box {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.coupon-box label {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.coupon-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
}

.coupon-row input {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  background: #101010;
  padding: 0.75rem;
  outline: none;
}

.empty-state {
  padding: 3rem 1rem;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
}

.elite-page {
  background:
    radial-gradient(circle at top right, rgba(30, 60, 99, 0.2), transparent 33rem),
    #080b11;
}

.certificate {
  margin-top: 0.7rem;
  padding: 0.75rem;
  border: 1px solid rgba(0, 255, 102, 0.22);
  border-radius: 6px;
  color: var(--green);
  background: rgba(0, 255, 102, 0.035);
  font-size: 0.75rem;
  font-weight: 800;
}

.decant-card .volume-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  margin: 0.8rem 0;
}

.volume-tabs button {
  min-height: 2.2rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text);
  background: #111;
  font-size: 0.72rem;
  font-weight: 800;
}

.volume-tabs button.active {
  color: #090909;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.marketing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.timeline {
  display: grid;
  gap: 0.8rem;
}

.timeline-step {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.timeline-step strong {
  display: block;
}

.timeline-step span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
}

.timeline-step.done {
  border-color: rgba(0, 255, 102, 0.25);
}

.timeline-step.active {
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.12);
}

.info-card,
.checkout-panel,
.account-panel,
.legal-block {
  padding: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.form-grid .wide {
  grid-column: 1 / -1;
}

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

#adminContent {
  min-width: 0;
  overflow-x: auto;
}

.admin-side {
  position: sticky;
  top: 6rem;
  display: grid;
  gap: 0.55rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.admin-side button {
  min-height: 2.8rem;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  text-align: left;
  padding: 0 0.75rem;
  font-weight: 800;
}

.admin-side button.active,
.admin-side button:hover {
  color: var(--text);
  border-color: var(--line);
  background: rgba(212, 175, 55, 0.08);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.metric-card {
  padding: 1rem;
}

.metric-card small {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.metric-card strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 1.55rem;
}

.admin-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-table th,
.admin-table td {
  padding: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-align: left;
}

.admin-table th {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.admin-mini {
  min-height: 2rem;
  padding: 0.35rem 0.55rem;
  font-size: 0.68rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 1.6rem;
  padding: 0 0.6rem;
  border-radius: 99px;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  font-size: 0.72rem;
  font-weight: 800;
}

.pill.green {
  color: var(--green);
  background: rgba(0, 255, 102, 0.08);
}

.pill.red {
  color: var(--danger);
  background: rgba(255, 94, 94, 0.1);
}

.chart {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: 0.65rem;
  min-height: 260px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.bar {
  display: grid;
  align-items: end;
  min-height: 210px;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

.bar i {
  display: block;
  min-height: 12px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #f5d66f, var(--gold-2));
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0 1rem;
  border: 1px solid rgba(0, 255, 102, 0.35);
  border-radius: 999px;
  color: var(--green);
  background: rgba(10, 10, 10, 0.88);
  box-shadow: 0 0 24px rgba(0, 255, 102, 0.12);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.whatsapp-float i {
  color: var(--green);
  font-size: 1.12rem;
  filter: drop-shadow(0 0 8px rgba(0, 255, 102, 0.45));
}

.whatsapp-float span {
  line-height: 1;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.2rem;
  z-index: 90;
  width: min(420px, calc(100% - 2rem));
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 13, 13, 0.96);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
  animation: toastIn 2.4s ease both;
}

@keyframes toastIn {
  0%,
  100% {
    opacity: 0;
    transform: translate(-50%, 1rem);
  }
  12%,
  88% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 1040px) {
  .topbar {
    grid-template-columns: auto auto auto;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    justify-self: end;
  }

  .main-nav {
    position: fixed;
    left: 1rem;
    right: 1rem;
    top: 4.7rem;
    display: none;
    flex-direction: column;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(10, 10, 10, 0.98);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .header-actions {
    justify-self: end;
  }

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

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

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

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

  .trust-strip,
  .info-grid,
  .marketing-grid,
  .notes-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-detail,
  .cart-layout,
  .checkout-layout,
  .admin-layout,
  .cinema-inner,
  .launch-grid,
  .decant-banner {
    grid-template-columns: 1fr;
  }

  .detail-media,
  .detail-gallery,
  .summary,
  .admin-side {
    position: static;
  }
}

@media (max-width: 640px) {
  .topbar {
    gap: 0.5rem;
    grid-template-columns: 1fr auto auto;
    padding: 0.65rem 0.75rem;
  }

  .brand {
    min-width: 0;
    gap: 0.55rem;
  }

  .brand-mark {
    width: 2.55rem;
    height: 2.55rem;
  }

  .brand strong {
    font-size: 0.86rem;
    line-height: 1.05;
  }

  .brand small {
    display: none;
  }

  .menu-toggle {
    grid-column: auto;
    width: 2.35rem;
    height: 2.35rem;
  }

  .main-nav {
    left: 0.75rem;
    right: 0.75rem;
    top: 3.95rem;
  }

  .header-actions {
    grid-column: auto;
    justify-content: end;
    gap: 0.4rem;
  }

  .user-chip {
    max-width: 6.5rem;
    min-height: 2.35rem;
    padding: 0 0.5rem;
    font-size: 0.62rem;
  }

  .icon-link {
    width: 2.35rem;
    height: 2.35rem;
  }

  .hero {
    min-height: 68svh;
  }

  h1 {
    font-size: clamp(1.55rem, 8.2vw, 2.45rem);
    line-height: 1.08;
    letter-spacing: 0.035em;
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .hero-actions,
  .action-row {
    align-items: stretch;
  }

  .hero-content p {
    margin: 0.75rem 0 1rem;
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .hero-slide img {
    object-position: center;
  }

  .hero-slide::after {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.18), rgba(5, 5, 5, 0.88)),
      linear-gradient(90deg, rgba(5, 5, 5, 0.44), transparent);
  }

  .hero-slide-info {
    left: auto;
    right: 1rem;
    bottom: 1.15rem;
    max-width: 12rem;
  }

  .hero-slide-info strong {
    font-size: 0.95rem;
  }

  .hero-slide-info small {
    font-size: 0.95rem;
  }

  .hero-copy {
    left: 1rem;
    right: 1rem;
    top: auto;
    bottom: 5rem;
    width: auto;
    padding: 0.9rem;
    transform: none;
  }

  .hero-copy h1 {
    font-size: clamp(1.18rem, 6vw, 1.75rem);
  }

  .hero-copy p {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .hero-category-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .hero-category-nav button {
    min-height: 2.45rem;
    padding: 0 0.35rem;
    font-size: 0.68rem;
  }

  .hero-arrow {
    top: auto;
    bottom: 1.05rem;
    width: 2.35rem;
    height: 2.35rem;
    font-size: 1.35rem;
  }

  .hero-arrow.prev {
    left: 1rem;
    right: auto;
  }

  .hero-arrow.next {
    left: 3.8rem;
    right: auto;
  }

  .hero-actions .gold-btn,
  .hero-actions .ghost-btn,
  .action-row .gold-btn,
  .action-row .ghost-btn,
  .action-row .dark-btn {
    width: 100%;
  }

  .section-title,
  .page-title {
    display: block;
  }

  .product-grid,
  .home-grid,
  .filters,
  .expanded-filters,
  .trust-strip,
  .info-grid,
  .marketing-grid,
  .brand-grid,
  .metric-grid,
  .form-grid,
  .spec-grid,
  .notes-panel {
    grid-template-columns: 1fr;
  }

  .cinema-carousel {
    grid-auto-columns: minmax(78vw, 1fr);
  }

  .featured-carousel {
    grid-auto-columns: minmax(76vw, 1fr);
  }

  .home-top {
    padding: 0.65rem 0 0.85rem;
  }

  .category-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.4rem;
    margin-bottom: 0.7rem;
  }

  .category-strip button {
    min-height: 2.35rem;
    font-size: 0.66rem;
  }

  .showroom-head {
    display: block;
    margin-bottom: 0.8rem;
  }

  .showroom-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.35rem;
    margin-top: 0.7rem;
  }

  .showroom-tabs button {
    min-height: 2.25rem;
    padding: 0.48rem 0.4rem;
    font-size: 0.66rem;
  }

  .promo-strip {
    grid-auto-flow: column;
    grid-auto-columns: minmax(78%, 1fr);
    grid-template-columns: none;
    gap: 0.45rem;
    margin-bottom: 0.65rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .promo-strip::-webkit-scrollbar {
    display: none;
  }

  .promo-item {
    min-height: 3.6rem;
    padding: 0.58rem 0.65rem;
    scroll-snap-align: start;
  }

  .promo-item i {
    flex-basis: 2rem;
    width: 2rem;
    height: 2rem;
    font-size: 0.9rem;
  }

  .promo-item strong {
    font-size: 0.69rem;
  }

  .promo-item span {
    font-size: 0.62rem;
  }

  .sample-carousel {
    grid-template-rows: 1fr;
    grid-auto-columns: 100%;
    gap: 0.65rem;
  }

  .sample-shell {
    padding: 0.55rem;
    border-radius: 12px;
  }

  .sample-carousel .product-card {
    display: block;
  }

  .sample-carousel .product-media {
    aspect-ratio: 1.45 / 1;
    height: auto;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  }

  .sample-carousel .product-media::after {
    background: linear-gradient(180deg, transparent 58%, rgba(5, 5, 5, 0.34));
  }

  .sample-carousel .product-info {
    display: block;
    padding: 0.8rem 0.85rem 0.9rem;
  }

  .sample-carousel .product-info h3 {
    font-size: 1.15rem;
  }

  .sample-carousel .notes {
    display: none;
  }

  .sample-carousel .price-row {
    margin: 0.45rem 0 0.65rem;
  }

  .sample-carousel .price {
    font-size: 1.22rem;
  }

  .sample-carousel .add-btn {
    min-height: 2.45rem;
    padding: 0.66rem 0.85rem;
  }

  .sample-arrow {
    width: 2.1rem;
    height: 2.1rem;
    font-size: 1.2rem;
  }

  .sample-arrow[data-scroll-left] {
    left: 0.25rem;
  }

  .sample-arrow[data-scroll-right] {
    right: 0.25rem;
  }

  .hero-badges {
    display: flex;
    gap: 0.4rem;
  }

  .hero-dots {
    left: 6.8rem;
    bottom: 2.05rem;
  }

  .hero-dots button {
    width: 1.35rem;
  }

  .hero-badges span {
    font-size: 0.62rem;
  }

  .coupon-row {
    grid-template-columns: 1fr;
  }

  .cart-item {
    grid-template-columns: 74px 1fr;
    align-items: start;
  }

  .cart-item img {
    width: 74px;
    height: 74px;
  }

  .cart-item > strong {
    grid-column: 1 / -1;
  }

  .quantity {
    display: grid;
    grid-template-columns: 2rem auto 2rem;
    width: min(100%, 15rem);
  }

  .quantity .danger-btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .countdown {
    grid-template-columns: repeat(2, 1fr);
  }

  .chart {
    min-width: 560px;
  }

  .whatsapp-float {
    left: auto;
    right: 0.75rem;
    bottom: 0.75rem;
    width: 2.9rem;
    min-height: 2.7rem;
    padding: 0;
    border-radius: 50%;
    font-size: 0;
    justify-content: center;
  }

  .whatsapp-float i {
    font-size: 1.25rem;
  }

  .whatsapp-float span {
    display: none;
  }
}
