:root {
  --bg: #faf9fc;
  --bg-soft: #f4f1fa;
  --bg-muted: #ebe6f4;
  --bg-elevated: #ffffff;
  --text: #2e2a3a;
  --text-muted: #6b6578;
  --card-title-color: #514b5e;
  --accent: #7c5cff;
  --accent-dark: #6344e8;
  --accent-soft: #f3efff;
  --accent-light: #e8e0ff;
  --accent-glow: rgba(124, 92, 255, 0.24);
  --accent-cyan: #f472b6;
  --accent-warm: #fb7185;
  --price-color: #059669;
  --border: #e6e1ef;
  --border-light: #f2eff8;
  --gradient-primary: linear-gradient(135deg, #a78bfa 0%, #7c5cff 48%, #6344e8 100%);
  --gradient-primary-hover: linear-gradient(135deg, #8b6cf8 0%, #6344e8 48%, #5534d4 100%);
  --gradient-amazon: var(--gradient-primary);
  --gradient-surface: linear-gradient(180deg, #ffffff 0%, #f6f3fb 100%);
  --gradient-hero: linear-gradient(135deg, #4a3f8c 0%, #3b3270 45%, #2d2658 100%);
  --shadow-sm: 0 1px 2px rgba(46, 42, 58, 0.06);
  --shadow: 0 4px 20px rgba(46, 42, 58, 0.08);
  --shadow-lg: 0 16px 48px rgba(46, 42, 58, 0.1);
  --shadow-card: 0 10px 30px rgba(46, 42, 58, 0.08);
  --shadow-btn: 0 8px 24px rgba(124, 92, 255, 0.32);
  --shadow-btn-hover: 0 12px 32px rgba(124, 92, 255, 0.38);
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-sm: 8px;
  --product-thumb-height: 260px;
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --transition: 0.22s cubic-bezier(0.22, 1, 0.36, 1);
  --hover-lift: -6px;
  --hover-shadow-card: 0 16px 40px rgba(46, 42, 58, 0.1), 0 6px 16px rgba(124, 92, 255, 0.1);
  --hover-shadow-soft: 0 10px 28px rgba(46, 42, 58, 0.09);
  --layout-max: 1200px;
  --layout-gutter: 20px;
  --layout-width: min(var(--layout-max), calc(100% - var(--layout-gutter) * 2));
  --bubble-core: rgba(124, 92, 255, 0.14);
  --bubble-edge: rgba(124, 92, 255, 0.07);
  --bubble-blue: rgba(167, 139, 250, 0.38);
  --bubble-cyan: rgba(244, 114, 182, 0.32);
  --bubble-indigo: rgba(99, 68, 232, 0.28);
  --bubble-sky: rgba(251, 207, 232, 0.48);
  --bubble-light: rgba(243, 239, 255, 0.55);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  position: relative;
}

/* Ambient background bubbles — above page content, below header (100) */
.bubble-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bubble-bg .bubble {
  position: absolute;
  display: block;
  border-radius: 50%;
  opacity: 0.42;
  border: 1.5px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 -4px 10px rgba(124, 92, 255, 0.12),
    0 4px 16px rgba(124, 92, 255, 0.1);
  animation: bubble-float ease-in-out infinite;
  will-change: transform;
}

/* Lifestyle ambient background */
.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.75;
  background-image:
    radial-gradient(circle at 12% 8%, rgba(251, 207, 232, 0.5) 0%, transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(232, 224, 255, 0.55) 0%, transparent 34%),
    radial-gradient(circle at 50% 95%, rgba(243, 239, 255, 0.45) 0%, transparent 42%);
}

.ambient-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(rgba(124, 92, 255, 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 95% 80% at 50% 0%, #000 15%, transparent 70%);
}

.bubble-bg .bubble:nth-child(even) {
  animation-name: bubble-float-alt;
}

.bubble-bg .bubble:nth-child(1) {
  width: 32px;
  height: 32px;
  left: 3%;
  top: 10%;
  background: radial-gradient(circle at 28% 28%, var(--bubble-blue), var(--bubble-core));
  animation-duration: 19s;
  animation-delay: 0s;
}

.bubble-bg .bubble:nth-child(2) {
  width: 18px;
  height: 18px;
  left: 14%;
  top: 52%;
  background: radial-gradient(circle at 32% 32%, var(--bubble-cyan), var(--bubble-core));
  animation-duration: 15s;
  animation-delay: -3s;
}

.bubble-bg .bubble:nth-child(3) {
  width: 40px;
  height: 40px;
  right: 5%;
  top: 6%;
  background: radial-gradient(circle at 38% 34%, var(--bubble-indigo), var(--bubble-edge));
  animation-duration: 22s;
  animation-delay: -7s;
}

.bubble-bg .bubble:nth-child(4) {
  width: 14px;
  height: 14px;
  right: 18%;
  top: 38%;
  background: radial-gradient(circle at 30% 30%, var(--bubble-sky), var(--bubble-core));
  animation-duration: 13s;
  animation-delay: -1s;
}

.bubble-bg .bubble:nth-child(5) {
  width: 24px;
  height: 24px;
  left: 38%;
  top: 68%;
  background: radial-gradient(circle at 35% 35%, var(--bubble-blue), var(--bubble-edge));
  animation-duration: 17s;
  animation-delay: -9s;
}

.bubble-bg .bubble:nth-child(6) {
  width: 12px;
  height: 12px;
  left: 6%;
  top: 74%;
  background: radial-gradient(circle at 30% 30%, var(--bubble-sky), var(--bubble-core));
  animation-duration: 11s;
  animation-delay: -5s;
}

.bubble-bg .bubble:nth-child(7) {
  width: 34px;
  height: 34px;
  right: 34%;
  top: 16%;
  background: radial-gradient(circle at 34% 32%, var(--bubble-cyan), var(--bubble-core));
  animation-duration: 20s;
  animation-delay: -12s;
}

.bubble-bg .bubble:nth-child(8) {
  width: 16px;
  height: 16px;
  left: 52%;
  top: 6%;
  background: radial-gradient(circle at 30% 30%, var(--bubble-indigo), var(--bubble-core));
  animation-duration: 14s;
  animation-delay: -8s;
}

.bubble-bg .bubble:nth-child(9) {
  width: 28px;
  height: 28px;
  right: 10%;
  top: 64%;
  background: radial-gradient(circle at 36% 34%, var(--bubble-light), var(--bubble-core));
  animation-duration: 18s;
  animation-delay: -4s;
}

.bubble-bg .bubble:nth-child(10) {
  width: 10px;
  height: 10px;
  left: 68%;
  top: 54%;
  background: radial-gradient(circle at 30% 30%, var(--bubble-sky), var(--bubble-core));
  animation-duration: 10s;
  animation-delay: -2s;
}

.bubble-bg .bubble:nth-child(11) {
  width: 22px;
  height: 22px;
  left: 24%;
  top: 22%;
  background: radial-gradient(circle at 32% 32%, var(--bubble-cyan), var(--bubble-core));
  animation-duration: 16s;
  animation-delay: -6s;
}

.bubble-bg .bubble:nth-child(12) {
  width: 36px;
  height: 36px;
  right: 28%;
  top: 48%;
  background: radial-gradient(circle at 30% 30%, var(--bubble-indigo), var(--bubble-core));
  animation-duration: 21s;
  animation-delay: -10s;
}

.bubble-bg .bubble:nth-child(13) {
  width: 15px;
  height: 15px;
  left: 46%;
  top: 34%;
  background: radial-gradient(circle at 35% 35%, var(--bubble-blue), var(--bubble-edge));
  animation-duration: 12s;
  animation-delay: -13s;
}

.bubble-bg .bubble:nth-child(14) {
  width: 26px;
  height: 26px;
  right: 46%;
  top: 78%;
  background: radial-gradient(circle at 30% 30%, var(--bubble-sky), var(--bubble-core));
  animation-duration: 17s;
  animation-delay: -15s;
}

.bubble-bg .bubble:nth-child(15) {
  width: 20px;
  height: 20px;
  left: 82%;
  top: 28%;
  background: radial-gradient(circle at 34% 32%, var(--bubble-cyan), var(--bubble-core));
  animation-duration: 15s;
  animation-delay: -11s;
}

.bubble-bg .bubble:nth-child(16) {
  width: 38px;
  height: 38px;
  left: 58%;
  top: 42%;
  background: radial-gradient(circle at 36% 34%, var(--bubble-light), var(--bubble-core));
  animation-duration: 23s;
  animation-delay: -16s;
}

.bubble-bg .bubble:nth-child(17) {
  width: 13px;
  height: 13px;
  right: 58%;
  top: 8%;
  background: radial-gradient(circle at 30% 30%, var(--bubble-indigo), var(--bubble-core));
  animation-duration: 11s;
  animation-delay: -7s;
}

.bubble-bg .bubble:nth-child(18) {
  width: 30px;
  height: 30px;
  left: 12%;
  top: 88%;
  background: radial-gradient(circle at 32% 32%, var(--bubble-sky), var(--bubble-core));
  animation-duration: 19s;
  animation-delay: -14s;
}

.bubble-bg .bubble:nth-child(19) {
  width: 17px;
  height: 17px;
  right: 72%;
  top: 58%;
  background: radial-gradient(circle at 35% 35%, var(--bubble-cyan), var(--bubble-core));
  animation-duration: 14s;
  animation-delay: -5s;
}

.bubble-bg .bubble:nth-child(20) {
  width: 11px;
  height: 11px;
  left: 76%;
  top: 12%;
  background: radial-gradient(circle at 30% 30%, var(--bubble-blue), var(--bubble-core));
  animation-duration: 10s;
  animation-delay: -8s;
}

@keyframes bubble-float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(10px, -22px) scale(1.04);
  }
  50% {
    transform: translate(-8px, -38px) scale(0.98);
  }
  75% {
    transform: translate(12px, -18px) scale(1.02);
  }
}

@keyframes bubble-float-alt {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(-12px, -16px) scale(0.97);
  }
  50% {
    transform: translate(14px, -34px) scale(1.03);
  }
  75% {
    transform: translate(-6px, -24px) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bubble-bg .bubble {
    animation: none;
  }
}

.site-main {
  display: block;
  min-width: 0;
  position: relative;
  z-index: 2;
  background: var(--bg);
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent-dark); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--accent); }

