/** Shopify CDN: Minification failed

Line 2359:0 Unexpected "}"

**/
/* ============================================================
   THELUNELLES — Premium Shopify Theme
   Version: 1.0.0
   ============================================================ */

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1.5rem;
  line-height: 1.7;
  color: var(--color-foreground);
  background: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition-base); }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1, .h1 { font-size: clamp(3.6rem, 5vw, 6.4rem); }
h2, .h2 { font-size: clamp(2.8rem, 3.5vw, 4.8rem); }
h3, .h3 { font-size: clamp(2.2rem, 2.5vw, 3.2rem); }
h4, .h4 { font-size: clamp(1.8rem, 2vw, 2.4rem); }

.overline {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */

.page-width {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.page-width--narrow { max-width: 900px; margin: 0 auto; padding: 0 var(--gutter); }
.page-width--wide   { max-width: 1600px; margin: 0 auto; padding: 0 var(--gutter); }

.grid {
  display: grid;
  gap: 2rem;
}

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

@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
}

.flex { display: flex; }
.flex--center { align-items: center; justify-content: center; }
.flex--between { align-items: center; justify-content: space-between; }
.flex--gap { gap: 1.5rem; }

.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px; height: 1px;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-to-content-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--color-foreground);
  color: var(--color-background);
  padding: 1rem 2rem;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-to-content-link:focus { top: 1rem; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */

.announcement-bar {
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  padding: 1rem var(--gutter);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 200;
}

.announcement-bar a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.announcement-bar--slider {
  overflow: hidden;
}

.announcement-bar__slides {
  display: flex;
  animation: slide-messages 10s infinite;
}

@keyframes slide-messages {
  0%, 30%  { transform: translateX(0); }
  33%, 63% { transform: translateX(-100%); }
  66%, 96% { transform: translateX(-200%); }
  100%     { transform: translateX(0); }
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base);
}

.site-header.scrolled { box-shadow: var(--shadow-md); }

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 7rem;
  gap: 1rem;
}

.site-header__logo {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-foreground);
  text-align: center;
  justify-self: center;
}

.site-header__logo img {
  height: 4rem;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
}

.site-nav__item { position: relative; }

.site-nav__link {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.8rem 1.2rem;
  display: block;
  position: relative;
}

.site-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0.4rem;
  left: 1.2rem;
  right: 1.2rem;
  height: 1px;
  background: var(--color-foreground);
  transform: scaleX(0);
  transition: transform var(--transition-base);
  transform-origin: left;
}

.site-nav__link:hover::after,
.site-nav__item.active .site-nav__link::after { transform: scaleX(1); }

/* Dropdown */
.site-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  border: 1px solid var(--color-border);
  min-width: 18rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  list-style: none;
  padding: 0.8rem 0;
}

.site-nav__item:hover .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.site-nav__dropdown-link {
  display: block;
  padding: 0.9rem 1.8rem;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  transition: background var(--transition-base);
}

.site-nav__dropdown-link:hover { background: #f8f6f2; }

/* Header icons */
.header-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem;
}

.header-icon-btn {
  width: 4.2rem;
  height: 4.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition-base);
  position: relative;
}

.header-icon-btn:hover { background: #f4f1ec; }

.header-icon-btn svg { width: 2rem; height: 2rem; }

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--color-accent);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  width: 4.2rem;
  height: 4.2rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-toggle span {
  display: block;
  width: 2.4rem;
  height: 1.5px;
  background: var(--color-foreground);
  transition: all var(--transition-base);
}

.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #fff;
  z-index: 300;
  transform: translateX(-100%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
  padding: 8rem 3rem 4rem;
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav__close {
  position: absolute;
  top: 2rem; right: 2rem;
  width: 4rem; height: 4rem;
  display: flex; align-items: center; justify-content: center;
}

.mobile-nav__list { list-style: none; }

.mobile-nav__link {
  display: block;
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 400;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--color-border);
}

@media (max-width: 900px) {
  .site-nav, .header-search { display: none; }
  .mobile-menu-toggle { display: flex; }
  .site-header__inner { grid-template-columns: 4.2rem 1fr 4.2rem; }
  .site-header__logo { font-size: 2.2rem; }
}

/* ============================================================
   HERO BANNER
   ============================================================ */

.hero {
  position: relative;
  overflow: hidden;
}

