/* --- DESIGN SYSTEM VARIABLES --- */
:root {
  /* Colors */
  --color-primary: #6B4C7B;
  --color-primary-light: #9B6FA8;
  --color-secondary: #D4A574;
  --color-secondary-bright: #E5B844;
  --color-accent: #C9A227;
  --color-beige: #FFF4D1;
  --color-bg-light: #FFF6CC;
  --color-bg-lighter: #FFF8D8;
  --color-text-dark: #333;
  --color-text-light: #666;
  --color-text-muted: #888;
  --color-white: #fff;

  /* Shadows */
  --shadow-light: 0 4px 10px rgba(107, 76, 123, 0.08);
  --shadow-medium: 0 8px 20px rgba(107, 76, 123, 0.12);
  --shadow-deep: 0 12px 30px rgba(107, 76, 123, 0.15);

  /* Border Radius */
  --border-radius: 12px;
  --border-radius-full: 50px;

  /* Spacing Scale */
  --spacing-xs: 10px;
  --spacing-sm: 20px;
  --spacing-md: 40px;
  --spacing-lg: 60px;
  --spacing-xl: 80px;

  /* Typography */
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Poppins', sans-serif;
}

/* --- GLOBAL STYLES --- */
html {
  scroll-behavior: smooth;
}

*, *::before, *::after {
  box-sizing: border-box;
}

img, picture, video, iframe, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: linear-gradient(135deg, #fff6d5 0%, #fff8e1 100%);
  color: var(--color-text-dark);
}

/* --- HEADER & NAV --- */
header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  color: var(--color-text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  box-shadow: var(--shadow-light);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 26px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
  font-family: var(--font-serif);
}

nav a {
  color: var(--color-text-light);
  margin: 0 15px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-secondary-bright));
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: var(--color-primary);
}

.btn-sm {
  padding: var(--spacing-xs) 24px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary-bright) 100%);
  color: var(--color-white) !important;
  text-decoration: none;
  border-radius: var(--border-radius-full);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
}

.btn-sm:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* --- HERO BANNER --- */
.hero {
  position: relative;
  height: 500px;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active { 
  opacity: 0.5;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(107, 76, 123, 0.5) 0%, rgba(212, 165, 116, 0.3) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 800;
  margin: 0;
  letter-spacing: 2px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: 22px;
  margin: 15px 0 10px;
  font-weight: 300;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1.2s ease-out;
}

.hero-description {
  font-size: 16px;
  margin: 10px 0 30px;
  opacity: 0.95;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1.4s ease-out;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1.6s ease-out;
}

.btn-primary {
  display: inline-block;
  padding: 12px 32px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary-bright) 100%);
  color: var(--color-white);
  text-decoration: none;
  border-radius: var(--border-radius-full);
  font-weight: 700;
  font-size: 16px;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-deep);
}

.btn-secondary {
  display: inline-block;
  padding: 12px 32px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  color: white;
  text-decoration: none;
  border-radius: var(--border-radius-full);
  font-weight: 700;
  font-size: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* --- FEATURES SECTION --- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
  max-width: 1100px;
  margin: var(--spacing-lg) auto;
  padding: var(--spacing-md) 20px;
}

.feature-item {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-deep);
  border-top: 4px solid var(--color-accent);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 15px;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.feature-item h3 {
  font-size: 18px;
  color: var(--color-primary);
  margin: 15px 0;
  font-weight: 700;
}

.feature-item p {
  color: var(--color-text-light);
  line-height: 1.6;
  font-size: 14px;
}

/* --- SPLIT SECTION --- */
.split {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.split-box {
  flex: 1;
  min-width: 300px;
  padding: var(--spacing-xl) 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.split-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.5s ease;
  z-index: 1;
}

.split-box:hover::before {
  left: 100%;
}

.split-icon {
  font-size: 56px;
  margin-bottom: 20px;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

.crystals-box {
  background: linear-gradient(135deg, #D1B3C4 0%, #E5C8D8 100%);
}

.services-box {
  background: linear-gradient(135deg, #E5B844 0%, #F9E7A7 100%);
}

.split-box h2 {
  font-family: var(--font-serif);
  font-size: 36px;
  margin: 20px 0;
  color: var(--color-primary);
  position: relative;
  z-index: 2;
}

.split-box p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-light);
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}

/* --- PRODUCT GRID --- */
.section {
  max-width: 1200px;
  margin: auto;
  padding: var(--spacing-lg) 20px;
  text-align: center;
}

.section-header {
  margin-bottom: 50px;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--color-primary);
  margin: 0;
  font-weight: 800;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-secondary-bright));
  border-radius: 2px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--color-text-muted);
  margin-top: 30px;
  font-weight: 300;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

/* --- ENHANCED PRODUCT CARD --- */
.product-card {
  width: 100%;
  overflow: hidden;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-deep);
}

.product-image {
  height: 280px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.5s ease;
  overflow: hidden;
  flex-shrink: 0;
}