.container {
  width: var(--layout-width);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--transition);
  box-shadow: none;
  overflow: visible;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 32px rgba(46, 42, 58, 0.08);
  border-bottom-color: rgba(124, 92, 255, 0.14);
}

.header-inner {
  position: relative;
  width: var(--layout-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  overflow: visible;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  flex-shrink: 0;
  display: block;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(124, 92, 255, 0.22);
}

.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
}
.brand-text small {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.main-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 4px 10px;
  align-items: center;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 12px;
  border-radius: 999px;
  position: relative;
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover {
  color: var(--accent-dark);
  background: var(--accent-soft);
}

.nav-link::after {
  display: none;
}

/* Nav mega menu: parent category + hover subcategories */
.nav-dropdown.nav-menu-item {
  position: static;
}

.nav-menu-item .nav-menu-trigger {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  position: relative;
}

.nav-menu-item .nav-menu-trigger::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 0;
  height: 0;
  margin-left: -5px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--accent);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  z-index: 210;
}

.nav-menu-item:hover .nav-menu-trigger::before,
.nav-menu-item.is-open .nav-menu-trigger::before {
  opacity: 1;
}

.nav-menu-item .nav-dropdown-panel {
  left: 0;
  right: 0;
  top: 100%;
  width: auto;
  min-width: 0;
  max-width: none;
  max-height: min(420px, 70vh);
  overflow-x: hidden;
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 16px;
  padding: 14px 16px 16px;
  border: 1px solid rgba(124, 92, 255, 0.14);
  border-top: 1px solid rgba(124, 92, 255, 0.1);
  border-radius: 0 0 14px 14px;
  box-shadow: none;
  -webkit-overflow-scrolling: touch;
}

