/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #0A0A0A;
  --black-soft: #1A1715;
  --dark: #2C2420;
  --cream: #FBF9F6;
  --cream-warm: #F5EDE3;
  --gold: #C6A87D;
  --gold-light: #D4BC9A;
  --gold-dark: #A8865A;
  --rose: #E8D5C4;
  --text: #3D3530;
  --text-light: #8A7E75;
  --white: #FFFFFF;
  --border: #E8E0D6;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --max-width: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 30px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section.compact { padding: 72px 0; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-label.center { text-align: center; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--dark);
}

.section-title em { font-style: italic; color: var(--gold-dark); }
.section-title.center { text-align: center; }

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 48px;
  font-weight: 300;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 36px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(198, 168, 125, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(198, 168, 125, 0.45);
}

.btn-outline {
  border: 1.5px solid var(--border);
  color: var(--dark);
  background: transparent;
}

.btn-outline:hover {
  background: var(--white);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-dark {
  background: var(--black-soft);
  color: var(--white);
  width: 100%;
}

.btn-dark:hover {
  background: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-pay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}

.btn-pay:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(198, 168, 125, 0.4);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(251, 249, 246, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.06);
}

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

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.12em;
  transition: color 0.4s;
}

.nav.scrolled .nav-logo { color: var(--dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s;
  letter-spacing: 0.03em;
}

.nav-links a:hover { color: var(--white); }
.nav.scrolled .nav-links a { color: var(--text-light); }
.nav.scrolled .nav-links a:hover { color: var(--dark); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--white) !important;
  padding: 10px 26px !important;
  border-radius: 50px;
  font-weight: 500 !important;
}

.nav-cta:hover { box-shadow: 0 4px 20px rgba(198, 168, 125, 0.4); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--white);
  transition: all 0.3s;
  border-radius: 2px;
}

.nav.scrolled .nav-toggle span { background: var(--dark); }

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

/* ===== HERO ===== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.10) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    rgba(0, 0, 0, 0.40) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 700px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-title em {
  font-style: italic;
  color: var(--white);
  -webkit-text-fill-color: var(--white);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 36px;
  letter-spacing: 0.06em;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 44px;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
  background: transparent;
  border-radius: 0;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}

.btn-hero:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  position: relative;
  z-index: 3;
  background: var(--cream-warm);
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
}

.trust-icon {
  color: var(--gold);
  font-size: 0.7rem;
}

/* ===== PRODUCT ===== */
.product { background: var(--cream-warm); }

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.product-image-wrap { position: relative; }

.product-image {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.product-image img {
  max-height: 420px;
  object-fit: contain;
  margin: 0 auto;
}

.product-desc {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 36px;
  font-weight: 300;
}

.features { display: flex; flex-direction: column; gap: 24px; }

.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon-wrap {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.feature strong {
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
  font-size: 0.95rem;
}

.feature p {
  color: var(--text-light);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.5;
}

/* ===== COLOR CAROUSEL ===== */
.colors { background: var(--cream-warm); padding-bottom: 72px; }
.colors .section-subtitle { margin-bottom: 32px; }

.color-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.color-tab {
  padding: 10px 24px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s;
}

.color-tab:hover { border-color: var(--gold-light); color: var(--text); }

.color-tab.active {
  background: var(--black-soft);
  color: var(--white);
  border-color: var(--black-soft);
}

.carousel-wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 0;
}

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

.carousel-track .color-card {
  flex: 0 0 200px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
  border: 1px solid var(--border);
  cursor: pointer;
}

.carousel-track .color-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
  transition: all 0.3s;
  z-index: 2;
  box-shadow: var(--shadow);
}

.carousel-btn:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.carousel-prev { left: 8px; }
.carousel-next { right: 8px; }

.color-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.color-image img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.color-info { padding: 14px 16px; }

.color-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--dark);
}

.color-type {
  font-size: 0.76rem;
  color: var(--text-light);
  font-weight: 300;
  margin-top: 2px;
}

/* ===== PRICING ===== */
.pricing { background: var(--cream); }
.pricing .section-subtitle { margin-bottom: 40px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 780px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px 32px;
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.4s, box-shadow 0.4s;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow);
}

.pricing-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 5px 18px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-header { margin-bottom: 28px; }

.pricing-header h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.pricing-header p {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 300;
}