.product-card:hover .product-image {
  transform: scale(1.08);
  filter: brightness(1.15);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 280px;
  background: rgba(107, 76, 123, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  pointer-events: none;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.product-card:hover .product-overlay {
  opacity: 1;
  pointer-events: none;
}

.product-desc {
  color: white;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  padding: 20px;
  line-height: 1.5;
}

.product-info {
  padding: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex-grow: 1;
}

.product-name {
  font-size: 18px;
  color: #333;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.price {
  font-size: 16px;
  color: #2e7d32 !important;
  background: #FFF9E6;
  padding: 4px 12px;
  border-radius: var(--border-radius-full);
  font-weight: 700;
}

.product-link {
  margin-top: auto;
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: var(--border-radius-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary) 0%, #8B5A9A 100%);
  box-shadow: 0 2px 8px rgba(107, 76, 123, 0.2);
  transition: all 0.3s ease;
}

.product-link::after {
  content: none;
}

.product-link:hover::after { width: 0; }

.product-link:hover {
  background: linear-gradient(135deg, var(--color-accent) 0%, #E5B844 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 162, 39, 0.3);
}

.product-link-secondary {
  background: linear-gradient(135deg, rgba(107, 76, 123, 0.15) 0%, rgba(139, 90, 154, 0.1) 100%);
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  margin-top: 8px;
  box-shadow: none;
}

.product-link-secondary:hover {
  background: linear-gradient(135deg, var(--color-primary) 0%, #8B5A9A 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(107, 76, 123, 0.2);
}

/* --- PAGE HERO BANNER --- */
.page-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: white;
  text-align: center;
  padding: var(--spacing-xl) 20px;
}

.page-hero h1 {
  margin: 0;
  font-size: 42px;
  font-family: var(--font-serif);
  font-weight: 800;
}

.page-hero p {
  margin-top: 15px;
  opacity: 0.9;
  font-size: 16px;
}

/* --- CATEGORY NAV (Filter) --- */
.category-nav {
  text-align: center;
  padding: var(--spacing-sm);
  background: white;
  box-shadow: var(--shadow-light);
  position: sticky;
  top: 70px;
  z-index: 999;
}

.category-nav a {
  margin: 0 15px;
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
}

.category-nav a:hover {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 32px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary-bright) 100%);
  color: white;
  text-decoration: none;
  border-radius: var(--border-radius-full);
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* --- FOOTER & CONTACT --- */
footer {
  background: linear-gradient(135deg, var(--color-primary) 0%, #4A3558 100%);
  color: white;
  margin-top: var(--spacing-xl);
  padding: 0;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--spacing-lg) 20px var(--spacing-md);
}

.footer-box {
  text-align: left;
  animation: slideUp 0.6s ease-out;
}

.footer-box h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  margin: 0 0 15px 0;
  font-weight: 800;
}

.footer-box h4 {
  font-size: 16px;
  margin: 0 0 15px 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-box p {
  margin: 10px 0;
  opacity: 0.9;
  line-height: 1.7;
}

.footer-box a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 10px;
}

.footer-box a:hover {
  transform: translateX(5px);
}

.email-inline a {
  color: var(--color-accent);
  text-decoration: none;
}

.email-inline a:hover {
  text-decoration: underline;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: var(--spacing-sm);
  text-align: center;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- WHATSAPP FLOAT BUTTON --- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-deep);
  transition: all 0.3s ease;
  z-index: 100;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.whatsapp-float:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

/* --- RESPONSIVE --- */
@media (max-width: 1000px) {
  .section .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-cta {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 280px;
  }

  nav a {
    margin: 0 10px;
    font-size: 14px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .split-box {
    padding: var(--spacing-lg) 30px;
  }

  .grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--spacing-sm);
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  header {
    flex-direction: column;
    gap: 15px;
    padding: 15px 20px;
  }

  nav {
    order: 3;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .section .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Services page */
.services-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: white;
  text-align: center;
  padding: var(--spacing-xl) 20px;
}

.services-hero h1 {
  margin: 0;
  font-size: 42px;
  font-family: var(--font-serif);
  font-weight: 800;
}

.services-hero p {
  margin-top: 15px;
  opacity: 0.9;
  font-size: 16px;
}

.services-section {
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
  box-sizing: border-box;
  width: 100%;
  overflow-x: hidden;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: var(--spacing-sm);
  min-width: 0;
}

.service-card {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  text-align: left;
  transition: 0.3s;
  border-left: 5px solid var(--color-accent);
  min-width: 0;
  overflow-wrap: break-word;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.service-card h3 {
  color: var(--color-primary);
  margin-top: 0;
  font-size: 18px;
}

.service-card p {
  color: var(--color-text-light);
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 12px;
}

/* Service card "Learn More" link */
.service-card-link {
  display: inline-block;
  color: var(--color-accent);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid var(--color-accent);
  border-radius: var(--border-radius-full);
  transition: all 0.3s ease;
}

.service-card-link:hover {
  background: var(--color-accent);
  color: white;
}

.logo a {
  text-decoration: none;
  color: inherit;
}

/* ONLY for homepage popular crystals */
.section .grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--spacing-sm);
  justify-items: center;
}

.section .product-card {
  width: 100%;
  max-width: 220px;
}

@media (max-width: 1000px) {
  .section .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .section .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.row {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
}

.bottom-row {
  justify-content: center;
  padding-left: 120px;
}

/* ABOUT HERO */
.about-hero {
  background: linear-gradient(135deg, var(--color-primary), #D1B3C4);
  color: white;
  text-align: center;
  padding: var(--spacing-xl) 20px;
}

.about-hero h1,
.about-section h2,
.person-info h2,
.videos-section h2 {
  font-family: var(--font-serif);
  letter-spacing: 0.3px;
}

.about-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
}

.about-hero p {
  margin: 0;
  opacity: 0.95;
}

.about-section {
  max-width: 800px;
  margin: var(--spacing-lg) auto 0;
  padding: var(--spacing-lg) 20px;
  text-align: center;
  line-height: 1.8;
}

.about-section h2,
.person-info h2,
.videos-section h2 {
  color: var(--color-primary);
  font-size: clamp(1.7rem, 3.8vw, 2.1rem);
  margin: 0 0 14px;
}


.owners {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  flex-wrap: wrap;
}

.owner-card {
  width: 250px;
  text-align: center;
}

.owner-image {
  height: 200px;
  background: var(--color-primary);
  border-radius: var(--border-radius);
  margin-bottom: 15px;
}

.testimonial-grid {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
  margin-top: var(--spacing-sm);
}

.testimonial-card {
  width: 280px;
  background: white;
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  text-align: left;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 10px;
  color: var(--color-text-light);
}

.testimonial-card h4 {
  margin: 0;
  color: var(--color-primary);
  font-size: 14px;
}

.main-person {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md) 20px var(--spacing-lg);
  flex-wrap: wrap;
  background: linear-gradient(135deg, #E5B844 0%, #F9E7A7 100%);
  border-radius: var(--border-radius);
}

.person-image {
  width: 250px;
  height: 300px;
  background: url("images/img5.jpg.jpeg") center/cover no-repeat;
  border-radius: var(--border-radius);
  border: 1px solid rgba(107, 76, 123, 0.14);
  box-shadow: var(--shadow-medium);
  background-color: #FFF4D1;
}

.person-info {
  max-width: 500px;
  text-align: left;
}

.person-info p {
  margin: 0;
  color: var(--color-text-light);
  line-height: 1.8;
}

.videos-section {
  text-align: center;
  padding: var(--spacing-lg) 20px;
  background: var(--color-bg-light);
  border-top: 1px solid rgba(107, 76, 123, 0.08);
  border-bottom: 1px solid rgba(107, 76, 123, 0.08);
}

.video-subtext {
  opacity: 0.7;
  margin-bottom: var(--spacing-md);
}

.video-grid {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.video-card {
  width: 260px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(107, 76, 123, 0.12);
  border-radius: 14px;
  padding: 10px;
  box-shadow: var(--shadow-light);
}

.video-card video {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--border-radius);
  cursor: pointer;
  background: linear-gradient(135deg, #ebe1f0, #f4ebf7);
}

.video-card p {
  margin: 12px 0 4px;
  font-weight: 600;
  color: #555;
}

@media (max-width: 768px) {
  .about-section,
  .main-person,
  .videos-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .about-section {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    padding-bottom: var(--spacing-md);
  }

  .person-image {
    width: 100%;
    max-width: 300px;
    height: 320px;
  }

  .person-info {
    max-width: 100%;
    text-align: center;
  }

  .video-card {
    width: min(320px, 100%);
  }

  .video-card video {
    height: 260px;
  }
}

/* --- PROFESSIONAL FOOTER --- */
footer {
  background: #4B3A57;
  color: #eee;
  margin-top: var(--spacing-xl);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: var(--spacing-lg) 8%;
  gap: var(--spacing-md);
}

.footer-box {
  flex: 1;
  min-width: 220px;
}

.footer-box h3,
.footer-box h4 {
  margin-bottom: 15px;
  color: #fff;
}

.footer-box p {
  margin: 8px 0;
  font-size: 14px;
  color: #ccc;
}

.footer-box a {
  display: block;
  margin: 8px 0;
  text-decoration: none;
  color: #ccc;
  font-size: 14px;
  transition: 0.3s;
}

.footer-box a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  text-align: center;
  padding: 15px;
  background: #3A2C44;
  font-size: 13px;
  color: #aaa;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-float img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #25D366;
  padding: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  transition: 0.3s;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}

.email-inline a {
  display: inline;
  word-break: break-all;
}

/* --- PRODUCTS PAGE MAKEOVER ONLY ===== */

.products-page {
  background: #FFF8D8;
}

/* --- PREMIUM SEARCH SECTION --- */
.search-section {
  background: white;
  padding: var(--spacing-md) 20px;
  text-align: center;
  position: relative;
  z-index: 50;
  border-bottom: 1px solid rgba(107, 76, 123, 0.1);
}

.search-container {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
}

.search-input {
  width: 100%;
  padding: 14px 18px 14px 44px;
  font-size: 16px;
  border: 2px solid rgba(107, 76, 123, 0.15);
  border-radius: var(--border-radius-full);
  font-family: var(--font-sans);
  transition: all 0.3s ease;
  background: #FFFBE5;
}

.search-input:focus {
  outline: none;
  border-color: var(--color-accent);
  background: white;
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.search-input::placeholder {
  color: var(--color-text-muted);
}

.search-icon {
  position: absolute;
  left: 16px;
  font-size: 18px;
  pointer-events: none;
  color: var(--color-text-muted);
}

.no-products-message {
  background: linear-gradient(135deg, rgba(245, 241, 232, 0.5) 0%, rgba(217, 177, 140, 0.1) 100%);
  border: 1px solid rgba(212, 165, 116, 0.3);
  border-radius: var(--border-radius);
  padding: var(--spacing-md) 20px;
  text-align: center;
  margin-top: var(--spacing-md);
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 600;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.products-page .products-hero {
  text-align: center;
  padding: var(--spacing-xl) 20px;
  background: linear-gradient(135deg, var(--color-primary), #D1B3C4);
  color: white;
}

.products-page .products-hero h1 {
  font-size: 42px;
  margin: 0 0 10px;
}

.products-page .products-hero p {
  margin: 0;
  font-size: 17px;
  opacity: 0.95;
}

.products-page .product-category-nav {
  position: sticky;
  top: 70px;
  z-index: 900;
  background: var(--color-bg-light);
  text-align: center;
  padding: 14px 10px;
  box-shadow: var(--shadow-light);
}

.products-page .product-category-nav a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 700;
  margin: 8px 12px;
  font-size: 13px;
  text-transform: uppercase;
  display: inline-block;
}

.products-page .product-category-nav a:hover {
  color: var(--color-accent);
}

.products-page .products-container {
  max-width: 1250px;
  margin: auto;
  padding: var(--spacing-lg) 20px;
}

.products-page .product-section-title {
  color: var(--color-primary);
  font-size: 30px;
  margin: var(--spacing-lg) 0 var(--spacing-sm);
  text-align: center;
  position: relative;
}

.products-page .product-section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  display: block;
  margin: 12px auto 0;
  border-radius: var(--border-radius);
}

.products-page .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--spacing-md);
  justify-items: center;
}

.products-page .store-card {
  width: 100%;
  max-width: 260px;
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(107, 76, 123, 0.10);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}

.products-page .store-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-deep);
}