.hero--fullscreen { height: 100vh; min-height: 60rem; }
.hero--large { height: 80vh; min-height: 55rem; }
.hero--medium { height: 65vh; min-height: 45rem; }

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img,
.hero__media video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.2) 60%,
    rgba(0,0,0,0.05) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 var(--gutter);
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero__content--center { justify-content: center; text-align: center; }
.hero__content--right  { justify-content: flex-end; text-align: right; }

.hero__text-block { max-width: 65rem; }

.hero__overline {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
  display: block;
}

.hero__heading {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 7vw, 8.8rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.hero__heading em { font-style: italic; }

.hero__subheading {
  font-size: 1.7rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 3.5rem;
  line-height: 1.6;
  font-weight: 300;
  max-width: 50rem;
}

.hero__buttons { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.hero__content--center .hero__buttons { justify-content: center; }
.hero__content--right .hero__buttons  { justify-content: flex-end; }

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero__scroll svg { width: 2rem; height: 2rem; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.4rem 3.2rem;
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-101%);
  transition: transform var(--transition-base);
}

.btn:hover::before { transform: translateX(0); }

.btn--primary {
  background: var(--color-button);
  color: var(--color-button-text);
  border-color: var(--color-button);
}

.btn--primary:hover {
  background: transparent;
  color: var(--color-button);
}

.btn--outline {
  background: transparent;
  border-color: currentColor;
  color: var(--color-foreground);
}

.btn--outline:hover {
  background: var(--color-foreground);
  color: var(--color-background);
}

.btn--white {
  background: #fff;
  color: var(--color-foreground);
  border-color: #fff;
}

.btn--white:hover {
  background: transparent;
  color: #fff;
}

.btn--white-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}

.btn--white-outline:hover {
  background: rgba(255,255,255,0.15);
}

.btn--full { width: 100%; }
.btn--sm { padding: 1rem 2rem; font-size: 1.2rem; }
.btn--lg { padding: 1.8rem 4rem; font-size: 1.4rem; }

/* ============================================================
   SECTION TITLES
   ============================================================ */

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header--left { text-align: left; }

