:root {
  --bg: #12121f;
  --bg2: #1a1830;
  --card: #221f3a;
  --card-hover: #2a2648;
  --primary: #FF7DAE;
  --primary-2: #FFB6D9;
  --accent: #FFC7D9;
  --text: #FFFFFF;
  --text2: #C9C9D8;
  --muted: #8B8BA3;
  --border: rgba(255, 255, 255, 0.08);
  --glass: rgba(255, 255, 255, 0.045);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  --shadow-lg: 0 22px 50px rgba(0, 0, 0, 0.42);
  --radius: 20px;
  --radius-sm: 14px;
  --grad: linear-gradient(135deg, #FF7DAE 0%, #FFB6D9 100%);
  --max: 1200px;
  --card-pad: 0.95rem;
  --img-pad: 0.85rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    radial-gradient(1100px 520px at 8% -8%, rgba(255, 125, 174, 0.14), transparent 55%),
    radial-gradient(900px 480px at 100% 0%, rgba(255, 182, 217, 0.09), transparent 50%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; border: 0; background: none; color: inherit; }

.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

/* ========== STICKY BAR (compact after hero) ========== */
.sticky-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0.55rem 0 0.35rem;
  transition: padding 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}
.sticky-bar.is-stuck {
  padding: 0.35rem 0 0.25rem;
  background: rgba(18, 18, 31, 0.9);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header {
  width: min(100% - 1.25rem, calc(var(--max) + 1.5rem));
  margin: 0 auto;
  border-radius: 16px;
  background: rgba(18, 18, 31, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  transition: box-shadow 0.28s ease, background 0.28s ease, border-radius 0.28s ease;
}
.site-header.is-scrolled,
body.is-compact .site-header {
  background: rgba(18, 18, 31, 0.88);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}
body.is-compact .site-header {
  border-radius: 14px;
  width: min(100% - 1rem, calc(var(--max) + 1rem));
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.9rem;
  flex-wrap: nowrap;
  transition: padding 0.28s ease, gap 0.28s ease;
}
body.is-compact .header-inner {
  padding: 0.4rem 0.7rem;
  gap: 0.55rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.05rem;
  flex: 0 0 auto;
  min-width: 0;
}
.brand-logo {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  object-fit: contain;
  flex: 0 0 auto;
  display: block;
  transition: width 0.28s ease, height 0.28s ease;
  box-shadow: 0 6px 16px rgba(255, 125, 174, 0.28);
}
body.is-compact .brand-logo {
  width: 28px;
  height: 28px;
  border-radius: 9px;
}
.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--grad);
  box-shadow: 0 6px 16px rgba(255, 125, 174, 0.32);
  display: grid;
  place-items: center;
  color: #1a1020;
  font-weight: 900;
  transition: width 0.28s ease, height 0.28s ease;
  flex: 0 0 auto;
}
body.is-compact .brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 9px;
}
.brand-text {
  white-space: nowrap;
  transition: opacity 0.2s ease, max-width 0.28s ease;
}
@media (max-width: 480px) {
  body.is-compact .brand-text { display: none; }
}
.search-wrap {
  flex: 1 1 auto;
  position: relative;
  min-width: 0;
  max-height: 48px;
  opacity: 1;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.22s ease, margin 0.28s ease, flex-basis 0.28s ease;
}
/* Hide large search after hero — compact sticky only */
body.is-compact .search-wrap {
  max-height: 0;
  opacity: 0;
  margin: 0;
  flex-basis: 0;
  pointer-events: none;
}
.search-wrap input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  border-radius: 999px;
  padding: 0.72rem 2.4rem 0.72rem 2.55rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.search-wrap input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}
.search-clear {
  position: absolute;
  right: 0.45rem;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.search-clear:hover {
  color: var(--text);
  background: rgba(255, 125, 174, 0.12);
  border-color: rgba(255, 125, 174, 0.3);
}
.search-clear:focus-visible {
  outline: 2px solid rgba(255, 125, 174, 0.7);
  outline-offset: 2px;
}
.search-clear[hidden] { display: none !important; }
.search-wrap input::placeholder {
  color: var(--muted);
  opacity: 0.9;
}
.search-wrap input:focus {
  border-color: rgba(255, 125, 174, 0.5);
  background: rgba(255, 125, 174, 0.06);
  box-shadow: 0 0 0 4px rgba(255, 125, 174, 0.12), 0 0 24px rgba(255, 125, 174, 0.12);
}
.search-icon {
  position: absolute;
  left: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
}
.search-icon svg { width: 16px; height: 16px; }
.header-meta {
  color: var(--text2);
  font-size: 0.8rem;
  white-space: nowrap;
  font-weight: 650;
}
.count-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: padding 0.28s ease, font-size 0.28s ease;
}
body.is-compact .count-badge {
  padding: 0.28rem 0.55rem;
  font-size: 0.72rem;
}
.count-badge #product-count {
  color: var(--primary-2);
  font-variant-numeric: tabular-nums;
}