.products-page .store-img {
  height: 220px;
  background: var(--color-primary);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.products-page .store-card:hover .store-img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

.products-page .store-info {
  padding: 18px;
  text-align: left;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.products-page .store-info h3 {
  margin: 0 0 12px;
  color: var(--color-primary);
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  flex-grow: 1;
}

.products-page .store-info p {
  margin: 0 0 14px;
  color: #2e7d32;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Product card actions: primary WhatsApp + secondary details */
.products-page .store-card-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-top: auto;
}

.products-page .store-card-actions .store-btn {
  display: block;
  box-sizing: border-box;
  width: 100%;
  text-align: center;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: var(--border-radius-full);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.products-page .store-card-actions .store-btn--primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, #8B5A9A 100%);
  color: white;
  border: 2px solid transparent;
  box-shadow: 0 2px 8px rgba(107, 76, 123, 0.2);
}

.products-page .store-card-actions .store-btn--primary:hover {
  background: linear-gradient(135deg, var(--color-accent) 0%, #E5B844 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 162, 39, 0.3);
}

.products-page .store-card-actions .store-btn--secondary {
  background: white;
  color: var(--color-primary);
  border: 2px solid rgba(107, 76, 123, 0.35);
  box-shadow: none;
}

.products-page .store-card-actions .store-btn--secondary:hover {
  background: rgba(107, 76, 123, 0.06);
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-1px);
}

@media (max-width: 700px) {
  .products-page .products-hero h1 {
    font-size: 32px;
  }

  .products-page .product-category-nav {
    top: 60px;
  }

  .products-page .store-img {
    height: 190px;
  }

  .search-section {
    padding: var(--spacing-sm) 15px;
  }

  .search-input {
    padding: 12px 16px 12px 40px;
    font-size: 16px;
  }

  .search-icon {
    left: 14px;
    font-size: 16px;
  }

  .no-products-message {
    padding: var(--spacing-sm) 15px;
    font-size: 14px;
    margin-top: var(--spacing-sm);
  }

  .products-page .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: var(--spacing-sm);
  }

  .products-page .store-card {
    max-width: 100%;
  }

  .products-page .store-info {
    padding: 14px;
  }

  .products-page .store-info h3 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .products-page .store-info p {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .products-page .store-card-actions {
    gap: 8px;
  }

  .products-page .store-card-actions .store-btn {
    padding: 8px 14px;
    font-size: 12px;
  }
}

/* ===== PRODUCT DETAIL PAGE STYLES ===== */

.product-detail-page {
  background: linear-gradient(135deg, #fff6d5 0%, #fff8e1 100%);
}

/* BREADCRUMB NAVIGATION */
.breadcrumb-section {
  background: white;
  padding: var(--spacing-sm) 5%;
  border-bottom: 1px solid rgba(107, 76, 123, 0.08);
}

.breadcrumb-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.breadcrumb-container a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.breadcrumb-container a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.breadcrumb-divider {
  color: var(--color-text-muted);
  margin: 0 4px;
}

.breadcrumb-current {
  color: var(--color-text-muted);
  font-weight: 600;
}

/* MAIN PRODUCT CONTAINER */
.product-detail-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--spacing-lg) 5%;
}

/* PRODUCT HERO SECTION */
.product-hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: start;
  background: white;
  border-radius: var(--border-radius);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-light);
  margin-bottom: var(--spacing-xl);
}