.nav-menu-item .nav-dropdown-item {
  padding: 9px 10px;
  font-size: 0.82rem;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-menu-item .nav-dropdown-item:hover {
  transform: none;
}

/* Nav "More" dropdown */
.nav-dropdown {
  position: relative;
}

.nav-more-panel {
  min-width: 380px;
  width: max-content;
  max-width: min(520px, 94vw);
  max-height: min(70vh, 480px);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 12px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-more-group-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-dark);
  padding: 4px 10px 2px;
  white-space: nowrap;
}

.nav-more-group .nav-dropdown-item {
  white-space: nowrap;
}

.nav-dropdown-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 36px;
  padding: 8px 16px 8px 18px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition:
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}

.nav-dropdown-btn:hover {
  transform: translateY(-1px);
  border-color: #c4c4cc;
  background: var(--bg-soft);
  color: var(--text);
  box-shadow: var(--shadow);
}

.nav-dropdown.is-open .nav-dropdown-btn,
.nav-dropdown-btn:active {
  transform: translateY(0);
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-dark);
  box-shadow: 0 2px 10px rgba(124, 92, 255, 0.12);
}

.nav-dropdown-chevron {
  flex-shrink: 0;
  opacity: 0.9;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-dropdown.is-open .nav-dropdown-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 252px;
  padding: 10px;
  background: linear-gradient(180deg, #fff 0%, #fffbfd 100%);
  border: 1px solid rgba(124, 92, 255, 0.14);
  border-radius: 16px;
  box-shadow:
    0 4px 6px rgba(24, 24, 27, 0.04),
    0 20px 48px rgba(124, 92, 255, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.98);
  transform-origin: top right;
  transition:
    opacity 0.24s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.24s ease;
  z-index: 200;
}

.nav-dropdown-panel::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 22px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-left: 1px solid rgba(124, 92, 255, 0.12);
  border-top: 1px solid rgba(124, 92, 255, 0.12);
  border-radius: 3px 0 0 0;
  transform: rotate(45deg);
  box-shadow: -2px -2px 6px rgba(124, 92, 255, 0.06);
}

.nav-dropdown.is-open .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

@media (min-width: 769px) {
  .nav-dropdown-panel {
    display: block;
  }

  .nav-menu-item .nav-dropdown-panel {
    display: grid;
  }

  .nav-dropdown:hover .nav-dropdown-panel,
  .nav-menu-item:hover .nav-dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }
}

.nav-dropdown-item {
  display: block;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition:
    background 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.nav-dropdown-item:hover {
  background: var(--accent-soft);
  color: var(--accent-dark);
  transform: translateX(2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

body.nav-open {
  overflow: hidden;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 96px;
  background: linear-gradient(180deg, var(--accent-soft) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border-light);
}

.hero--banner {
  min-height: clamp(420px, 52vh, 560px);
  padding: clamp(72px, 10vh, 112px) 0;
  display: flex;
  align-items: center;
  background: #3b3270;
  border-bottom: none;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(124, 92, 255, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 15% 80%, rgba(124, 92, 255, 0.04) 0%, transparent 45%);
  pointer-events: none;
}

.hero--banner .hero-bg {
  background: #3b3270;
}

.hero-banner-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 46%;
  pointer-events: none;
}

@media (max-width: 767px) {
  .hero--banner {
    min-height: 460px;
  }

  .hero--banner .hero-banner-art {
    object-position: 48% 44%;
  }

  .hero--banner .hero-banner-scrim {
    background:
      linear-gradient(180deg, rgba(59, 50, 112, 0.78) 0%, rgba(59, 50, 112, 0.48) 45%, rgba(59, 50, 112, 0.62) 100%);
  }
}

.hero-banner-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(59, 50, 112, 0.72) 0%, rgba(59, 50, 112, 0.38) 38%, rgba(59, 50, 112, 0.08) 62%, rgba(59, 50, 112, 0) 82%),
    linear-gradient(180deg, rgba(46, 42, 58, 0.25) 0%, transparent 50%, rgba(46, 42, 58, 0.18) 100%);
  pointer-events: none;
}

.hero .container.hero-content {
  position: relative;
  z-index: 1;
  width: var(--layout-width);
  max-width: var(--layout-width);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero--banner .container.hero-content {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .hero--banner .container.hero-content {
    text-align: left;
    padding-left: 28px;
  }

  .hero--banner .hero-actions {
    justify-content: flex-start;
  }

  .hero--banner .hero-lead {
    margin-left: 0;
    margin-right: 0;
    max-width: 480px;
  }
}

.hero-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-dark);
  margin: 0 0 20px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.hero--banner .hero-eyebrow {
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.08) 100%);
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.15;
  margin: 0 0 20px;
  font-weight: 600;
  color: var(--text);
  text-shadow: none;
}

.hero--banner .hero-title {
  color: #fff;
  font-size: clamp(2.35rem, 4.8vw, 3.55rem);
  letter-spacing: -0.02em;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
}

@media (min-width: 900px) {
  .hero-title {
    white-space: normal;
    font-size: clamp(2.4rem, 3.5vw, 3.2rem);
  }
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0 auto 32px;
  max-width: 520px;
  line-height: 1.75;
}

