/* ============================================
   SHOPIFY LANDING PAGE — COMPONENT STYLES
   ============================================ */

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  padding: var(--space-lg) 0;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.nav.is-scrolled {
  padding: var(--space-sm) 0;
  background: var(--bg-glass-strong);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-xl);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: var(--tracking-tight);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--duration-fast) var(--ease-smooth);
  position: relative;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--duration-normal) var(--ease-out-expo);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link.active {
  color: var(--text-primary);
}

/* Hamburger menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  z-index: calc(var(--z-overlay) + 1);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: var(--radius-pill);
  transition: all var(--duration-normal) var(--ease-out-expo);
  transform-origin: center;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg video,
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    hsla(230, 25%, 7%, 0.4) 0%,
    hsla(230, 25%, 7%, 0.7) 50%,
    var(--bg-primary) 100%
  );
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 900px;
  padding: var(--space-2xl);
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.hero-title {
  margin-bottom: var(--space-xl);
  line-height: var(--leading-tight);
}

.hero-description {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 55ch;
  margin-inline: auto;
  margin-bottom: var(--space-2xl);
  line-height: var(--leading-relaxed);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-tertiary);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
}

.hero-scroll-indicator .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   FEATURE CARDS SECTION
   ============================================ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.feature-card {
  padding: var(--space-2xl);
  text-align: center;
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: hsla(256, 67%, 59%, 0.1);
  border-radius: var(--radius-lg);
  border: 1px solid hsla(256, 67%, 59%, 0.2);
  transition: all var(--duration-normal) var(--ease-out-expo);
}

.card:hover .feature-icon {
  background: hsla(256, 67%, 59%, 0.2);
  transform: scale(1.05);
  box-shadow: var(--shadow-glow);
}

.feature-card h4 {
  margin-bottom: var(--space-md);
  font-size: var(--text-xl);
}

.feature-card p {
  margin-inline: auto;
}

/* ============================================
   PRODUCT CARD
   ============================================ */

.product-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: all var(--duration-normal) var(--ease-out-expo);
}

.product-card:hover {
  transform: perspective(800px) rotateY(-3deg) rotateX(2deg) translateY(-8px);
  box-shadow: 15px 15px 40px hsla(0, 0%, 0%, 0.4), 0 0 30px var(--primary-glow);
  border-color: var(--primary-dark);
}

.product-card-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-tertiary);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out-expo);
}

.product-card:hover .product-card-image img {
  transform: scale(1.08);
}

.product-card-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
}

.product-card-quick {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--duration-normal) var(--ease-out-expo);
}

.product-card:hover .product-card-quick {
  opacity: 1;
  transform: translateY(0);
}

.product-card-body {
  padding: var(--space-lg);
}

.product-card-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--text-primary);
}

.product-card-price {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--accent-light);
}

.product-card-price .original {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  text-decoration: line-through;
  font-weight: 400;
  margin-left: var(--space-sm);
}

/* ============================================
   CAROUSEL / SLIDER
   ============================================ */

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.carousel-track {
  display: flex;
  transition: transform var(--duration-slow) var(--ease-out-expo);
  cursor: grab;
}

.carousel-track:active {
  cursor: grabbing;
}

.carousel-slide {
  flex: 0 0 100%;
  min-width: 0;
}

.carousel-nav {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-sm);
  z-index: 2;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: hsla(0, 0%, 100%, 0.3);
  border: none;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-smooth);
  padding: 0;
}

.carousel-dot.is-active {
  width: 24px;
  border-radius: var(--radius-pill);
  background: var(--primary-light);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--bg-glass-strong);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  cursor: pointer;
  z-index: 2;
  transition: all var(--duration-normal) var(--ease-smooth);
  font-size: 1.2rem;
  backdrop-filter: blur(10px);
}

.carousel-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.carousel-arrow-prev { left: var(--space-md); }
.carousel-arrow-next { right: var(--space-md); }

/* ============================================
   ACCORDION / FAQ
   ============================================ */

.accordion-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  overflow: hidden;
  transition: border-color var(--duration-normal) var(--ease-smooth);
}

.accordion-item.is-open {
  border-color: var(--border-medium);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  background: var(--bg-card);
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: background var(--duration-normal) var(--ease-smooth);
}

.accordion-header:hover {
  background: var(--bg-card-hover);
}

.accordion-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--duration-normal) var(--ease-out-expo);
  color: var(--primary-light);
}

.accordion-item.is-open .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-out-expo),
              padding var(--duration-slow) var(--ease-out-expo);
}