/* PRODUCT IMAGE CONTAINER */
.product-image-container {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-image-main {
  width: 100%;
  height: 780px;
  background: #f8f6fc;
  border-radius: var(--border-radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.5s ease;
}

.product-image-main:hover img {
  transform: scale(1.02);
}

/* PRODUCT INFO SECTION */
.product-info-section {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.product-category-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(212, 165, 116, 0.1) 100%);
  color: var(--color-accent);
  padding: 6px 16px;
  border-radius: var(--border-radius-full);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}

.product-title {
  font-family: var(--font-serif);
  font-size: 42px;
  color: var(--color-primary);
  margin: 0;
  font-weight: 800;
  line-height: 1.2;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}

.stars {
  color: #FFB800;
  font-size: 18px;
  letter-spacing: 2px;
}

.rating-text {
  color: var(--color-text-muted);
  font-size: 14px;
}

/* PRICE SECTION */
.product-price-section {
  padding: var(--spacing-md);
  background: linear-gradient(135deg, rgba(245, 241, 232, 0.6) 0%, rgba(217, 177, 140, 0.1) 100%);
  border-radius: var(--border-radius);
  border: 1px solid rgba(212, 165, 116, 0.2);
}

.product-price {
  font-size: 48px;
  font-weight: 800;
  color: #2e7d32;
  margin: 0 0 8px 0;
}

.price-note {
  font-size: 14px;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* BENEFITS QUICK SECTION */
.product-benefits-quick {
  padding: var(--spacing-md);
  background: white;
  border: 2px solid rgba(107, 76, 123, 0.1);
  border-radius: var(--border-radius);
}

.product-benefits-quick h3 {
  margin: 0 0 12px 0;
  font-size: 16px;
  color: var(--color-primary);
  font-weight: 700;
}

.benefits-list {
  margin: 0;
  padding: 0 0 0 20px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.benefits-list li {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.6;
  position: relative;
  padding-left: 12px;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

/* STOCK STATUS */
.stock-status {
  padding: 12px 16px;
  border-radius: var(--border-radius);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.stock-status.in-stock {
  background: rgba(37, 211, 102, 0.1);
  color: #20BA5A;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

/* PRODUCT ACTIONS */
.product-actions {
  display: flex;
  gap: var(--spacing-sm);
  align-items: stretch;
}

.btn-order-primary {
  flex: 1;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #8B5A9A 100%);
  color: white;
  text-decoration: none;
  border-radius: var(--border-radius-full);
  font-weight: 700;
  font-size: 16px;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.btn-order-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-deep);
  background: linear-gradient(135deg, #5A3F6B 0%, #6B4C7B 100%);
}

.btn-wishlist {
  padding: 14px 24px;
  background: white;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  border-radius: var(--border-radius-full);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-wishlist:hover {
  background: var(--color-accent);
  color: white;
  transform: scale(1.05);
}


/* PRODUCT DETAILS SECTION */
.product-details-section {
  background: white;
  border-radius: var(--border-radius);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-light);
  margin-bottom: var(--spacing-xl);
}

/* TABS */
.details-tabs {
  display: flex;
  gap: 8px;
  border-bottom: 2px solid rgba(107, 76, 123, 0.1);
  margin-bottom: var(--spacing-lg);
  overflow-x: auto;
}

.tab-button {
  padding: 14px 20px;
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
}

.tab-button:hover {
  color: var(--color-primary);
}

.tab-button.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-accent);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-content h3 {
  font-size: 22px;
  color: var(--color-primary);
  margin: 0 0 16px 0;
  font-weight: 700;
}

.tab-content p {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.8;
  margin: 0 0 16px 0;
}

/* BENEFITS GRID */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.benefit-card {
  background: linear-gradient(135deg, rgba(245, 241, 232, 0.5) 0%, rgba(217, 177, 140, 0.1) 100%);
  border: 1px solid rgba(212, 165, 116, 0.2);
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-light);
}

.benefit-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 12px;
}

.benefit-card h4 {
  font-size: 16px;
  color: var(--color-primary);
  margin: 0 0 8px 0;
  font-weight: 700;
}

.benefit-card p {
  font-size: 13px;
  color: var(--color-text-light);
  margin: 0;
  line-height: 1.6;
}

/* USAGE STEPS */
.usage-steps {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.step {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: var(--spacing-md);
  align-items: flex-start;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary-bright) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 16px;
  color: var(--color-primary);
  margin: 0 0 8px 0;
  font-weight: 700;
}

.step-content p {
  font-size: 14px;
  color: var(--color-text-light);
  margin: 0;
  line-height: 1.6;
}

/* TESTIMONIALS DETAIL SECTION */
.testimonials-detail-section {
  background: white;
  border-radius: var(--border-radius);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-light);
  margin-bottom: var(--spacing-xl);
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
}

.testimonials-detail-section h2 {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--color-primary);
  margin: 0 0 8px 0;
  font-weight: 800;
}

.testimonials-subtitle {
  font-size: 16px;
  color: var(--color-text-muted);
  margin: 0 0 var(--spacing-lg) 0;
  font-weight: 300;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.testimonial-item {
  background: linear-gradient(135deg, rgba(245, 241, 232, 0.4) 0%, rgba(243, 234, 242, 0.2) 100%);
  border: 1px solid rgba(212, 165, 116, 0.2);
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  transition: all 0.3s ease;
}

.testimonial-item:hover {
  box-shadow: var(--shadow-light);
  transform: translateY(-2px);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: var(--spacing-sm);
}

.reviewer-info h4 {
  font-size: 16px;
  color: var(--color-primary);
  margin: 0 0 4px 0;
  font-weight: 700;
}

.review-location {
  font-size: 12px;
  color: var(--color-text-muted);
}

.testimonial-item .stars {
  color: #FFB800;
  font-size: 16px;
  letter-spacing: 2px;
  flex-shrink: 0;
}

.review-text {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin: 0;
  font-style: italic;
}

.btn-view-all-reviews {
  display: block;
  margin: 0 auto;
  padding: 12px 32px;
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: var(--border-radius-full);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-view-all-reviews:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}

/* RELATED PRODUCTS SECTION */
.related-products-section {
  background: white;
  border-radius: var(--border-radius);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-light);
  margin-bottom: var(--spacing-xl);
}

.related-container {
  max-width: 1400px;
  margin: 0 auto;
}

.related-products-section h2 {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--color-primary);
  margin: 0 0 8px 0;
  font-weight: 800;
}