.hero--banner .hero-lead {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.hero--banner .btn-primary {
  background: linear-gradient(135deg, #ffffff 0%, #f3efff 100%);
  color: var(--accent-dark);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero--banner .btn-primary:hover {
  background: linear-gradient(135deg, #ffffff 0%, #e8e0ff 100%);
  color: var(--accent-dark);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 1);
}

.hero--banner .btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero--banner .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition:
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition),
    color var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  color: #fff;
  background: var(--gradient-primary-hover);
  box-shadow: var(--shadow-btn-hover);
}

.btn-ghost {
  background: var(--gradient-surface);
  border-color: rgba(124, 92, 255, 0.18);
  color: var(--accent-dark);
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
  border-color: rgba(124, 92, 255, 0.35);
  background: var(--accent-soft);
  color: var(--accent-dark);
  box-shadow: 0 6px 20px rgba(124, 92, 255, 0.12);
}

/* Unified site search (below hero banners) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-search {
  position: relative;
  margin-top: 0;
  padding: 28px 0 32px;
  background: var(--bg);
  border-bottom: 1px solid var(--border-light);
}

.site-search-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.site-search-form {
  position: relative;
  margin: 0;
  width: 100%;
}

.search-blocked-msg {
  color: var(--accent-dark);
}

.site-search-inner {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  background: #fff;
  border-radius: 999px;
  border: 1px solid rgba(124, 92, 255, 0.12);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
  padding: 6px 6px 6px 16px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.site-search-inner:focus-within {
  border-color: rgba(124, 92, 255, 0.35);
  box-shadow: 0 12px 40px rgba(124, 92, 255, 0.14);
  transform: translateY(-1px);
}

.site-search-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: var(--accent);
  opacity: 0.88;
}

.site-search-input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  padding: 10px 12px;
}

.site-search-input::placeholder {
  color: var(--text-muted);
}

.site-search-input:focus {
  outline: none;
}

.site-search-submit {
  flex-shrink: 0;
  border: 0;
  border-radius: 999px;
  padding: 11px 24px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  background: var(--gradient-primary);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  box-shadow: var(--shadow-btn);
}

.site-search-submit:hover {
  transform: translateY(-2px);
  background: var(--gradient-primary-hover);
  box-shadow: var(--shadow-btn-hover);
}

.search-results-section {
  padding-top: 0;
}

.search-sort-bar,
.list-sort-bar,
.product-sort-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 20px;
  margin-bottom: 24px;
  padding: 14px 18px;
  background: var(--bg-soft);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
}

.product-sort-bar-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  flex: 1 1 auto;
  min-width: 0;
}

.search-sort-label,
.product-sort-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.search-sort-options,
.product-sort-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.search-sort-btn,
.product-sort-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 600;
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

.search-sort-btn:hover,
.product-sort-btn:hover {
  border-color: rgba(124, 92, 255, 0.35);
  color: var(--accent-dark);
  background: var(--accent-soft);
}

.search-sort-btn.is-active,
.product-sort-btn.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(124, 92, 255, 0.24);
  pointer-events: none;
}

.search-sort-btn-muted,
.product-sort-btn-muted {
  font-weight: 500;
}

.product-price-range {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin: 0;
  flex: 0 1 auto;
}

.product-price-range-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.product-price-range-input {
  width: 72px;
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text);
  background: #fff;
}

.product-price-range-input:focus {
  outline: none;
  border-color: rgba(124, 92, 255, 0.4);
  box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.1);
}

.product-price-range-sep {
  color: var(--text-muted);
  font-weight: 500;
}

.product-price-range-btn {
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(124, 92, 255, 0.22);
}

.product-price-range-btn:hover:not(:disabled) {
  box-shadow: 0 4px 14px rgba(124, 92, 255, 0.3);
}

.product-price-range-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.product-price-range-clear {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}

.product-price-range-clear:hover {
  color: var(--accent-dark);
}

.btn-amazon {
  background: var(--gradient-primary);
  color: #fff;
  font-weight: 600;
  box-shadow: var(--shadow-btn);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-amazon:hover {
  color: #fff;
  background: var(--gradient-primary-hover);
  box-shadow: var(--shadow-btn-hover);
  transform: translateY(-2px);
}

.btn-sm { padding: 8px 16px; font-size: 0.82rem; }

.btn-lg { padding: 16px 28px; font-size: 1rem; }

.btn-block { width: 100%; }

/* Sections */
.section { padding: 72px 0; }

.section-head {
  text-align: center;
  margin-bottom: 44px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 12px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
}

.section-head h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-cyan));
}

.section-head p {
  color: var(--text-muted);
  margin: 0 auto;
  font-size: 0.95rem;
  max-width: 480px;
  line-height: 1.65;
}

.categories-section {
  background: var(--bg-soft);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.category-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  color: var(--text);
  text-decoration: none;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.category-card:hover {
  transform: translateY(var(--hover-lift));
  box-shadow: var(--hover-shadow-card);
  color: var(--text);
}

.category-icon {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 16px;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.28s ease,
    box-shadow 0.28s ease;
}

.category-card:hover .category-icon {
  transform: scale(1.1) rotate(-3deg);
  background: var(--accent-light);
  box-shadow: 0 6px 16px rgba(24, 24, 27, 0.08);
}

.category-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 600;
  transition: color var(--transition);
}

.category-card:hover h3 {
  color: var(--accent-dark);
}

.category-arrow {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), color var(--transition);
}

.category-card:hover .category-arrow {
  transform: translateX(5px);
  color: var(--accent-dark);
}

/* Product grid — 3-column masonry (cards keep natural height) */
.product-grid {
  gap: 24px;
}

.product-grid-4,
.product-grid-3 {
  column-count: 3;
  column-gap: 24px;
}

.product-grid-4 > .product-card,
.product-grid-3 > .product-card {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  display: inline-block;
  width: 100%;
  margin-bottom: 24px;
  vertical-align: top;
}