.accordion-item.is-open .accordion-body {
  max-height: 500px;
}

.accordion-content {
  padding: 0 var(--space-xl) var(--space-lg);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

/* ============================================
   TESTIMONIAL
   ============================================ */

.testimonial-card {
  padding: var(--space-2xl);
  text-align: center;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
  border: 2px solid var(--border-medium);
}

.testimonial-text {
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  max-width: 50ch;
  margin-inline: auto;
  line-height: var(--leading-relaxed);
}

.testimonial-name {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.testimonial-role {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: var(--space-lg);
  color: var(--warm);
  font-size: 1.2rem;
}

/* ============================================
   STATS / COUNTER
   ============================================ */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-xl);
  text-align: center;
}

.stat-item {
  padding: var(--space-xl);
}

.stat-number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--space-sm);
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  padding: var(--space-4xl) 0 var(--space-xl);
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .nav-logo {
  display: inline-block;
  margin-bottom: var(--space-lg);
}

.footer-brand p {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  line-height: var(--leading-relaxed);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  margin-bottom: var(--space-lg);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-link {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  transition: color var(--duration-fast) var(--ease-smooth);
}

.footer-link:hover {
  color: var(--text-primary);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.footer-social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 1.1rem;
  transition: all var(--duration-normal) var(--ease-out-expo);
}

.footer-social-link:hover {
  border-color: var(--primary);
  color: var(--primary-light);
  background: hsla(256, 67%, 59%, 0.1);
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border-subtle);
  font-size: var(--text-xs);
  color: var(--text-tertiary);
}

/* ============================================
   AUDIO PLAYER
   ============================================ */

.audio-control {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  z-index: var(--z-sticky);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--bg-glass-strong);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out-expo);
  backdrop-filter: blur(20px);
}

.audio-control:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
  transform: scale(1.1);
}

.audio-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
}

.audio-bar {
  width: 3px;
  background: var(--primary-light);
  border-radius: var(--radius-pill);
  transition: height 0.2s ease;
}

.audio-control.is-playing .audio-bar:nth-child(1) {
  animation: audio-bar 0.6s ease-in-out infinite alternate;
  animation-delay: 0s;
}
.audio-control.is-playing .audio-bar:nth-child(2) {
  animation: audio-bar 0.6s ease-in-out infinite alternate;
  animation-delay: 0.15s;
}
.audio-control.is-playing .audio-bar:nth-child(3) {
  animation: audio-bar 0.6s ease-in-out infinite alternate;
  animation-delay: 0.3s;
}
.audio-control.is-playing .audio-bar:nth-child(4) {
  animation: audio-bar 0.6s ease-in-out infinite alternate;
  animation-delay: 0.45s;
}

.audio-control:not(.is-playing) .audio-bar {
  height: 4px !important;
}

@keyframes audio-bar {
  0% { height: 4px; }
  100% { height: 18px; }
}

/* ============================================
   NEWSLETTER / SUBSCRIBE FORM
   ============================================ */

.subscribe-form {
  display: flex;
  gap: var(--space-sm);
  max-width: 480px;
}

.subscribe-form .input {
  flex: 1;
  border-radius: var(--radius-pill);
  padding-left: var(--space-xl);
}

.subscribe-form .btn {
  flex-shrink: 0;
}

/* ============================================
   MARQUEE / BRAND TICKER
   ============================================ */

.marquee-container {
  overflow: hidden;
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.marquee-track {
  display: flex;
  gap: var(--space-3xl);
  white-space: nowrap;
}

.marquee-item {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-tertiary);
  opacity: 0.3;
  transition: opacity var(--duration-normal) var(--ease-smooth);
}

.marquee-item:hover {
  opacity: 0.6;
}

.marquee-separator {
  flex-shrink: 0;
  color: var(--primary);
  opacity: 0.5;
}

/* ============================================
   SECTION HEADER
   ============================================ */

.section-header {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: var(--space-3xl);
}

.section-header .label {
  display: inline-block;
  margin-bottom: var(--space-md);
}

.section-header h2 {
  margin-bottom: var(--space-lg);
}

.section-header p {
  margin-inline: auto;
}

/* ============================================
   EDITORIAL LAYOUT ELEMENTS
   ============================================ */

.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.editorial-split--reverse {
  direction: rtl;
}

.editorial-split--reverse > * {
  direction: ltr;
}

.editorial-split--offset {
  grid-template-columns: 2fr 3fr;
}

.editorial-text .script-accent {
  font-size: var(--text-2xl);
  display: block;
  margin-bottom: var(--space-sm);
}