.related-subtitle {
  font-size: 16px;
  color: var(--color-text-muted);
  margin: 0 0 var(--spacing-lg) 0;
  font-weight: 300;
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
}

.related-product-card {
  background: white;
  border: 1px solid rgba(107, 76, 123, 0.1);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-light);
}

.related-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

.related-product-image {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  overflow: hidden;
}

.related-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.related-product-card:hover .related-product-image img {
  transform: scale(1.08);
}

.related-product-info {
  padding: var(--spacing-sm);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.related-product-info h4 {
  font-size: 15px;
  color: var(--color-primary);
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
}

.related-price {
  font-size: 18px;
  color: #2e7d32;
  font-weight: 800;
  margin: 0;
}

.related-benefit {
  font-size: 12px;
  color: var(--color-text-muted);
  margin: 0;
  font-weight: 500;
}

.btn-related-view {
  display: inline-block;
  padding: 8px 14px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #8B5A9A 100%);
  color: white;
  text-decoration: none;
  border-radius: var(--border-radius-full);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
}

.btn-related-view:hover {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary-bright) 100%);
  transform: translateY(-2px);
}

/* MOBILE RESPONSIVE - PRODUCT DETAIL */
@media (max-width: 1024px) {
  .product-hero-section {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
  }

  .product-image-main {
    height: 460px;
  }

  .product-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .product-detail-container {
    padding: var(--spacing-md) 5%;
  }

  .product-hero-section {
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
  }

  .product-image-main {
    height: 560px;
  }

  .product-title {
    font-size: 26px;
  }

  .product-price {
    font-size: 36px;
  }

  .product-actions {
    flex-direction: column;
  }

  .details-tabs {
    flex-wrap: wrap;
  }

  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-sm);
  }

  .benefit-card {
    padding: var(--spacing-sm);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .related-products-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}