.section-header .overline { margin-bottom: 1.2rem; display: block; }
.section-header h2 { margin-bottom: 1.5rem; }
.section-header p { font-size: 1.7rem; color: #6b6b6b; max-width: 60rem; margin: 0 auto; }
.section-header--left p { margin-left: 0; }

/* Section spacing */
.section { padding: var(--spacing-xl) 0; }
.section--sm { padding: var(--spacing-lg) 0; }
.section--xs { padding: var(--spacing-md) 0; }

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

.product-card {
  position: relative;
  group: true;
}

.product-card__media {
  position: relative;
  overflow: hidden;
  background: #f8f6f2;
  aspect-ratio: 3/4;
}

.product-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-card__media img { transform: scale(1.06); }

.product-card__media-secondary {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.product-card__media-secondary img { width: 100%; height: 100%; object-fit: cover; }
.product-card:hover .product-card__media-secondary { opacity: 1; }

.product-card__badges {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 2;
}

.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge--sale { background: var(--color-sale); color: #fff; }
.badge--new  { background: var(--color-foreground); color: var(--color-background); }
.badge--hot  { background: var(--color-accent); color: #fff; }

.product-card__actions {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  transform: translateY(120%);
  transition: transform var(--transition-base);
  opacity: 0;
}

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

.product-card__info {
  padding: 1.6rem 0.2rem 0;
}

.product-card__vendor {
  font-size: 1.1rem;
  color: #888;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.product-card__title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.product-card__title a:hover { color: var(--color-accent); }

.product-card__prices {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.product-card__price { font-size: 1.5rem; font-weight: 500; }
.product-card__price--compare {
  color: #999;
  text-decoration: line-through;
  font-size: 1.3rem;
  font-weight: 400;
}
.product-card__price--sale { color: var(--color-sale); }

/* ============================================================
   FEATURED COLLECTION
   ============================================================ */

.featured-collection {
  background: var(--color-background);
}

.collection-grid {
  display: grid;
  gap: 2.5rem;
}

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

@media (max-width: 1024px) {
  .collection-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .collection-grid--4,
  .collection-grid--3 { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .collection-grid--2 { grid-template-columns: 1fr; }
}

/* ============================================================
   IMAGE WITH TEXT
   ============================================================ */

.image-with-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60rem;
  align-items: stretch;
}

.image-with-text--reversed { direction: rtl; }
.image-with-text--reversed > * { direction: ltr; }

.image-with-text__media {
  position: relative;
  overflow: hidden;
}

.image-with-text__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.image-with-text:hover .image-with-text__media img { transform: scale(1.04); }

.image-with-text__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 7rem;
  background: var(--color-background);
}

.image-with-text__content--accent {
  background: #f8f6f2;
}

.image-with-text__content .overline { margin-bottom: 1.5rem; }
.image-with-text__content h2 { margin-bottom: 2rem; }
.image-with-text__content p {
  font-size: 1.7rem;
  color: #6b6b6b;
  line-height: 1.8;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .image-with-text { grid-template-columns: 1fr; direction: ltr; }
  .image-with-text__media { min-height: 40rem; }
  .image-with-text__content { padding: 4rem 2.5rem; }
}

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

.marquee {
  overflow: hidden;
  background: var(--color-foreground);
  color: #fff;
  padding: 1.6rem 0;
  white-space: nowrap;
}

.marquee__inner {
  display: inline-flex;
  animation: marquee-scroll 25s linear infinite;
}

.marquee__item {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 300;
  font-style: italic;
  padding: 0 3rem;
  display: inline-flex;
  align-items: center;
  gap: 3rem;
}

.marquee__item::after {
  content: '✦';
  font-size: 1.2rem;
  opacity: 0.6;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   COLLECTION SHOWCASE (Large cards)
   ============================================================ */

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

.collection-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/3;
  cursor: pointer;
}

.collection-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.collection-card:hover .collection-card__media img { transform: scale(1.06); }

.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem;
}

.collection-card__title {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: #fff;
  font-weight: 400;
  margin-bottom: 1rem;
}

.collection-card__link {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: gap var(--transition-base);
}

.collection-card:hover .collection-card__link { gap: 1.2rem; }
.collection-card__link svg { width: 1.4rem; height: 1.4rem; }

@media (max-width: 900px) {
  .collection-showcase { grid-template-columns: 1fr 1fr; }
  .collection-showcase .collection-card:last-child { grid-column: 1 / -1; aspect-ratio: 16/9; }
}

@media (max-width: 500px) {
  .collection-showcase { grid-template-columns: 1fr; }
  .collection-showcase .collection-card:last-child { grid-column: auto; aspect-ratio: 2/3; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials {
  background: #f8f6f2;
}

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

.testimonial-card {
  background: #fff;
  padding: 3.5rem;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 8rem;
  color: var(--color-accent);
  opacity: 0.3;
  position: absolute;
  top: 1rem;
  left: 2.5rem;
  line-height: 1;
}

.testimonial-card__stars {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 1.8rem;
  color: #c9a96e;
  font-size: 1.4rem;
}

.testimonial-card__text {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 2rem;
  font-style: italic;
  font-family: var(--font-heading);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.testimonial-card__avatar {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  object-fit: cover;
  background: #e0dbd3;
}

.testimonial-card__name {
  font-size: 1.4rem;
  font-weight: 600;
  display: block;
}

.testimonial-card__location {
  font-size: 1.2rem;
  color: #888;
}

@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FEATURES / USP BAR
   ============================================================ */

.features-bar {
  background: var(--color-background);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.features-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid var(--color-border);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  padding: 2.8rem 3rem;
  border-right: 1px solid var(--color-border);
}

.feature-item:last-child { border-right: none; }

.feature-item__icon {
  width: 4.8rem;
  height: 4.8rem;
  flex-shrink: 0;
  color: var(--color-accent);
}

.feature-item__icon svg { width: 100%; height: 100%; }

.feature-item__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.feature-item__text { font-size: 1.3rem; color: #777; }

@media (max-width: 900px) {
  .features-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-item { border-bottom: 1px solid var(--color-border); }
  .feature-item:nth-child(2) { border-right: none; }
}

@media (max-width: 500px) {
  .features-bar__grid { grid-template-columns: 1fr; }
  .feature-item { border-right: none; }
}

/* ============================================================
   NEWSLETTER
   ============================================================ */

.newsletter {
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  padding: var(--spacing-xl) var(--gutter);
}

.newsletter h2 { color: #fff; margin-bottom: 1.5rem; }
.newsletter p { color: rgba(255,255,255,0.8); font-size: 1.7rem; margin-bottom: 3.5rem; max-width: 55rem; margin-left: auto; margin-right: auto; }

.newsletter-form {
  display: flex;
  max-width: 50rem;
  margin: 0 auto;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.4);
}

.newsletter-form__input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 1.6rem 2rem;
  font-size: 1.5rem;
  color: #fff;
  outline: none;
}

.newsletter-form__input::placeholder { color: rgba(255,255,255,0.5); }

.newsletter-form__btn {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: none;
  padding: 1.6rem 3rem;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition-base);
  border-left: 1px solid rgba(255,255,255,0.2);
}

.newsletter-form__btn:hover { background: rgba(255,255,255,0.25); }

.newsletter__privacy {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 500px) {
  .newsletter-form { flex-direction: column; }
  .newsletter-form__btn { border-left: none; border-top: 1px solid rgba(255,255,255,0.2); }
}

/* ============================================================
   LOOKBOOK / INSTAGRAM GRID
   ============================================================ */

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 30rem);
  gap: 0.6rem;
}

.lookbook-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.lookbook-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.lookbook-item:nth-child(4) { grid-column: span 2; }

.lookbook-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.lookbook-item:hover img { transform: scale(1.06); }

.lookbook-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.4rem;
}

.lookbook-item:hover .lookbook-item__overlay { opacity: 1; }

@media (max-width: 768px) {
  .lookbook-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }
  .lookbook-item { aspect-ratio: 1; }
  .lookbook-item:nth-child(1),
  .lookbook-item:nth-child(4) { grid-column: auto; grid-row: auto; }
}

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

.site-footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.85);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 5rem;
  padding: 7rem var(--gutter) 5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-brand__logo {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  display: block;
}

.footer-brand__desc {
  font-size: 1.5rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
  max-width: 30rem;
}

.footer-social {
  display: flex;
  gap: 1.2rem;
}

.footer-social__link {
  width: 4rem;
  height: 4rem;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  color: rgba(255,255,255,0.7);
}

.footer-social__link:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

.footer-social__link svg { width: 1.8rem; height: 1.8rem; }

.footer-col__heading {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 2rem;
}

.footer-col__list { list-style: none; }

.footer-col__list li { margin-bottom: 1rem; }

.footer-col__list a {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition-base);
}