/* sticky category row under compact nav */
.sticky-filters {
  padding: 0.55rem 0 0.25rem;
  transition: padding 0.28s ease;
}
body.is-compact .sticky-filters {
  padding: 0.4rem 0 0.15rem;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ========== HERO ========== */
.hero { padding: 1.15rem 0 0.55rem; }
.hero-card {
  background:
    linear-gradient(145deg, rgba(255, 125, 174, 0.16), transparent 48%),
    linear-gradient(180deg, #201c38, #19172d);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: clamp(1rem, 2.2vw, 1.65rem);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 0.8rem 1rem;
  align-items: center;
  min-height: 0;
  margin-bottom: 0.15rem;
}
@media (max-width: 820px) {
  .hero-card { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}
.hero-copy { position: relative; z-index: 1; min-width: 0; }
.hero-card::after { display: none; }
.hero-visual {
  position: relative;
  height: 100%;
  min-height: 150px;
  max-height: 190px;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.75;
}
.hero-orb-a {
  width: 140px; height: 140px; right: 8%; top: 10%;
  background: radial-gradient(circle at 30% 30%, rgba(255,182,217,.55), rgba(255,125,174,.08) 70%, transparent 75%);
}
.hero-orb-b {
  width: 90px; height: 90px; right: 42%; bottom: 8%;
  background: radial-gradient(circle at 40% 40%, rgba(255,255,255,.18), rgba(157,140,255,.12) 65%, transparent 75%);
}
.hero-product {
  position: absolute;
  border-radius: 999px;
  background:
    linear-gradient(160deg, rgba(255,255,255,.92), rgba(255,230,240,.75));
  box-shadow: 0 14px 30px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.8);
}
.hero-product-1 {
  width: 46px; height: 110px; right: 28%; top: 18%;
  border-radius: 18px;
  background:
    linear-gradient(180deg, #fff 0%, #ffe4ef 45%, #ff9ec8 100%);
  transform: rotate(8deg);
}
.hero-product-2 {
  width: 58px; height: 58px; right: 12%; top: 28%;
  background:
    radial-gradient(circle at 35% 30%, #fff, #ffd0e4 55%, #ff7dae 100%);
}
.hero-product-3 {
  width: 36px; height: 88px; right: 46%; top: 34%;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #f0e9ff 40%, #c7b8ff 100%);
  transform: rotate(-10deg);
  opacity: 0.9;
}
.hero-glow {
  position: absolute; inset: 10% 5% 5% 20%;
  background: radial-gradient(circle at 70% 45%, rgba(255,125,174,.18), transparent 60%);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary-2);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}
.hero h1 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.55rem, 3.6vw, 2.35rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  max-width: 16ch;
  font-weight: 800;
}
.hero p {
  margin: 0;
  color: var(--text2);
  max-width: 52ch;
  font-size: 0.95rem;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}
.stat-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  color: var(--text2);
  font-size: 0.82rem;
  font-weight: 650;
}
.stat-pill strong {
  color: var(--text);
  font-weight: 700;
}

/* 404 */
.page-404 {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
}
.notfound { width: min(100%, 560px); }
.notfound-card {
  background:
    linear-gradient(145deg, rgba(255, 125, 174, 0.12), transparent 50%),
    var(--bg2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.notfound-kicker {
  margin: 1rem 0 0.2rem;
  color: var(--primary-2);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.notfound-card h1 {
  margin: 0.2rem 0 0.7rem;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.notfound-desc {
  margin: 0 auto 1.2rem;
  color: var(--text2);
  max-width: 38ch;
}
.notfound-card .reset-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* ========== TOOLBAR / CHIPS ========== */
.toolbar {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.05rem 0 0.7rem;
}
.chips {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding: 0.15rem 0 0.25rem;
  scrollbar-width: none;
}
.chips::-webkit-scrollbar { display: none; }
.chip {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text2);
  border-radius: 999px;
  padding: 0.58rem 1rem;
  font-size: 0.86rem;
  font-weight: 650;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
  backdrop-filter: blur(8px);
  min-height: 40px;
}
.chip:hover {
  border-color: rgba(255, 125, 174, 0.4);
  color: var(--text);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 125, 174, 0.12);
}
.chip:focus-visible {
  outline: 2px solid rgba(255, 125, 174, 0.7);
  outline-offset: 2px;
}
.chip.active {
  background: var(--grad);
  color: #1a1020;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(255, 125, 174, 0.3);
}
.result-line {
  color: var(--muted);
  font-size: 0.88rem;
}
.result-line strong { color: var(--text2); }

/* ========== GRID / CARDS ========== */
.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
  padding-bottom: 3.2rem;
  align-items: stretch;
}
@media (min-width: 720px) {
  .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.15rem; }
}
@media (min-width: 1040px) {
  .grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.25rem; }
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
@media (hover: hover) and (pointer: fine) {
  .card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 125, 174, 0.28);
    background: var(--card-hover);
    box-shadow: var(--shadow-lg);
  }
  .card:hover .card-media img {
    transform: scale(1.03);
  }
  .card:hover .cta {
    background: var(--grad);
    color: #1a1020;
    border-color: transparent;
    box-shadow: 0 8px 22px rgba(255, 125, 174, 0.35);
  }
}