/* --- PREMIUM TESTIMONIALS (About + Services) --- */
.testimonials-premium {
  background: linear-gradient(165deg, #faf7f2 0%, #f5eef6 38%, #ebe3f2 100%);
  padding: var(--spacing-xl) 5%;
  border-top: 1px solid rgba(107, 76, 123, 0.1);
}

.testimonials-premium-container {
  max-width: 1180px;
  margin: 0 auto;
}

.testimonials-premium-container > h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  color: var(--color-primary);
  text-align: center;
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.testimonials-premium-subtitle {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto var(--spacing-lg);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-light);
}

.testimonials-premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: var(--spacing-md);
  align-items: stretch;
}

.testimonial-premium-card {
  margin: 0;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.97) 0%, rgba(252, 249, 255, 0.99) 100%);
  border: 1px solid rgba(107, 76, 123, 0.14);
  border-radius: 18px;
  padding: var(--spacing-md) var(--spacing-md) calc(var(--spacing-md) + 4px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 12px 36px rgba(75, 50, 90, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-premium-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    rgba(212, 165, 116, 0.95) 0%,
    var(--color-primary-light) 48%,
    rgba(201, 162, 39, 0.85) 100%
  );
}

.testimonial-premium-card:hover {
  transform: translateY(-5px);
  border-color: rgba(107, 76, 123, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 20px 44px rgba(75, 50, 90, 0.11);
}

.testimonial-premium-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1rem;
  padding-top: 10px;
}