.product-card {
  background: var(--gradient-surface);
  border: 1px solid rgba(124, 92, 255, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    border-color var(--transition);
}

.product-card:hover {
  transform: translateY(var(--hover-lift));
  box-shadow: var(--hover-shadow-card);
  border-color: rgba(124, 92, 255, 0.22);
}

.product-card-media {
  position: relative;
  display: block;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
  background: var(--bg-muted);
  text-decoration: none;
}

.product-card-media img {
  display: block;
  width: 100%;
  height: var(--product-thumb-height);
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  padding: 16px;
  box-sizing: border-box;
  transition: transform 0.3s ease;
}

.product-card-media img.is-img-fallback,
.product-main-image img.is-img-fallback {
  max-width: 72%;
  max-height: 72%;
  opacity: 0.45;
}

.product-card:hover .product-card-media img {
  transform: scale(1.05);
}

.product-card:hover .product-card-media {
  background: var(--accent-soft);
}

.product-card:hover .product-card-title a {
  color: var(--accent-dark);
}

.product-card-overlay {
  display: none;
}

.product-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.product-card-title {
  margin: 0;
  min-height: calc(0.95rem * 1.4 * 5);
  font-size: 0.95rem;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

.product-card-title a {
  color: var(--card-title-color);
  transition: color var(--transition);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  min-height: calc(0.95rem * 1.4 * 5);
}
.product-card-title a:hover { color: var(--accent-dark); }

.product-card-price {
  flex-shrink: 0;
  margin: 0;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.25;
  color: var(--price-color);
  white-space: nowrap;
}

.product-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
}

.product-card-foot .btn-amazon {
  flex-shrink: 0;
  margin: 0;
  align-self: auto;
}

.product-card-label {
  display: block;
  margin: 0 0 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.product-card-seo {
  margin: 0;
  padding: 12px 0 0;
  background: none;
  border: none;
  border-top: 1px solid var(--border);
  border-radius: 0;
}

.product-card-seo-line {
  margin: 0 0 6px;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.55;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

.product-card-seo-line:last-child {
  margin-bottom: 0;
}

.product-card-seo-text {
  min-height: calc(0.8rem * 1.55 * 5);
  max-height: calc(0.8rem * 1.55 * 5);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  text-overflow: ellipsis;
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--text-muted);
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

.product-card-seo-text .product-card-seo-line {
  margin: 0;
  display: inline;
  font-size: inherit;
  line-height: inherit;
  font-weight: 400;
  color: inherit;
}

.product-card-seo-text .product-card-seo-line + .product-card-seo-line::before {
  content: ' ';
}

/* Page hero */
.page-hero {
  padding: 48px 0 32px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-light);
}

.page-hero--art {
  position: relative;
  overflow: hidden;
  min-height: clamp(370px, 46vh, 450px);
  background-color: #3b3270;
  border-bottom: none;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.page-hero-bg-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 44%;
}

.page-hero--art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(59, 50, 112, 0.72) 0%,
    rgba(59, 50, 112, 0.4) 36%,
    rgba(59, 50, 112, 0.1) 58%,
    rgba(59, 50, 112, 0) 80%
  );
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  text-align: left;
}

.page-hero--art .page-hero-inner {
  width: min(58%, 680px);
  max-width: 680px;
  margin-left: max(20px, calc((100% - min(1200px, calc(100% - 40px))) / 2));
  margin-right: auto;
}

.page-hero--art .container.page-hero-inner {
  width: var(--layout-width);
  max-width: var(--layout-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 5px;
}

.page-hero--art .breadcrumb {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.78);
  justify-content: flex-start;
}

.page-hero--art .breadcrumb a {
  color: rgba(255, 255, 255, 0.78);
}

.page-hero--art .breadcrumb a:hover {
  color: #fff;
}

.page-hero--art h1 {
  color: #fff;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}

.page-hero--art .page-meta {
  width: 100%;
  max-width: min(720px, 100%);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.72;
  text-align: left;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.28);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin: 12px 0 8px;
  font-weight: 600;
}

.page-meta {
  color: var(--text-muted);
  margin: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.breadcrumb,
.page-hero h1,
.page-hero-product h1 {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.page-hero-sm {
  padding: 36px 0 28px;
}

.section.list-section {
  padding: 32px 0 32px;
}

.category-intro {
  margin: 0 0 32px;
  padding: 22px 26px;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--accent);
}

.category-intro p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent-dark); }

/* Pagination */
.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  padding: 14px 18px;
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.page-num {
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0 6px;
  background: #fff;
  transition:
    transform 0.2s ease,
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

.page-num:hover {
  transform: translateY(-1px);
  border-color: rgba(124, 92, 255, 0.35);
  background: var(--accent-soft);
  color: var(--accent-dark);
  box-shadow: 0 4px 12px rgba(124, 92, 255, 0.12);
}

.page-num.is-active {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(124, 92, 255, 0.32);
  transform: none;
  cursor: default;
  pointer-events: none;
}

.page-btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(124, 92, 255, 0.22);
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0 18px;
  background: #fff;
  transition:
    transform 0.2s ease,
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

.page-btn:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-dark);
  box-shadow: 0 4px 14px rgba(124, 92, 255, 0.14);
}

/* Product detail */
.product-detail {
  display: grid;
  grid-template-columns: minmax(260px, min(500px, 42vw)) minmax(0, 1fr);
  gap: 36px;
  margin-top: 32px;
  align-items: start;
}

.product-detail-gallery {
  max-width: 100%;
  width: 100%;
}

.product-main-image {
  background: var(--bg-muted);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 20px;
  width: 100%;
  max-width: 100%;
  max-height: min(520px, 62vh);
  aspect-ratio: 1;
  overflow: hidden;
  display: grid;
  place-items: center;
  box-sizing: border-box;
}

.product-main-image img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-detail-info {
  min-width: 0;
}

.product-category-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-dark);
  margin: 0 0 8px;
}

.product-detail-info h1 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 1.95rem);
  line-height: 1.25;
  margin: 0 0 16px;
}

.page-hero-product h1.product-page-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  margin: 12px 0 8px;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 0.4em;
}

.page-hero-product h1 .heading-main {
  display: block;
}

.page-hero-product h1 .heading-sub {
  display: block;
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-muted);
}

.page-hero-product .page-meta-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: min(720px, 100%);
  margin-top: 4px;
}

.page-hero-product .page-meta {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

.page-hero-product .page-meta-disclosure {
  font-size: 0.88rem;
  opacity: 0.92;
}

.page-hero--art.page-hero-product .page-meta {
  width: 100%;
  max-width: none;
  color: rgba(255, 255, 255, 0.9);
  text-align: left;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.28);
}

.page-hero--art.page-hero-product .page-meta-disclosure {
  color: rgba(255, 255, 255, 0.78);
}

.page-hero--art.page-hero-product h1,
.page-hero--art.page-hero-product h1 .heading-main {
  color: #fff;
}

.page-hero--art.page-hero-product h1 .heading-sub {
  color: rgba(255, 255, 255, 0.82);
}

.page-hero.page-hero-sm.page-hero-product {
  padding: 28px 0 12px;
}