.footer-col__list a:hover { color: #fff; }

.footer-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.6);
}

.footer-contact__item svg { width: 1.6rem; height: 1.6rem; flex-shrink: 0; margin-top: 0.2rem; }

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 2.5rem var(--gutter);
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-copyright { font-size: 1.3rem; color: rgba(255,255,255,0.4); }

.footer-payments {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.footer-payments img { height: 2.4rem; opacity: 0.6; filter: brightness(10); }

.footer-legal {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition-base);
}

.footer-legal a:hover { color: rgba(255,255,255,0.8); }

@media (max-width: 1024px) {
  .site-footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .site-footer__top { grid-template-columns: 1fr; gap: 3rem; padding-top: 4rem; }
  .site-footer__bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   PRODUCT PAGE
   ============================================================ */

.product-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.product-gallery { position: sticky; top: 8rem; }

.product-gallery__main {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #f8f6f2;
  margin-bottom: 1.5rem;
  cursor: zoom-in;
}

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

.product-gallery__main:hover img { transform: scale(1.04); }

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.product-gallery__thumb {
  aspect-ratio: 1;
  overflow: hidden;
  background: #f8f6f2;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition-base);
}

.product-gallery__thumb.active { border-color: var(--color-foreground); }
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info { padding-top: 1rem; }

.product-info__vendor {
  font-size: 1.2rem;
  color: #888;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.product-info__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 3.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.product-info__prices {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.product-info__price {
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--color-foreground);
}

.product-info__price--compare {
  font-size: 1.8rem;
  color: #999;
  text-decoration: line-through;
}

.product-info__price--sale { color: var(--color-sale); }

.product-info__badge {
  background: var(--color-sale);
  color: #fff;
  padding: 0.3rem 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.product-info__divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 2.5rem 0;
}

.product-info__description {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2.5rem;
}

