/* ==========================================================================
   Morrisen - Bounded Slideshow (-80px Margin-Top) & Staggered Fade-In Cards
   ========================================================================== */

:root {
  --primary-green: #0a3823;
  --dark-green: #041a0e;
  --accent-gold: #cba358;
  --bright-gold: #e5c87e;
  --gold-gradient: linear-gradient(135deg, #f5d77f 0%, #cba358 100%);
  --cream-bg: #f8f6f0;
  --glass-card: rgba(4, 26, 14, 0.82);
  --glass-border: rgba(203, 163, 88, 0.35);
  --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--dark-green);
  color: #ffffff;
  overflow-x: hidden;
}

body {
  line-height: 1.6;
  background-color: var(--dark-green);
}

/* ==========================================================================
   Sticky Navigation Header
   ========================================================================== */

.sticky-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(4, 26, 14, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.header-container {
  max-width: 1550px;
  margin: 0 auto;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #ffffff;
}

.logo-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 22px;
  color: var(--dark-green);
  box-shadow: 0 0 15px rgba(203, 163, 88, 0.6);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--bright-gold);
}

.logo-subtitle {
  font-size: 9px;
  letter-spacing: 2.5px;
  color: #cbd5e1;
  text-transform: uppercase;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 30px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link:hover {
  color: var(--bright-gold);
  background: rgba(255, 255, 255, 0.08);
}

.nav-link.active {
  color: var(--dark-green);
  background: var(--gold-gradient);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(203, 163, 88, 0.5);
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* ==========================================================================
   PAGE 1: Pure 5-Picture Slideshow Hero (Negative -80px Margin-Top)
   ========================================================================== */

.slideshow-hero-section {
  width: 100%;
  min-height: calc(100vh - 70px);
  padding: 10px 40px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slideshow-card-wrapper {
  max-width: 1550px;
  width: 100%;
  height: calc(100vh - 100px);
  min-height: 550px;
  margin: -80px auto 0 auto; /* Pull up -80px margin-top as requested */
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  border: 1px solid var(--glass-border);
  background: #020e08;
}

.slideshow-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s var(--transition-smooth);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #020e08;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Arrow Controls */
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(4, 26, 14, 0.75);
  border: 1px solid var(--glass-border);
  color: var(--bright-gold);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.slide-btn:hover {
  background: var(--bright-gold);
  color: var(--dark-green);
  box-shadow: 0 0 20px rgba(229, 200, 126, 0.8);
}

.prev-slide { left: 24px; }
.next-slide { right: 24px; }

/* Dot Indicators */
.slideshow-indicators {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 10px;
  background: rgba(4, 26, 14, 0.6);
  padding: 8px 16px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(203, 163, 88, 0.3);
}

.indicator-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid var(--accent-gold);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator-dot.active {
  width: 32px;
  border-radius: 20px;
  background: var(--bright-gold);
  box-shadow: 0 0 12px rgba(229, 200, 126, 0.8);
}

/* ==========================================================================
   Staggered Animated Fade-In System for Cards & Content Cards
   ========================================================================== */

.animate-card {
  opacity: 0;
  transform: translateY(50px) scale(0.97);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.animate-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Staggered Delay Classes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ==========================================================================
   Page Sections & Background Visuals (Pages 2 - 6)
   ========================================================================== */

.page-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  scroll-margin-top: 70px;
  overflow: hidden;
}

.section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.65) blur(2px);
  transform: scale(1.05);
  transition: transform 1.5s ease;
  z-index: 1;
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(3, 23, 13, 0.75) 0%, rgba(4, 26, 14, 0.88) 100%);
  z-index: 2;
}

.bg-overlay.dark-overlay {
  background: linear-gradient(180deg, rgba(3, 23, 13, 0.85) 0%, rgba(2, 14, 8, 0.95) 100%);
}

.content-container {
  position: relative;
  z-index: 10;
  max-width: 1350px;
  width: 100%;
  margin: 0 auto;
}

/* ==========================================================================
   Page 2: Hero Section Details Layout
   ========================================================================== */