.pricing-table { flex: 1; margin-bottom: 24px; }

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}

.pricing-row:last-child { border-bottom: none; }

.pricing-row span { font-weight: 500; font-size: 0.92rem; }
.pricing-row small { font-weight: 300; color: var(--text-light); }

.price {
  font-family: var(--font-display);
  font-size: 1.3rem !important;
  font-weight: 600 !important;
  color: var(--gold-dark);
}

/* ===== GUIDE INLINE (inside pricing) ===== */
.guide-inline {
  max-width: 780px;
  margin: 40px auto 0;
  text-align: center;
  padding: 28px 32px;
  background: var(--cream-warm);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.guide-inline-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--dark);
}

.guide-inline-options {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.guide-inline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--white);
  transition: all 0.3s;
}

.guide-inline-item strong {
  font-size: 0.95rem;
  color: var(--dark);
}

.guide-inline-item span {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 300;
}

.guide-inline-item.popular {
  border-color: var(--gold);
  background: linear-gradient(180deg, var(--white) 0%, #FAF5EE 100%);
  box-shadow: 0 0 0 1px var(--gold);
}

/* ===== CONTACT ===== */
.contact {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
}

.contact-inner {
  background: linear-gradient(135deg, var(--cream-warm) 0%, var(--rose) 100%);
  border-radius: 28px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.contact-inner::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(198,168,125,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.contact-inner .section-label { color: var(--gold-dark); }
.contact-inner .section-title { color: var(--dark); }
.contact-inner .section-title em {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-inner .section-subtitle { color: var(--text-light); }

.contact-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  transition: all 0.4s ease;
  letter-spacing: 0.02em;
}

.contact-btn svg { flex-shrink: 0; }

.contact-btn.whatsapp { background: #25D366; }
.contact-btn.whatsapp:hover {
  background: #1EBE57;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.contact-btn.instagram {
  background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
}
.contact-btn.instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(225, 48, 108, 0.35);
  filter: brightness(1.1);
}

.contact-location {
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 300;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--cream-warm);
  padding: 48px 0 40px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--dark);
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--gold-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 20px;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 300;
}

/* ===== GALLERY (photos + videos) ===== */
.gallery { background: var(--white); }

.gallery .section-label { color: var(--gold-dark); }
.gallery .section-title { color: var(--dark); }
.gallery .section-title em {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gallery-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 24px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.gallery-video {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 9/16;
  background: var(--black);
  cursor: pointer;
}

.gallery-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-video:hover video { transform: scale(1.05); }

.video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s;
}

.video-play:hover {
  background: rgba(255,255,255,0.25);
  transform: translate(-50%, -50%) scale(1.1);
}

.gallery-video.playing .video-play { opacity: 0; }
.gallery-video.playing:hover .video-play { opacity: 1; }

.gallery-video::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(0,0,0,0.3));
  pointer-events: none;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s;
  z-index: 90;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--cream);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 24px;
    transition: right 0.3s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.08);
  }

  .nav-links.active { right: 0; }

  .hero {
    min-height: 100vh;
  }

  .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }

  .section { padding: 70px 0; }

  .trust-bar { gap: 20px; padding: 20px 16px; }
  .trust-item { font-size: 0.78rem; }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gallery-photos { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .gallery-videos { grid-template-columns: repeat(3, 1fr); gap: 10px; }

  .carousel-wrap { padding: 0 16px; }
  .carousel-btn { display: none; }
  .carousel-track .color-card { flex: 0 0 170px; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .pricing-card { padding: 32px 24px 24px; }
  .pricing-header h3 { font-size: 1.2rem; }
  .pricing-row span { font-size: 0.88rem; }
  .price { font-size: 1.1rem !important; }
  .guide-inline-options { gap: 12px; }
  .guide-inline-item { padding: 10px 20px; }

  .contact-inner { padding: 60px 28px; border-radius: 20px; }
  .contact-btn { width: 100%; justify-content: center; }

  .whatsapp-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.5rem; }
  .btn { padding: 13px 28px; font-size: 0.88rem; }
  .color-tabs { gap: 6px; }
  .color-tab { padding: 8px 16px; font-size: 0.8rem; }
  .carousel-track .color-card { flex: 0 0 155px; }
  .gallery-photos { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .gallery-videos { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .guide-inline-options { flex-direction: column; align-items: center; }
}