/* Variants */
.variant-label {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.variant-label span { font-weight: 400; color: #666; }

.variant-options { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }

.variant-option {
  min-width: 4.8rem;
  height: 4.8rem;
  padding: 0 1.5rem;
  border: 1.5px solid var(--color-border);
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.variant-option:hover { border-color: var(--color-foreground); }
.variant-option.active { border-color: var(--color-foreground); background: var(--color-foreground); color: #fff; }
.variant-option.sold-out { opacity: 0.4; cursor: not-allowed; text-decoration: line-through; }

.color-option {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  border: 2px solid transparent;
  outline: 2px solid transparent;
  outline-offset: 2px;
  cursor: pointer;
  transition: all var(--transition-base);
}

.color-option.active { outline-color: var(--color-foreground); }

/* Quantity */
.quantity-selector {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--color-border);
  width: fit-content;
  margin-bottom: 2rem;
}

.quantity-btn {
  width: 4.8rem;
  height: 4.8rem;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-base);
}

.quantity-btn:hover { background: #f4f1ec; }

.quantity-input {
  width: 6rem;
  height: 4.8rem;
  text-align: center;
  border: none;
  border-left: 1.5px solid var(--color-border);
  border-right: 1.5px solid var(--color-border);
  font-size: 1.5rem;
  font-family: var(--font-body);
  outline: none;
}

/* Add to cart */
.product-info__add {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.product-info__add .btn { flex: 1; }

.wishlist-btn {
  width: 5.4rem;
  height: 5.4rem;
  border: 1.5px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.wishlist-btn:hover { background: #f4f1ec; }
.wishlist-btn svg { width: 2rem; height: 2rem; }

/* Accordion */
.accordion { border-top: 1px solid var(--color-border); }

.accordion__item { border-bottom: 1px solid var(--color-border); }

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.8rem 0;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: none;
  cursor: pointer;
}

.accordion__icon {
  width: 1.6rem;
  height: 1.6rem;
  transition: transform var(--transition-base);
}

.accordion__item.open .accordion__icon { transform: rotate(45deg); }

.accordion__content {
  display: none;
  padding-bottom: 1.8rem;
  font-size: 1.5rem;
  color: #555;
  line-height: 1.8;
}

.accordion__item.open .accordion__content { display: block; }

@media (max-width: 900px) {
  .product-page { grid-template-columns: 1fr; gap: 3rem; }
  .product-gallery { position: static; }
}

/* ============================================================
   CART DRAWER
   ============================================================ */

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 500;
  width: 42rem;
  max-width: 100vw;
  pointer-events: none;
}

.cart-drawer[aria-hidden="false"] { pointer-events: auto; }

.cart-drawer__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity var(--transition-slow);
  cursor: pointer;
}

.cart-drawer[aria-hidden="false"] .cart-drawer__overlay { opacity: 1; }

.cart-drawer__inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  box-shadow: -4px 0 40px rgba(0,0,0,0.12);
}

.cart-drawer[aria-hidden="false"] .cart-drawer__inner { transform: translateX(0); }

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 2.5rem;
  border-bottom: 1px solid var(--color-border);
}

.cart-drawer__title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 400;
}