.section.product-detail-section {
  padding: 20px 0 32px;
}

.product-detail-section .product-detail {
  margin-top: 16px;
}

.product-detail-section .list-related-tags.panel {
  margin-top: 32px;
}

.product-detail-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin-bottom: 16px;
}

.product-detail-price {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--price-color);
  margin: 0;
}

.product-price-note {
  margin: 0;
  padding: 8px 12px;
  font-size: clamp(0.68rem, 1.1vw, 0.78rem);
  line-height: 1.35;
  color: var(--text-muted);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  white-space: normal;
  flex: 1 1 220px;
  min-width: 0;
  max-width: 100%;
}

.product-detail-seo {
  margin: 0 0 20px;
  padding: 16px 18px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.product-detail-seo-line {
  margin: 0 0 10px;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

.product-detail-seo-foot {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}

.product-detail-buy-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.product-detail-buy-standalone {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.product-amazon-disclosure {
  margin: 14px 0 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.panel {
  margin-top: 40px;
  padding: 28px;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.panel h2 {
  font-family: var(--font-display);
  margin: 0 0 16px;
  font-size: 1.45rem;
  font-weight: 600;
}

.product-review .review-cards {
  gap: 0;
}

.product-review .review-card {
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  transition: none;
}

.product-review .review-card:hover {
  transform: none;
  box-shadow: none;
}

.product-review .review-card-text {
  text-indent: 2em;
  padding-bottom: 1.25em;
}

.product-review .review-card:last-child .review-card-text {
  padding-bottom: 0;
}

.review-cards {
  display: grid;
  gap: 16px;
}

.review-card {
  padding: 20px 22px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--hover-shadow-soft);
}

.review-card-text {
  margin: 0;
  color: var(--text);
  line-height: 1.75;
  text-align: left;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.review-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-card-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-soft), #fff5f8);
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 1rem;
  line-height: 40px;
  text-align: center;
}

.review-card-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.review-card-title {
  font-size: 0.95rem;
  color: var(--text);
}

.review-card-subtitle {
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--text-muted);
}

.list-related-tags {
  margin-top: 32px;
  margin-bottom: 0;
}

.product-detail-section .random-product.panel + .related-products-block.list-related-tags {
  margin-top: 24px;
}

.product-detail-section .related-products-block.panel {
  margin-top: 28px;
  padding: 22px 24px 20px;
}

.product-detail-section .related-products-block + .product-nav.panel,
.product-detail-section .related-products-block + .random-product.panel {
  margin-top: 24px;
}

.product-detail-section .product-review.panel + .related-products-block.panel {
  margin-top: 24px;
}

.related-products-block {
  padding: 24px 26px 22px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.related-products-head {
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.related-products-head h2 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text);
}

.related-products-desc {
  margin: 0;
  max-width: 52ch;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.price-compare-block h2 {
  margin-bottom: 6px;
}

.price-compare-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 4px;
}

.price-compare-head-text {
  flex: 1;
  min-width: 0;
}

.price-compare-head .related-products-desc {
  max-width: none;
}

.price-compare-refresh {
  flex-shrink: 0;
  margin-top: 0;
  white-space: nowrap;
}

.price-compare-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.price-compare-actions-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.price-compare-view-more {
  white-space: nowrap;
}

.price-compare-page-section {
  padding-top: 28px;
}

.price-compare-page-back {
  margin: 0 0 24px;
  font-size: 0.9rem;
}

.price-compare-page-back a {
  color: var(--accent-dark);
  font-weight: 600;
}

.price-compare-list-full {
  margin-top: 0;
}

.page-hero--art .page-meta-lower {
  margin-top: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.price-compare-batch-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.price-compare-list {
  margin-top: 0;
}

.price-compare-block .related-products-desc {
  margin-top: -2px;
  margin-bottom: 18px;
}

.price-compare-head + .random-product-list {
  margin-top: 0;
}

.price-compare-head .related-products-desc {
  margin-bottom: 16px;
}

.price-compare-empty {
  margin: 0;
  padding: 8px 0 4px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

/* Homepage: show first 6 rows of tag links only (clip overflow, not display:none) */
.featured-section .related-products-grid {
  --related-tag-row-height: calc(28px + 2px + 2 * 0.84rem * 1.45);
  max-height: calc(var(--related-tag-row-height) * 6 + 10px * 5 + 12px);
  overflow: hidden;
  padding: 6px 0 8px;
  margin: -6px 0 -8px;
}

.related-products-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 100%;
  padding: 14px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition:
    transform 0.26s cubic-bezier(0.22, 1, 0.36, 1),
    border-color var(--transition),
    box-shadow 0.26s ease,
    color var(--transition),
    background var(--transition);
}

.related-products-item:hover {
  transform: translateY(-3px);
  background: var(--bg-soft);
  box-shadow: var(--hover-shadow-soft);
  color: var(--accent-dark);
}

.featured-section .related-products-item:hover {
  transform: translateY(-2px);
}

.related-products-item-text {
  flex: 1;
  min-width: 0;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.related-products-item-arrow {
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.65;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.related-products-item:hover .related-products-item-arrow {
  opacity: 1;
  transform: translateX(3px);
}

.product-tags-label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.product-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}

.product-tag-link {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  transition:
    transform 0.22s ease,
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.product-tag-link:hover {
  transform: translateY(-2px);
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: var(--hover-shadow-soft);
}

.page-meta-sub {
  margin: 6px 0 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.page-hero-topic .topic-eyebrow {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.page-hero-topic h1 {
  max-width: 900px;
}

.topic-section {
  padding-top: 8px;
}

/* Tag topic: matched title keywords */
.topic-kw-hl,
mark.topic-kw-hl {
  color: var(--accent-dark);
  background: var(--accent-soft);
  padding: 0 3px;
  border-radius: 3px;
  font-weight: 600;
  font-style: normal;
}

.product-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.product-nav-item span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.product-nav-item a {
  display: inline-block;
  transition: color var(--transition), transform 0.22s ease;
}

.product-nav-item a:hover {
  color: var(--accent-dark);
  transform: translateX(3px);
}

.product-nav-item-right a:hover {
  transform: translateX(-3px);
}

.product-nav-item-right { text-align: right; }

.random-product-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.random-product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease;
}

.random-product-card:hover {
  transform: translateY(var(--hover-lift));
  box-shadow: var(--hover-shadow-card);
}

.random-product-card-media {
  display: block;
  margin-bottom: 12px;
  border-radius: 10px;
  overflow: hidden;
  /* border: 1px solid var(--border); */
  background: #fff;
  transition: background 0.28s ease;
}

.random-product-card:hover .random-product-card-media {
  background: var(--accent-soft);
}

.random-product-card-media img {
  width: 100%;
  height: var(--product-thumb-height);
  object-fit: contain;
  padding: 10px;
  display: block;
  box-sizing: border-box;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.random-product-card:hover .random-product-card-media img {
  transform: scale(1.04);
}

.random-product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.random-product-card-title {
  margin: 0;
  min-height: calc(0.86rem * 1.38 * 4);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.38;
}

.random-product-card-title a {
  transition: color var(--transition);
  color: var(--card-title-color);
  text-decoration: none;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  min-height: calc(0.86rem * 1.38 * 4);
}

.random-product-card-title a:hover {
  color: var(--accent-dark);
}

.random-product-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}

.random-product-card-price {
  flex-shrink: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--price-color);
  line-height: 1.25;
  white-space: nowrap;
}

.random-product-card-foot .btn-amazon {
  flex-shrink: 0;
  margin: 0;
  padding: 8px 12px;
  font-size: 0.78rem;
  white-space: nowrap;
}

/* Trust */
/* Homepage: tighter vertical rhythm below Today's Deals */
.featured-section {
  padding-bottom: 24px;
}

.trust-section {
  padding-top: 24px;
  padding-bottom: 24px;
}

body:has(.trust-section) .site-footer {
  margin-top: 16px;
  padding-top: 40px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.trust-item {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease;
}

.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--hover-shadow-soft);
}

.trust-item:hover h3 {
  color: var(--accent-dark);
}

.trust-item h3 {
  transition: color var(--transition);
}

.trust-item h3 {
  font-family: var(--font-display);
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 600;
}

.trust-item p { margin: 0; color: var(--text-muted); font-size: 0.92rem; line-height: 1.65; }

.empty-state {
  text-align: center;
  color: var(--text-muted);
  padding: 48px 0;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #3b3270 0%, #2e2a3a 100%);
  color: rgba(245, 243, 255, 0.86);
  padding: 56px 0 28px;
  margin-top: 48px;
  border-top: 1px solid rgba(167, 139, 250, 0.35);
}

.footer-inner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #fff;
}

.footer-brand p {
  color: #a1a1aa;
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 8px 0 0;
}

.footer-note,
.footer-about {
  font-size: 0.82rem;
  line-height: 1.65;
  color: #a1a1aa;
}

.footer-about { margin-top: 12px; }

.footer-links h4 {
  color: #fff;
  margin: 0 0 14px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li { margin-bottom: 8px; }

.footer-links a {
  color: #a1a1aa;
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 0.82rem;
  opacity: 0.85;
  text-align: center;
}

.footer-affiliate {
  margin: 0 0 12px;
  font-size: clamp(0.68rem, 1.05vw, 0.8rem);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom > span + span {
  display: block;
  margin-top: 10px;
  color: #a1a1aa;
}

.footer-bottom > span + span a {
  color: inherit;
  text-decoration: none;
}

.footer-bottom > span + span a:hover {
  color: #fff;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: revealUp 0.7s ease forwards;
}

@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1024px) {
  .product-grid-4,
  .product-grid-3 { column-count: 2; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }

  .random-product-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --product-thumb-height: 224px;
    --layout-gutter: 12px;
  }

  .container,
  .header-inner {
    width: var(--layout-width);
  }

  .section { padding: 48px 0; }
  .featured-section { padding-bottom: 20px; }
  .trust-section { padding-top: 20px; padding-bottom: 20px; }
  body:has(.trust-section) .site-footer { margin-top: 12px; padding-top: 36px; }
  .hero { padding: 56px 0 64px; }
  .page-hero { padding: 28px 0 20px; }
  .page-hero-sm { padding: 24px 0 16px; }
  .page-hero--art {
    min-height: 350px;
    background-size: cover;
    background-position: 68% 20%;
  }
  .page-hero--art .container.page-hero-inner {
    width: var(--layout-width);
    max-width: var(--layout-width);
    margin-left: auto;
    margin-right: auto;
  }
  .page-hero--art .page-hero-bg-art {
    object-position: 48% 42%;
  }
  .page-hero--art::before {
    background: linear-gradient(
      180deg,
      rgba(59, 50, 112, 0.88) 0%,
      rgba(59, 50, 112, 0.58) 55%,
      rgba(59, 50, 112, 0.24) 100%
    );
  }
  .page-hero h1 { font-size: clamp(1.55rem, 5.5vw, 2.1rem); }
  .page-hero-product h1.product-page-heading { font-size: clamp(1.45rem, 5vw, 2rem); }

  .nav-toggle { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 16px 20px 20px;
    box-shadow: var(--shadow);
    max-height: min(70vh, 480px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .main-nav.is-open { display: flex; }
  .main-nav { flex-wrap: wrap; gap: 10px 14px; }
  .nav-link,
  .nav-menu-trigger,
  .nav-dropdown-btn,
  .nav-dropdown-item {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-panel {
    position: static;
    margin-top: 8px;
    min-width: 0;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 12px;
    display: none;
  }
  .nav-dropdown-panel::before { display: none; }
  .nav-dropdown.is-open .nav-dropdown-panel,
  .nav-menu-item.is-open .nav-dropdown-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 8px;
  }
  .nav-dropdown:hover .nav-dropdown-panel { display: none; }
  .nav-dropdown.is-open:hover .nav-dropdown-panel,
  .nav-menu-item.is-open:hover .nav-dropdown-panel { display: grid; }
  .product-grid-4,
  .product-grid-3 { column-count: 2; }
  .product-detail { grid-template-columns: 1fr; }

  .product-main-image {
    max-height: min(440px, 54vh);
    padding: 12px;
  }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .product-nav { grid-template-columns: 1fr; }
  .product-nav-item-right { text-align: left; }
  .random-product-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .site-search {
    padding: 20px 0 24px;
  }

  .site-search-inner {
    flex-wrap: wrap;
    border-radius: 16px;
    padding: 10px 10px 10px 14px;
  }

  .site-search-input {
    width: 100%;
    flex: 1 1 100%;
    padding: 8px 4px 10px;
  }

  .site-search-submit {
    width: 100%;
    margin-top: 4px;
    padding: 12px 20px;
  }

  .search-sort-bar,
  .list-sort-bar,
  .product-sort-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .product-sort-bar-main {
    width: 100%;
  }

  .search-sort-options,
  .product-sort-options {
    width: 100%;
  }

  .search-sort-btn,
  .product-sort-btn {
    flex: 1 1 auto;
    justify-content: center;
  }

  .product-price-range {
    width: 100%;
  }

  .product-price-range-input {
    flex: 1 1 72px;
    max-width: 110px;
  }

  .random-product-card-foot {
    flex-wrap: wrap;
  }

  .product-detail-price-row {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .product-price-note {
    white-space: normal;
    flex: 1 1 100%;
  }

  .footer-bottom {
    text-align: left;
  }

  .footer-affiliate {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .related-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .related-products-block {
    padding: 22px 18px 18px;
  }

  .price-compare-head {
    flex-direction: column;
    align-items: stretch;
  }

  .price-compare-actions {
    flex-direction: column;
    align-items: stretch;
    align-self: stretch;
  }

  .price-compare-actions-btns {
    justify-content: stretch;
  }

  .price-compare-actions-btns .btn {
    flex: 1 1 auto;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  :root {
    --layout-gutter: 10px;
  }

  .container,
  .header-inner {
    width: var(--layout-width);
  }

  .product-grid-4,
  .product-grid-3 { column-count: 1; }
  .category-grid { grid-template-columns: 1fr; }
  .brand-text small { display: none; }
  .brand-text strong { font-size: 1.12rem; }
  .brand-mark { width: 38px; height: 38px; }
  .hero-title { font-size: clamp(1.85rem, 8vw, 2.4rem); }
  .section-head { margin-bottom: 32px; }

  .related-products-grid {
    grid-template-columns: 1fr;
  }

  .random-product-list {
    grid-template-columns: 1fr;
  }

  .pagination {
    margin-top: 32px;
    padding: 12px 10px;
    gap: 6px;
  }

  .page-num {
    min-width: 38px;
    height: 38px;
    font-size: 0.85rem;
  }

  .page-btn {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.82rem;
  }
}

@media (hover: none) and (pointer: coarse) {
  .category-card:hover,
  .product-card:hover,
  .related-products-item:hover,
  .random-product-card:hover,
  .trust-item:hover,
  .review-card:hover,
  .page-num:not(.is-active):hover,
  .page-btn:hover,
  .product-tag-link:hover {
    transform: none;
  }

  .product-card:hover,
  .random-product-card:hover {
    box-shadow: none;
  }

  .btn:hover { transform: none; }
}

/* ── Lifestyle / home marketplace polish ── */
.site-header {
  border-bottom-color: rgba(124, 92, 255, 0.1);
  background: rgba(250, 249, 252, 0.94);
}

.brand-mark {
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(124, 92, 255, 0.26);
}

.nav-menu-item .nav-menu-trigger:hover,
.nav-menu-item.is-open .nav-menu-trigger {
  color: var(--accent-dark);
  background: var(--accent-soft);
}

.nav-menu-item .nav-dropdown-panel {
  background: linear-gradient(180deg, #ffffff 0%, #f6f3fb 100%);
  border-color: rgba(124, 92, 255, 0.14);
  box-shadow: 0 18px 40px rgba(41, 37, 36, 0.08);
}

.nav-menu-item .nav-dropdown-item {
  border-radius: 10px;
  transition: background var(--transition), color var(--transition);
}

.nav-menu-item .nav-dropdown-item:hover {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.panel {
  border-radius: var(--radius-xl);
  border-color: rgba(124, 92, 255, 0.12);
  box-shadow: var(--shadow-sm);
  background: var(--gradient-surface);
}

.panel h2 {
  letter-spacing: -0.02em;
}

.trust-item {
  border: 1px solid rgba(124, 92, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  background: var(--gradient-surface);
  position: relative;
  overflow: hidden;
}

.trust-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-warm));
}

.trust-item h3 {
  color: var(--accent-dark);
}

.related-products-item {
  border-color: rgba(124, 92, 255, 0.14);
  background: linear-gradient(180deg, #fff 0%, var(--accent-soft) 100%);
  border-radius: var(--radius-lg);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.related-products-item:hover {
  border-color: rgba(124, 92, 255, 0.32);
  box-shadow: 0 10px 28px rgba(124, 92, 255, 0.14);
  transform: translateY(-2px);
}

.site-footer {
  background:
    radial-gradient(circle at 20% 0%, rgba(167, 139, 250, 0.28), transparent 42%),
    radial-gradient(circle at 80% 100%, rgba(244, 114, 182, 0.16), transparent 38%),
    linear-gradient(180deg, #3b3270 0%, #2e2a3a 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.65), rgba(244, 114, 182, 0.5), transparent);
}

.footer-brand strong {
  letter-spacing: -0.02em;
}

.footer-links h4 {
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.08em;
}

.site-footer a {
  color: #a1a1aa;
  transition: color var(--transition), transform var(--transition);
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.featured-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(124, 92, 255, 0.06), transparent 55%),
    var(--bg);
}

.page-hero--art::before {
  opacity: 0.92;
}

.product-card-foot .btn-amazon {
  min-width: 132px;
}

@media (prefers-reduced-motion: no-preference) {
  .btn-primary,
  .btn-amazon,
  .site-search-submit {
    background-size: 100% 100%;
  }
}