.editorial-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl);
}

.editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out-expo);
}

.editorial-image:hover img {
  transform: scale(1.05);
}

/* ============================================
   BACK TO TOP
   ============================================ */

.back-to-top {
  position: fixed;
  bottom: var(--space-xl);
  right: calc(var(--space-xl) + 60px);
  z-index: var(--z-sticky);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--bg-glass-strong);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 1.2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--duration-normal) var(--ease-out-expo);
  pointer-events: none;
  backdrop-filter: blur(20px);
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  border-color: var(--primary);
  color: var(--primary-light);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}

/* ============================================
   LOADING / SKELETON
   ============================================ */

.skeleton {
  background: linear-gradient(
    90deg,
    var(--bg-tertiary) 25%,
    var(--bg-card-hover) 50%,
    var(--bg-tertiary) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  border-radius: var(--radius-md);
}

/* ============================================
   HERO SPLIT LAYOUT (Product-Centric)
   ============================================ */

.hero-split .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  max-width: var(--container-xl);
  width: 100%;
  text-align: left;
  padding-inline: var(--container-padding);
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero-text .hero-title {
  margin-bottom: var(--space-lg);
}

.hero-text .hero-description {
  margin-inline: 0;
  margin-bottom: var(--space-xl);
}

.hero-text .hero-actions {
  justify-content: flex-start;
}

/* Hero Product Visual */
.hero-product {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-product-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-product-visual {
  position: relative;
  width: 80%;
  aspect-ratio: 1;
  background: radial-gradient(ellipse at center, hsla(256, 40%, 25%, 0.6) 0%, transparent 70%);
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: product-float 6s ease-in-out infinite;
  z-index: 2;
}

.hero-product-visual svg {
  filter: drop-shadow(0 0 30px var(--primary-glow));
}

/* Glow base under product */
.hero-product-glow {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 30px;
  background: radial-gradient(ellipse, var(--primary-glow) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
  animation: glow-breathe 4s ease-in-out infinite;
  z-index: 1;
}

/* Orbit rings around product */
.hero-product-ring {
  position: absolute;
  border: 1px solid hsla(256, 67%, 59%, 0.12);
  border-radius: var(--radius-full);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-product-ring--inner {
  width: 85%;
  height: 85%;
  animation: ring-rotate 20s linear infinite;
  border-style: dashed;
  border-color: hsla(256, 67%, 59%, 0.1);
}

.hero-product-ring--outer {
  width: 105%;
  height: 105%;
  animation: ring-rotate 30s linear infinite reverse;
}

/* Floating spec tags on orbit */
.hero-product-tag {
  position: absolute;
  background: var(--bg-glass-strong);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  z-index: 3;
  animation: product-float 5s ease-in-out infinite;
}

.hero-product-tag--1 {
  top: 8%;
  right: -5%;
  animation-delay: 0.5s;
}

.hero-product-tag--2 {
  bottom: 15%;
  left: -8%;
  animation-delay: 1.5s;
}

.hero-product-tag--3 {
  top: 45%;
  right: -12%;
  animation-delay: 2.5s;
}

/* ============================================
   PRODUCT SPOTLIGHT SECTION
   ============================================ */

.product-spotlight {
  position: relative;
  padding-block: var(--space-section);
  overflow: hidden;
  background: var(--bg-secondary);
}

.product-spotlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.product-spotlight-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.product-spotlight-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: radial-gradient(ellipse at center, hsla(165, 40%, 20%, 0.4) 0%, transparent 70%);
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 1s var(--ease-out-expo);
}

.product-spotlight-image:hover {
  transform: rotateY(-5deg) rotateX(3deg);
}

.product-spotlight-image svg {
  filter: drop-shadow(0 0 40px var(--accent-glow));
}

/* Spotlight glow ring */
.product-spotlight-ring {
  position: absolute;
  width: 120%;
  height: 120%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px dashed hsla(165, 80%, 43%, 0.12);
  border-radius: var(--radius-full);
  animation: ring-rotate 25s linear infinite;
  pointer-events: none;
}

.product-spotlight-info {
  position: relative;
}

.product-spotlight-name {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  margin-bottom: var(--space-md);
  line-height: var(--leading-tight);
}

.product-spotlight-desc {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-2xl);
  max-width: 45ch;
}

.product-spotlight-price {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  margin-bottom: var(--space-xl);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.product-spotlight-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.product-spotlight-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.product-spotlight-feature-icon {
  color: var(--accent-light);
}