.cart-drawer__close {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-drawer__close svg { width: 2rem; height: 2rem; }

.cart-drawer__content { flex: 1; overflow-y: auto; padding: 2rem 2.5rem; }

.cart-item {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.cart-item__image {
  aspect-ratio: 3/4;
  object-fit: cover;
  background: #f8f6f2;
}

.cart-item__title { font-size: 1.5rem; font-weight: 500; margin-bottom: 0.4rem; }
.cart-item__variant { font-size: 1.3rem; color: #888; margin-bottom: 0.8rem; }
.cart-item__price { font-size: 1.5rem; font-weight: 500; }

.cart-drawer__footer {
  padding: 2.5rem;
  border-top: 1px solid var(--color-border);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.cart-subtotal__amount { font-size: 1.8rem; font-weight: 600; }

.cart-drawer__footer .btn { margin-bottom: 1rem; }

.cart-drawer__footer .btn:last-child { margin-bottom: 0; }

.cart-note {
  font-size: 1.3rem;
  text-align: center;
  color: #888;
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.cart-note svg { width: 1.4rem; height: 1.4rem; }

/* ============================================================
   BREADCRUMB
   ============================================================ */

.breadcrumb {
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 1.3rem;
  color: #888;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.breadcrumb a { color: #888; }
.breadcrumb a:hover { color: var(--color-foreground); }
.breadcrumb__separator { color: #ccc; }
.breadcrumb__current { color: var(--color-foreground); }

/* ============================================================
   PAGINATION
   ============================================================ */

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  padding: 4rem 0;
}

.pagination__item {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--color-border);
  font-size: 1.4rem;
  transition: all var(--transition-base);
  cursor: pointer;
}

.pagination__item:hover,
.pagination__item.active {
  background: var(--color-foreground);
  color: var(--color-background);
  border-color: var(--color-foreground);
}

/* ============================================================
   COLLECTION PAGE
   ============================================================ */

.collection-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 3rem;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.collection-count { font-size: 1.4rem; color: #888; }

.sort-select {
  appearance: none;
  background: transparent;
  border: 1.5px solid var(--color-border);
  padding: 1rem 3.5rem 1rem 1.5rem;
  font-size: 1.4rem;
  font-family: var(--font-body);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
}

/* ============================================================
   OVERLAY
   ============================================================ */

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.overlay.active { opacity: 1; visibility: visible; }

/* ============================================================
   ANIMATIONS & REVEAL
   ============================================================ */

[data-reveal] {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }

/* ============================================================
   LOADING SPINNER
   ============================================================ */

.spinner {
  width: 2.4rem;
  height: 2.4rem;
  border: 2px solid rgba(0,0,0,0.1);
  border-top-color: var(--color-foreground);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: inline-block;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   TOAST NOTIFICATIONS
   ============================================================ */

.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.toast {
  background: var(--color-foreground);
  color: #fff;
  padding: 1.4rem 2rem;
  font-size: 1.4rem;
  max-width: 32rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: toast-in 0.3s ease forwards;
}

.toast--success { background: #2d6a4f; }
.toast--error   { background: #c0392b; }

@keyframes toast-in {
  from { opacity: 0; transform: translateX(2rem); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ============================================================
   SEARCH DRAWER
   ============================================================ */

.search-drawer {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: #fff;
  z-index: 400;
  padding: 2rem var(--gutter);
  box-shadow: var(--shadow-lg);
  transform: translateY(-100%);
  transition: transform var(--transition-base);
}

.search-drawer.open { transform: translateY(0); }

.search-form {
  display: flex;
  align-items: center;
  max-width: 80rem;
  margin: 0 auto;
  border-bottom: 2px solid var(--color-foreground);
  padding-bottom: 1rem;
}

.search-form__input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 300;
  background: transparent;
}

.search-form__submit { padding: 0 1rem; }
.search-form__submit svg { width: 2.2rem; height: 2.2rem; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */

.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  max-width: 40rem;
  background: #fff;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--color-accent);
  z-index: 998;
  display: none;
}

.cookie-banner.show { display: block; }
.cookie-banner p { font-size: 1.4rem; color: #555; margin-bottom: 1.5rem; line-height: 1.7; }
.cookie-banner__buttons { display: flex; gap: 1rem; }

/* ============================================================
   UTILITIES
   ============================================================ */

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.d-none { display: none !important; }
.d-block { display: block !important; }

@media (max-width: 768px) {
  .hidden-mobile { display: none !important; }
}
@media (min-width: 769px) {
  .hidden-desktop { display: none !important; }
}

/* ============================================================
   PRODUCT PAGE — Viralea-style high-conversion layout
   ============================================================ */

/* Social proof badge row */
.prd-badge-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.6rem;
  flex-wrap: wrap;
}
.prd-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #f9f6f0;
  border: 1px solid #e8ddc8;
  border-radius: 2rem;
  padding: 0.5rem 1.4rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-foreground);
}
.prd-badge__sep { color: #ccc; }
.prd-urgency-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #e74c3c;
  animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.prd-urgency-text { font-size: 1.3rem; font-weight: 600; color: #e74c3c; }

/* Benefit checkmarks */
.prd-benefits {
  list-style: none;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.prd-benefits li {
  font-size: 1.4rem;
  color: var(--color-foreground);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.prd-check {
  color: #c9a96e;
  font-size: 1.6rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ATC button pulse */
.prd-atc-btn {
  position: relative;
  overflow: hidden;
}
.prd-atc-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.prd-atc-btn:hover::after { transform: translateX(100%); }

/* Stock bar */
.prd-stock-bar { margin: 1.6rem 0 2rem; }
.prd-stock-bar__label {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #555;
}
.prd-stock-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #27ae60;
  flex-shrink: 0;
}
.prd-stock-track {
  height: 6px;
  background: #ece8e1;
  border-radius: 3px;
  overflow: hidden;
}
.prd-stock-fill {
  height: 100%;
  background: linear-gradient(90deg, #c9a96e, #a07840);
  border-radius: 3px;
  transition: width 1.2s ease;
}

/* Trust row */
.prd-trust-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.prd-trust-row span {
  font-size: 1.3rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ── Testimonials ── */
.prd-testimonials {
  background: #0d0d1a;
  padding: 8rem 0;
  margin-top: 6rem;
}
.prd-testimonials__header {
  text-align: center;
  margin-bottom: 5rem;
}
.prd-stars-row {
  color: #c9a96e;
  font-size: 2.2rem;
  letter-spacing: 0.2rem;
  margin-bottom: 1rem;
}
.prd-stars-row span {
  font-size: 1.4rem;
  color: #888;
  vertical-align: middle;
  margin-left: 0.8rem;
}
.prd-testimonials__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  font-weight: 400;
  color: #fff;
}
.prd-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media (max-width: 900px) { .prd-testimonials__grid { grid-template-columns: 1fr; } }

.prd-review-card {
  background: #16213e;
  border: 1px solid #2a2a4a;
  border-radius: 1.2rem;
  padding: 3rem 2.8rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.prd-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(201,169,110,0.12);
}
.prd-review-card__stars { color: #c9a96e; font-size: 1.6rem; margin-bottom: 1.6rem; }
.prd-review-card__text {
  font-size: 1.5rem;
  line-height: 1.75;
  color: #ccc;
  margin-bottom: 2.4rem;
  font-style: italic;
}
.prd-review-card__author {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.prd-review-card__avatar {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a96e, #a07840);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.prd-review-card__author strong {
  display: block;
  color: #fff;
  font-size: 1.4rem;
}
.prd-review-card__author span {
  font-size: 1.2rem;
  color: #888;
}

/* ── Feature blocks ── */
.prd-feature-block { padding: 8rem 0; }
.prd-feature-block--dark { background: #0d0d1a; }
.prd-feature-block--light { background: #f9f6f0; }

.prd-feature-block__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.prd-feature-block__inner--reversed { direction: rtl; }
.prd-feature-block__inner--reversed > * { direction: ltr; }

@media (max-width: 900px) {
  .prd-feature-block__inner,
  .prd-feature-block__inner--reversed {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 4rem;
  }
}

.prd-feature-block__text { display: flex; flex-direction: column; gap: 1.6rem; }
.prd-feature-block--dark .prd-feature-block__text h2 { color: #fff; }
.prd-feature-block--dark .prd-feature-block__text p { color: #aaa; }
.prd-feature-block--light .prd-feature-block__text h2 { color: var(--color-foreground); }
.prd-feature-block--light .prd-feature-block__text p { color: #555; }

.prd-feature-block__text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 3.5vw, 4rem);
  font-weight: 400;
  line-height: 1.2;
}
.prd-feature-block__text p { font-size: 1.6rem; line-height: 1.8; }

.prd-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 0.8rem;
}
.prd-feature-block--dark .prd-feature-list li { color: #c9a96e; font-size: 1.4rem; }
.prd-feature-block--light .prd-feature-list li { color: #a07840; font-size: 1.4rem; }

.prd-feature-block__media img {
  width: 100%;
  border-radius: 1.2rem;
  object-fit: cover;
  aspect-ratio: 4/5;
}
.prd-feature-block--dark .prd-feature-block__media img {
  box-shadow: 0 24px 60px rgba(201,169,110,0.15);
}

/* ── Cycling section ── */
.prd-cycling-section {
  background: var(--color-primary, #1a1a2e);
  padding: 8rem 0;
  overflow: hidden;
}
.prd-cycling-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
@media (max-width: 900px) {
  .prd-cycling-section__inner { grid-template-columns: 1fr; gap: 4rem; }
}
.prd-cycling-section__text h2 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 4vw, 5rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.6rem;
}
.prd-cycling-section__text p { font-size: 1.6rem; color: #aaa; }
.prd-cycling-word { color: #c9a96e; display: inline-block; }

.prd-cycling-section__list {
  position: relative;
  height: 32rem;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}
.prd-cycling-list__track {
  display: flex;
  flex-direction: column;
  gap: 0;
  animation: cycle-scroll 8s linear infinite;
}
.prd-cycling-list__track span {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  font-weight: 400;
  color: rgba(201,169,110,0.25);
  padding: 1.6rem 0;
  display: block;
  transition: color 0.3s;
  border-bottom: 1px solid rgba(201,169,110,0.08);
}
@keyframes cycle-scroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-83.33%); }
}

/* ── Stats ── */
.prd-stats-section {
  background: #fff;
  padding: 8rem 0;
  border-top: 1px solid #ece8e1;
  border-bottom: 1px solid #ece8e1;
}
.prd-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  text-align: center;
}
@media (max-width: 768px) { .prd-stats-grid { grid-template-columns: 1fr; gap: 3rem; } }
.prd-stat-item__number {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 6vw, 7rem);
  font-weight: 300;
  color: #c9a96e;
  line-height: 1;
  margin-bottom: 1.2rem;
}
.prd-stat-item p { font-size: 1.5rem; color: #555; line-height: 1.6; max-width: 26rem; margin: 0 auto; }

/* ── Guarantee ── */
.prd-guarantee {
  background: linear-gradient(135deg, #0d0d1a 0%, #1a1a2e 100%);
  padding: 6rem 0;
}
.prd-guarantee__inner {
  display: flex;
  align-items: center;
  gap: 3.6rem;
}
@media (max-width: 768px) {
  .prd-guarantee__inner { flex-direction: column; text-align: center; }
}
.prd-guarantee__icon {
  flex-shrink: 0;
  width: 8rem;
  height: 8rem;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prd-guarantee__content h3 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.8rem;
}
.prd-guarantee__content p { font-size: 1.5rem; color: #aaa; line-height: 1.7; }

/* ── FAQ ── */
.prd-faq-section {
  background: #f9f6f0;
  padding: 8rem 0;
}
.prd-faq-section__inner { max-width: 78rem; margin: 0 auto; }
.prd-faq-section__header { text-align: center; margin-bottom: 5rem; }
.prd-faq-section__header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 3.5vw, 4rem);
  font-weight: 400;
  color: var(--color-foreground);
}

.prd-faq-list { display: flex; flex-direction: column; gap: 0; }
.prd-faq-item {
  border-bottom: 1px solid #ddd6c8;
}
.prd-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  padding: 2.2rem 0;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-foreground);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.prd-faq-trigger:hover { color: #c9a96e; }
.prd-faq-icon {
  width: 1.8rem;
  height: 1.8rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  stroke: #c9a96e;
}
.prd-faq-item.open .prd-faq-icon { transform: rotate(45deg); }
.prd-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}
.prd-faq-item.open .prd-faq-answer { max-height: 20rem; padding-bottom: 2rem; }
.prd-faq-answer p { font-size: 1.5rem; color: #555; line-height: 1.75; }

/* ── Final CTA ── */
.prd-final-cta {
  background: #fff;
  padding: 7rem 0;
  border-top: 1px solid #ece8e1;
}
.prd-final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
}
.prd-final-cta__text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  font-weight: 400;
  color: var(--color-foreground);
  margin-bottom: 0.8rem;
}
.prd-final-cta__text p { font-size: 1.4rem; color: #666; margin-top: 0.6rem; }
.prd-final-cta__action { display: flex; flex-direction: column; align-items: flex-end; gap: 1.2rem; }
.prd-final-cta__price {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-foreground);
}
@media (max-width: 768px) {
  .prd-final-cta__inner { flex-direction: column; text-align: center; }
  .prd-final-cta__action { align-items: center; }
}

/* ── Sticky ATC ── */
#sticky-atc {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1.4rem 2rem;
}
#sticky-atc.visible { transform: translateY(0); }
.sticky-atc__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
}
.sticky-atc__info { display: flex; flex-direction: column; }
.sticky-atc__title { font-size: 1.3rem; font-weight: 600; }
.sticky-atc__price { font-size: 1.5rem; color: #c9a96e; font-weight: 700; }

/* ── Overline ── */
.prd-overline {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 0.8rem;
}
}