.testimonial-premium-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: linear-gradient(135deg, rgba(107, 76, 123, 0.1) 0%, rgba(155, 111, 168, 0.12) 100%);
  padding: 9px 16px;
  border-radius: var(--border-radius-full);
  border: 1px solid rgba(107, 76, 123, 0.12);
}

.testimonial-premium-text {
  margin: 0;
  padding: 0 0 0 1rem;
  border: none;
  border-left: 3px solid rgba(155, 111, 168, 0.35);
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--color-text-dark);
}

.testimonial-premium-text p {
  margin: 0;
  font-style: italic;
  quotes: none;
}

@media (max-width: 600px) {
  .testimonials-premium {
    padding: var(--spacing-lg) 20px;
  }

  .testimonials-premium-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }

  .testimonial-premium-card {
    padding: var(--spacing-sm) var(--spacing-sm) calc(var(--spacing-sm) + 4px);
  }
}

/* ============================================
   COURSE DETAIL PAGE - Reusable Service Page
   ============================================ */

.course-detail-page {
  background: linear-gradient(135deg, #fff6d5 0%, #fff8e1 100%);
}

.course-detail-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--spacing-lg) 5%;
}

/* COURSE HERO SECTION */
.course-hero-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  background: white;
  border-radius: var(--border-radius);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-light);
  margin-bottom: var(--spacing-xl);
}

/* COURSE INFO SECTION */
.course-info-section {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.course-category-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(212, 165, 116, 0.1) 100%);
  color: var(--color-accent);
  padding: 6px 16px;
  border-radius: var(--border-radius-full);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}

.course-title {
  font-family: var(--font-serif);
  font-size: 42px;
  color: var(--color-primary);
  margin: 0;
  font-weight: 800;
  line-height: 1.2;
}

.course-tagline {
  font-size: 16px;
  color: var(--color-text-light);
  margin: 0;
  line-height: 1.6;
}

.course-tagline p {
  margin: 0;
}

/* COURSE BENEFITS QUICK SECTION */
.course-benefits-quick {
  padding: var(--spacing-md);
  background: white;
  border: 2px solid rgba(107, 76, 123, 0.1);
  border-radius: var(--border-radius);
}

.course-benefits-quick h3 {
  margin: 0 0 12px 0;
  font-size: 16px;
  color: var(--color-primary);
  font-weight: 700;
}

.course-benefits-list {
  margin: 0;
  padding: 0 0 0 20px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.course-benefits-list li {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.6;
  position: relative;
  padding-left: 12px;
}

.course-benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

/* COURSE SESSION INFO */
.course-session-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-sm);
  padding: var(--spacing-md);
  background: linear-gradient(135deg, rgba(245, 241, 232, 0.6) 0%, rgba(217, 177, 140, 0.1) 100%);
  border-radius: var(--border-radius);
  border: 1px solid rgba(212, 165, 116, 0.2);
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.info-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-value {
  font-size: 16px;
  color: var(--color-primary);
  font-weight: 600;
}

.course-price {
  font-size: 24px !important;
  color: var(--color-accent) !important;
  font-weight: 800 !important;
}

/* COURSE ACTIONS */
.course-actions {
  display: flex;
  gap: var(--spacing-sm);
}

.btn-book-primary {
  flex: 1;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #8B5A9A 100%);
  color: white;
  text-decoration: none;
  border-radius: var(--border-radius-full);
  font-weight: 700;
  font-size: 16px;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.btn-book-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-deep);
  background: linear-gradient(135deg, #5A3F6B 0%, #6B4C7B 100%);
}

/* COURSE DETAILS SECTION */
.course-details-section {
  background: white;
  border-radius: var(--border-radius);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-light);
  margin-bottom: var(--spacing-xl);
}

.course-detail__tabs-wrap {
  background: white;
  border-radius: var(--border-radius);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-light);
  margin-bottom: var(--spacing-xl);
}

.details-tabs {
  display: flex;
  gap: 8px;
  border-bottom: 2px solid rgba(107, 76, 123, 0.1);
  margin-bottom: var(--spacing-lg);
  overflow-x: auto;
}

/* SESSION STEPS */
.session-steps {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.session-step {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: var(--spacing-md);
  align-items: flex-start;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary-bright) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 16px;
  color: var(--color-primary);
  margin: 0 0 6px 0;
  font-weight: 700;
}

.step-content p {
  font-size: 14px;
  color: var(--color-text-light);
  margin: 0;
  line-height: 1.6;
}

/* RELATED SERVICES SECTION */
.related-services-section {
  background: white;
  border-radius: var(--border-radius);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-light);
}

.related-container {
  max-width: 1400px;
  margin: 0 auto;
}

.related-container h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--color-primary);
  margin: 0 0 8px 0;
  font-weight: 800;
}