.card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #ffffff;
  overflow: hidden;
  padding: var(--img-pad);
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.25s ease;
  background: #fff;
  /* reserve square space to reduce CLS while lazy-loading */
  aspect-ratio: 1 / 1;
}
.badge {
  position: absolute;
  left: 0.7rem;
  top: 0.7rem;
  z-index: 2;
  background: linear-gradient(135deg, rgba(30, 24, 48, 0.92), rgba(40, 30, 60, 0.88));
  border: 1px solid rgba(255, 125, 174, 0.35);
  color: #ffe3f0;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.32rem 0.6rem;
  border-radius: 999px;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
  letter-spacing: 0.01em;
}
.badge.best {
  background: linear-gradient(135deg, #ff6fa8, #ff9ec8);
  color: #1a1020;
  border-color: transparent;
}
.badge.popular {
  background: linear-gradient(135deg, #6d5cff, #9d8cff);
  color: #fff;
  border-color: transparent;
}
.badge.pilihan {
  background: linear-gradient(135deg, #6d5cff, #9d8cff);
  color: #fff;
  border-color: transparent;
}
.badge.promo {
  background: linear-gradient(135deg, #1f6b4a, #2f9d6a);
  color: #eafff4;
  border-color: transparent;
}
.badge.baru {
  background: linear-gradient(135deg, #ff6fa8, #ffb6d9);
  color: #1a1020;
  border-color: transparent;
}

.card-body {
  padding: var(--card-pad) var(--card-pad) 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
  flex: 1;
}
.brand-line {
  color: var(--primary-2);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  min-height: 1.05em;
}
.brand-line.brand-spacer {
  visibility: hidden;
  min-height: 1.05em;
}
.brand-line.brand-muted {
  color: var(--muted);
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: none;
}
.card h3 {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.55em;
  color: var(--text);
}
.meta-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.76rem;
}
.stars { color: #FFD48A; letter-spacing: 0.02em; font-weight: 650; }
.price-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-top: 0.1rem;
  min-height: 1.7rem;
}
.price {
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.1;
}
.price-old {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 0.78rem;
  opacity: 0.75;
}
.disc {
  display: inline-flex;
  align-items: center;
  background: rgba(61, 214, 140, 0.14);
  color: #6dffb2;
  border: 1px solid rgba(109, 255, 178, 0.25);
  font-size: 0.72rem;
  font-weight: 750;
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
}
.cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  border-radius: 999px;
  padding: 0.75rem 0.95rem;
  font-weight: 750;
  font-size: 0.9rem;
  background: rgba(255, 125, 174, 0.12);
  border: 1px solid rgba(255, 125, 174, 0.3);
  color: var(--text);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}
.cta:focus-visible {
  outline: 2px solid rgba(255, 125, 174, 0.75);
  outline-offset: 2px;
}
.cta:hover {
  box-shadow: 0 8px 22px rgba(255, 125, 174, 0.22);
  transform: translateY(-1px);
}
.cta:active { transform: scale(0.98); }

.empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text2);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  background: var(--glass);
}
.empty-premium {
  padding: 3.4rem 1.2rem;
  display: grid;
  place-items: center;
  gap: 0.55rem;
  justify-items: center;
  text-align: center;
}
.empty-premium h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.empty-premium p {
  margin: 0;
  max-width: 36ch;
  color: var(--muted);
}
.empty-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 125, 174, 0.12);
  border: 1px solid rgba(255, 125, 174, 0.25);
  color: var(--primary-2);
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}
.reset-btn {
  margin-top: 0.7rem;
  border-radius: 999px;
  padding: 0.7rem 1.15rem;
  font-weight: 750;
  background: var(--grad);
  color: #1a1020;
  border: 0;
  min-height: 44px;
}
.reset-btn:hover { filter: brightness(1.05); }
.reset-btn:focus-visible {
  outline: 2px solid rgba(255, 125, 174, 0.75);
  outline-offset: 2px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.6rem 0 1.8rem;
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 1.4rem;
  background: linear-gradient(180deg, transparent, rgba(255, 125, 174, 0.03));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr) 1.2fr;
  gap: 1.5rem 1.2rem;
}
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
}
.footer-logo img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(255, 125, 174, 0.25);
}
.footer-desc {
  margin: 0;
  color: var(--text2);
  max-width: 34ch;
  line-height: 1.55;
  font-size: 0.9rem;
}
.footer-col h4 {
  margin: 0 0 0.7rem;
  color: var(--text);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 750;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.footer-col a {
  color: var(--text2);
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--primary-2); }
.footer-note {
  margin: 0 0 0.7rem;
  color: var(--muted);
  font-size: 0.86rem;
}
.news-form {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}
.news-form input {
  flex: 1;
  min-width: 0;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.6rem 0.9rem;
  outline: none;
}
.news-form input:focus {
  border-color: rgba(255, 125, 174, 0.45);
  box-shadow: 0 0 0 3px rgba(255, 125, 174, 0.12);
}
.news-btn {
  border-radius: 999px;
  padding: 0.6rem 0.95rem;
  font-weight: 750;
  background: var(--grad);
  color: #1a1020;
  border: 0;
  white-space: nowrap;
}
.socials {
  display: flex;
  gap: 0.45rem;
}
.socials a {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text2);
  font-size: 0.72rem;
  font-weight: 800;
  transition: border-color 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.socials a:hover {
  border-color: rgba(255, 125, 174, 0.45);
  color: var(--primary-2);
  transform: scale(1.08) translateY(-1px);
  box-shadow: 0 0 18px rgba(255, 125, 174, 0.28);
  background: rgba(255, 125, 174, 0.08);
}
.socials a:focus-visible {
  outline: 2px solid rgba(255, 125, 174, 0.7);
  outline-offset: 2px;
}
.brand:hover .brand-logo,
.footer-logo:hover img {
  box-shadow: 0 0 18px rgba(255, 125, 174, 0.4);
}
.brand-logo,
.footer-logo img {
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.brand:hover .brand-logo {
  transform: translateY(-1px);
}
.brand:focus-visible,
.footer-logo:focus-visible,
.footer-col a:focus-visible {
  outline: 2px solid rgba(255, 125, 174, 0.7);
  outline-offset: 3px;
  border-radius: 8px;
}
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.82rem;
}
#catalog {
  padding-bottom: 0.5rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  color: var(--text2);
  font-weight: 750;
}

/* skeleton */
.skeleton .card-media {
  background: linear-gradient(90deg, #1f1d36, #2a2748, #1f1d36);
  background-size: 200% 100%;
  animation: sh 1.2s infinite;
}
.skeleton-card .card-body { gap: 0.55rem; }
.sk-line, .sk-btn {
  border-radius: 999px;
  background: linear-gradient(90deg, #1f1d36, #2a2748, #1f1d36);
  background-size: 200% 100%;
  animation: sh 1.2s infinite;
}
.sk-brand { height: 10px; width: 38%; }
.sk-title { height: 12px; width: 92%; }
.sk-title.short { width: 70%; }
.sk-price { height: 14px; width: 45%; margin-top: 0.2rem; }
.sk-btn { height: 42px; width: 100%; margin-top: 0.4rem; border-radius: 999px; }
@keyframes sh {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