.hero-card {
  background: var(--glass-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 48px;
  margin-bottom: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.brand-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(203, 163, 88, 0.15);
  color: var(--bright-gold);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  border: 1px solid rgba(203, 163, 88, 0.4);
  margin-bottom: 20px;
}

.main-heading {
  font-family: 'Noto Serif SC', 'Cinzel', serif;
  font-size: 46px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.sub-heading-pills {
  font-size: 24px;
  font-weight: 700;
  color: var(--bright-gold);
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.description-text {
  font-size: 18px;
  color: #e2e8f0;
  margin-bottom: 36px;
  line-height: 1.6;
}

.description-text small {
  font-size: 14px;
  color: #94a3b8;
}

.hero-pillars {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.pillar-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(203, 163, 88, 0.25);
  padding: 14px 20px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
}

.pillar-item i { font-size: 22px; color: var(--bright-gold); }
.pillar-item small { color: #94a3b8; font-size: 10px; letter-spacing: 1px; }

.hero-actions { display: flex; gap: 16px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--dark-green);
  box-shadow: 0 6px 20px rgba(203, 163, 88, 0.4);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(203, 163, 88, 0.6);
}

.btn-outline {
  border: 2px solid var(--accent-gold);
  color: var(--bright-gold);
}

.btn-outline:hover {
  background: rgba(203, 163, 88, 0.15);
  transform: translateY(-2px);
}

.middle-feature-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}

.feature-chip {
  background: rgba(10, 56, 35, 0.9);
  border: 1px solid var(--accent-gold);
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-chip i { color: var(--bright-gold); }
.feature-chip span { font-size: 9px; color: var(--bright-gold); display: block; }

.commitments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.commitment-card {
  background: rgba(255, 255, 255, 0.95);
  color: #1e293b;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.commitment-card i { font-size: 32px; color: var(--primary-green); }
.commitment-card h3 { font-size: 16px; font-weight: 700; color: var(--primary-green); }
.commitment-card h3 small { font-size: 10px; color: #64748b; display: block; }
.commitment-card p { font-size: 12px; color: #475569; margin-top: 2px; }

/* ==========================================================================
   Page 3: VIP Room Layout
   ========================================================================== */

.vip-card {
  background: var(--glass-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 56px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.section-badge {
  display: inline-block;
  background: var(--gold-gradient);
  color: var(--dark-green);
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.section-heading-large {
  font-family: 'Noto Serif SC', serif;
  font-size: 38px;
  line-height: 1.4;
  margin-bottom: 24px;
}

.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vip-desc {
  font-size: 16px;
  color: #cbd5e1;
  max-width: 750px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.vip-features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  max-width: 750px;
  margin: 0 auto 40px;
  text-align: left;
}

.vip-feature-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(203, 163, 88, 0.2);
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #f1f5f9;
  display: flex;
  align-items: center;
  gap: 12px;
}

.vip-feature-item i { color: var(--bright-gold); }
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* ==========================================================================
   Page 4: Scalp Technology Comparison
   ========================================================================== */

.section-header-center {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.section-tag {
  color: var(--bright-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 42px;
  margin: 12px 0 20px;
  color: #ffffff;
}

.expert-quote {
  font-size: 18px;
  font-style: italic;
  color: #e2e8f0;
  background: rgba(10, 56, 35, 0.6);
  border-left: 4px solid var(--bright-gold);
  padding: 20px 24px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.expert-quote cite {
  display: block;
  font-style: normal;
  font-size: 14px;
  color: var(--bright-gold);
  margin-top: 10px;
  font-weight: 600;
}

.highlight-banner {
  background: #be123c;
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.comp-card {
  background: var(--glass-card);
  border: 1px solid var(--glass-border);
  padding: 30px;
  border-radius: 20px;
}

.comp-card.danger { border-top: 4px solid #ef4444; }
.comp-card.warning { border-top: 4px solid #f59e0b; }
.comp-card.success { border-top: 4px solid #10b981; }

.comp-badge {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: var(--bright-gold);
}

.comp-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.comp-card p { font-size: 14px; color: #cbd5e1; line-height: 1.6; }

.tech-features-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.tech-item {
  background: rgba(203, 163, 88, 0.15);
  border: 1px solid var(--accent-gold);
  color: var(--bright-gold);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ==========================================================================
   Page 5: 100% Plant Hair Dye
   ========================================================================== */

.plant-dye-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.plant-dye-info {
  background: var(--glass-card);
  border: 1px solid var(--glass-border);
  padding: 44px;
  border-radius: 24px;
}

.natural-badge {
  display: inline-block;
  background: #15803d;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-title-large {
  font-family: 'Noto Serif SC', serif;
  font-size: 38px;
  line-height: 1.3;
  margin-bottom: 24px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.check-item { font-size: 16px; display: flex; align-items: center; gap: 12px; }
.check-item i { color: #22c55e; font-size: 20px; }

.herbs-section h4 { font-size: 15px; color: var(--bright-gold); margin-bottom: 14px; }

.herbs-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.herbs-tags span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(203, 163, 88, 0.3);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.color-selector-box {
  background: var(--glass-card);
  border: 1px solid var(--glass-border);
  padding: 44px;
  border-radius: 24px;
  text-align: center;
}

.color-selector-box h3 { font-size: 22px; color: var(--bright-gold); margin-bottom: 24px; }

.color-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.color-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 10px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.color-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-bottom: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.color-circle.black { background: #111111; border: 2px solid #555; }
.color-circle.brown { background: #4a2c11; border: 2px solid #8c5324; }
.color-circle.winered { background: #7a152b; border: 2px solid #b82344; }

.color-card h4 { font-size: 15px; font-weight: 700; }
.color-card p { font-size: 11px; color: #94a3b8; }

.dye-guarantee {
  display: flex;
  justify-content: space-around;
  font-size: 14px;
  font-weight: 600;
  color: var(--bright-gold);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

/* ==========================================================================
   Page 6: Professional Scalp Care System
   ========================================================================== */

.system-header { text-align: center; margin-bottom: 40px; }
.system-tag { color: var(--bright-gold); font-size: 12px; font-weight: 800; letter-spacing: 3px; }
.system-main-title { font-family: 'Cinzel', serif; font-size: 38px; margin: 8px 0; color: #ffffff; }
.system-subtitle { font-size: 18px; color: var(--bright-gold); font-weight: 600; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.step-card {
  background: var(--glass-card);
  border: 1px solid var(--glass-border);
  padding: 36px;
  border-radius: 20px;
  position: relative;
}

.step-num {
  display: inline-block;
  background: var(--gold-gradient);
  color: var(--dark-green);
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 16px;
}

.step-card h3 { font-size: 20px; line-height: 1.3; margin-bottom: 14px; }
.step-card h3 small { font-size: 15px; color: var(--bright-gold); display: block; }
.step-card p { font-size: 14px; color: #cbd5e1; line-height: 1.6; }

.clinical-box {
  background: var(--glass-card);
  border: 1px solid var(--accent-gold);
  border-radius: 20px;
  padding: 36px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: center;
}

.clinical-left h3 { font-size: 20px; color: var(--bright-gold); margin-bottom: 16px; }

.clinical-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.clinical-list i { color: #22c55e; margin-right: 8px; }

.clinical-right {
  background: rgba(10, 56, 35, 0.8);
  border: 1px solid var(--glass-border);
  padding: 24px;
  border-radius: 16px;
  text-align: center;
}

.stat-num { display: block; font-size: 42px; font-weight: 800; color: var(--bright-gold); }
.stat-label { font-size: 13px; color: #e2e8f0; font-weight: 600; }
.test-note { font-size: 11px; color: #94a3b8; margin-top: 8px; }

/* Side Pagination Dots */
.side-pagination {
  position: fixed;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.dot-item {
  position: relative;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid var(--accent-gold);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot-item:hover { background: var(--bright-gold); transform: scale(1.3); }

.dot-item.active {
  background: var(--bright-gold);
  border-color: #ffffff;
  transform: scale(1.4);
  box-shadow: 0 0 15px rgba(229, 200, 126, 0.9);
}

.dot-tooltip {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark-green);
  border: 1px solid var(--accent-gold);
  color: var(--bright-gold);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.dot-item:hover .dot-tooltip { opacity: 1; right: 24px; }

/* Floating Action Button */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 32px;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
  z-index: 998;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-whatsapp:hover {
  transform: scale(1.12) rotate(10deg);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.8);
}

/* Footer */
footer {
  background: #020e08;
  color: #94a3b8;
  padding: 60px 20px 30px;
  text-align: center;
  border-top: 2px solid var(--glass-border);
}

.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--bright-gold);
  margin-bottom: 12px;
}

.footer-desc {
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 14px;
  color: #cbd5e1;
}

.copyright {
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  color: #64748b;
}

/* Responsive */
@media (max-width: 1024px) {
  .plant-dye-layout { grid-template-columns: 1fr; }
  .clinical-box { grid-template-columns: 1fr; }
  .slideshow-card-wrapper { height: calc(100vh - 140px); min-height: 450px; margin-top: -40px; }
  .slideshow-hero-section { padding: 16px 20px; }
}

@media (max-width: 768px) {
  .header-container { flex-direction: column; gap: 12px; padding: 12px 16px; }
  .nav-menu { flex-wrap: wrap; justify-content: center; }
  .side-pagination { display: none; }
  .main-heading { font-size: 32px; }
  .slideshow-hero-section { padding: 12px 10px; }
  .slideshow-card-wrapper { height: 360px; min-height: 360px; border-radius: 14px; margin-top: -20px; }
  .hero-card, .vip-card, .plant-dye-info, .color-selector-box { padding: 28px 20px; }
  .slide-btn { width: 38px; height: 38px; font-size: 14px; }
}