.related-subtitle {
  font-size: 14px;
  color: var(--color-text-muted);
  margin: 0 0 var(--spacing-lg) 0;
}

.related-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
}

.related-service-card {
  background: linear-gradient(135deg, rgba(245, 241, 232, 0.5) 0%, rgba(217, 177, 140, 0.1) 100%);
  border: 1px solid rgba(212, 165, 116, 0.2);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.related-service-info {
  padding: var(--spacing-md);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}


.related-service-info h4 {
  font-size: 16px;
  color: var(--color-primary);
  margin: 0 0 6px 0;
  font-weight: 700;
  line-height: 1.4;
}

.related-category {
  font-size: 12px;
  color: var(--color-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 8px 0;
}

.related-price {
  font-size: 16px;
  color: #2e7d32;
  font-weight: 700;
  margin: 0 0 var(--spacing-sm) 0;
}

.btn-related-view {
  padding: 10px 16px;
  background: transparent;
  color: var(--color-accent);
  text-decoration: none;
  border: 2px solid var(--color-accent);
  border-radius: var(--border-radius-full);
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-related-view:hover {
  background: var(--color-accent);
  color: white;
}

/* RESPONSIVE - Course Detail */
@media (max-width: 768px) {
  .course-hero-section {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
  }

  .course-session-info {
    grid-template-columns: 1fr;
  }

  .course-title {
    font-size: 32px;
  }

  .details-tabs {
    gap: 4px;
  }

  .tab-button {
    padding: 10px 12px;
    font-size: 12px;
  }

  .related-services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .course-detail-container {
    padding: var(--spacing-md) 4%;
  }

  .course-hero-section {
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
  }

  .course-title {
    font-size: 24px;
  }

  .course-details-section,
  .course-detail__tabs-wrap {
    padding: var(--spacing-md);
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .session-step {
    grid-template-columns: 40px 1fr;
    gap: var(--spacing-sm);
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .related-services-section {
    padding: var(--spacing-md);
  }
}
}

/* MOBILE RESPONSIVENESS ENHANCEMENTS */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  header {
    flex-direction: column;
    align-items: stretch;
    padding: 15px 4%;
  }

  nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  nav a {
    flex: 1 1 auto;
    min-width: 96px;
    text-align: center;
  }

  .nav-cta {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .breadcrumb-container {
    flex-wrap: wrap;
    gap: 8px;
  }

  .breadcrumb-section {
    padding: 12px 4%;
  }

  .hero {
    height: auto;
    min-height: 420px;
    padding: 50px 0;
  }

  .hero-content {
    padding: 0 18px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 6vw, 3rem);
  }

  .hero-subtitle,
  .hero-description {
    font-size: 15px;
  }

  .hero-description {
    max-width: 640px;
    margin: 10px auto 24px;
  }

  .grid,
  .section .grid,
  .service-grid,
  .related-services-grid,
  .related-products-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .product-image-main {
    height: 420px;
  }

  .product-title,
  .course-title {
    font-size: 32px;
  }

  .product-price {
    font-size: 36px;
  }

  .product-actions,
  .course-actions {
    flex-direction: column;
  }

  .btn-order-primary,
  .btn-book-primary,
  .btn-primary,
  .btn-secondary,
  .btn-sm {
    width: 100%;
    max-width: 100%;
  }

  .footer-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-box a {
    margin-right: 12px;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 600px) {
  html {
    font-size: 14px;
  }

  header {
    padding: 12px 3%;
  }

  nav a {
    margin: 0 8px;
    font-size: 13px;
  }

  .btn-sm,
  .btn-primary,
  .btn-secondary,
  .btn-order-primary,
  .btn-book-primary {
    padding: 12px 18px;
    font-size: 14px;
  }

  .hero-title {
    font-size: clamp(1.9rem, 7vw, 2.4rem);
  }

  .hero-subtitle,
  .hero-description {
    font-size: 14px;
  }

  .product-image-main {
    height: 340px;
  }

  .product-title,
  .course-title {
    font-size: 26px;
  }

  .product-price {
    font-size: 28px;
  }

  .product-price-section,
  .course-session-info {
    padding: var(--spacing-sm);
  }

  .course-session-info {
    grid-template-columns: 1fr;
  }

  .details-tabs {
    gap: 4px;
  }

  .tab-button {
    font-size: 12px;
    padding: 10px 12px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }

  .footer-box {
    text-align: left;
  }

  .whatsapp-float {
    width: 48px;
    height: 48px;
    bottom: 14px;
    right: 14px;
  }
}

@media (max-width: 480px) {
  header {
    padding: 12px 2.5%;
  }

  .hero {
    padding: 40px 0;
  }

  .breadcrumb-section {
    padding: 10px 3%;
  }

  .product-detail-container,
  .course-detail-container,
  .services-section,
  .section {
    padding-left: 3%;
    padding-right: 3%;
  }

  .product-actions,
  .course-actions {
    gap: 12px;
  }

  .product-title,
  .course-title {
    font-size: 22px;
  }

  .tab-button {
    padding: 10px 10px;
  }

  .footer-bottom {
    font-size: 13px;
  }
