/* ==========================================================================
   BeeYouTeaFull Mobile Salon - Global Stylesheet
   Luxury Beauty Services at Your Doorstep
   ========================================================================== */

/* ---------- CSS Variables (Brand Tokens) ---------- */
:root {
  --color-olive: #1F4D3A;
  --color-olive-dark: #143326;
  --color-olive-light: #2C6B52;
  --color-gold: #D4AF37;
  --color-gold-soft: #E6C76E;
  --color-gold-deep: #B8962E;
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-cream: #FAF7F0;
  --color-gray: #6b6b6b;
  --color-light-gray: #f5f5f5;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.16);
  --shadow-gold: 0 8px 24px rgba(212, 175, 55, 0.25);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --container: 1200px;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: #2a2a2a;
  background-color: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-black);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

/* ---------- Utility Classes ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-tight { padding: 70px 0; }

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

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold-deep);
  margin-bottom: 16px;
}

.section-title {
  color: var(--color-olive);
  margin-bottom: 20px;
}

.section-subtitle {
  color: var(--color-gray);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto;
}

/* Gold Divider */
.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 20px auto;
  width: fit-content;
}

.gold-divider::before,
.gold-divider::after {
  content: '';
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.gold-divider-icon {
  color: var(--color-gold);
  font-size: 1.5rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border: 2px solid transparent;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-deep));
  color: var(--color-black);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-gold-soft), var(--color-gold));
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-gold);
}

.btn-outline:hover {
  background: var(--color-gold);
  color: var(--color-black);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--color-white);
}

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

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
  padding: 18px 0;
}

.header.scrolled {
  background: var(--color-olive);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
}

/* Solid header on inner pages */
.header.solid {
  background: var(--color-olive);
  box-shadow: var(--shadow-md);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-gold);
}

.nav-logo img {
  height: 48px;
  width: auto;
  max-width: 72px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
  transition: var(--transition);
}

.nav-logo:hover img {
  transform: rotate(-4deg) scale(1.05);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  position: relative;
  color: var(--color-white);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-gold-soft);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-gold);
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ==========================================================================
   HERO SECTIONS
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #000;
  z-index: -2;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

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

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

.hero-mobile-img {
  display: none;
}

@media (max-width: 768px) {
  .hero-desktop-img {
    display: none;
  }
  .hero-mobile-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.hero-content {
  max-width: 900px;
  animation: fadeInUp 1.2s ease-out;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold-soft);
  margin-bottom: 24px;
}

.hero-title {
  color: var(--color-gold);
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--color-white);
  margin: 0 auto 40px;
  max-width: 720px;
  opacity: 0.95;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Page (inner) hero banner */
.page-hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  padding: 140px 24px 80px;
  background: #000;
  overflow: hidden;
}

.page-hero-desktop-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  z-index: 0;
  display: block;
  will-change: auto;
  content-visibility: visible;
}

.page-hero-mobile-img {
  display: none;
}

@media (max-width: 768px) {
  .page-hero-desktop-img {
    display: none;
  }
  .page-hero-mobile-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    z-index: 0;
    display: block;
  }
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  max-width: 800px;
  z-index: 2;
}

.page-hero h1 {
  color: var(--color-gold);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--color-white);
  opacity: 0.95;
}

/* ==========================================================================
   CARDS & GRIDS
   ========================================================================== */
.grid {
  display: grid;
  gap: 30px;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 175, 55, 0.4);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.8rem;
  color: var(--color-white);
  box-shadow: var(--shadow-gold);
}

.card h3 {
  color: var(--color-olive);
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.card p {
  color: var(--color-gray);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ==========================================================================
   ABOUT PREVIEW (Two Column)
   ========================================================================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--color-olive-light), var(--color-olive));
}

.two-col-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-lg);
  pointer-events: none;
  margin: 15px;
}

.two-col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.two-col-content h2 {
  color: var(--color-olive);
  margin-bottom: 20px;
}

.two-col-content .section-eyebrow {
  margin-bottom: 12px;
}

.two-col-content p {
  color: var(--color-gray);
  margin-bottom: 20px;
  line-height: 1.8;
}

/* Placeholder images using gradients */
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-align: center;
  padding: 20px;
  position: relative;
}

.img-placeholder::before {
  content: '✦';
  position: absolute;
  font-size: 3rem;
  opacity: 0.2;
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.features {
  background: var(--color-cream);
}

/* ==========================================================================
   HOW IT WORKS - TIMELINE
   ========================================================================== */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  margin-top: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-soft) 100%);
  z-index: 0;
}

.timeline-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.timeline-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-white);
  border: 3px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-olive);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.timeline-step:hover .timeline-number {
  background: var(--color-gold);
  color: var(--color-white);
  transform: scale(1.08);
}

.timeline-step h4 {
  color: var(--color-olive);
  margin-bottom: 8px;
}

.timeline-step p {
  font-size: 0.9rem;
  color: var(--color-gray);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials {
  background: linear-gradient(135deg, var(--color-olive-dark), var(--color-olive));
  color: var(--color-white);
}

.testimonials .section-title {
  color: var(--color-gold);
}

.testimonials .section-subtitle {
  color: rgba(255, 255, 255, 0.85);
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.testimonial-card::before {
  content: '“';
  position: absolute;
  top: -10px;
  left: 28px;
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--color-gold);
  line-height: 1;
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.testimonial-text {
  color: #333;
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.testimonial-name {
  font-weight: 600;
  color: var(--color-olive);
  margin: 0;
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--color-gray);
}

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  background: linear-gradient(135deg, var(--color-olive-light), var(--color-olive));
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31, 77, 58, 0.85), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
}

/* Gallery filters */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 24px;
  background: transparent;
  border: 2px solid var(--color-olive);
  border-radius: 50px;
  color: var(--color-olive);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--color-olive);
  color: var(--color-gold);
  border-color: var(--color-olive);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.lightbox-img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-black);
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  transform: rotate(90deg);
  background: var(--color-gold-soft);
}

/* ==========================================================================
   PRICING TABLES
   ========================================================================== */
.pricing-table {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.pricing-table-header {
  background: linear-gradient(135deg, var(--color-olive), var(--color-olive-dark));
  color: var(--color-gold);
  padding: 24px 32px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 20px 32px;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #eee;
  transition: var(--transition);
}

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

.pricing-row:hover {
  background: rgba(212, 175, 55, 0.05);
}

.pricing-row.header-row {
  background: var(--color-cream);
  font-weight: 600;
  color: var(--color-olive);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.pricing-service-name {
  font-weight: 600;
  color: var(--color-olive);
}

.pricing-service-desc {
  font-size: 0.88rem;
  color: var(--color-gray);
  font-weight: 400;
  margin-top: 4px;
}

.pricing-duration {
  color: var(--color-gray);
  font-size: 0.95rem;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-gold-deep);
  text-align: right;
}

/* Package cards */
.package-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
  position: relative;
}

.package-card.featured {
  border-color: var(--color-gold);
  background: linear-gradient(135deg, #fffef7, #fff);
}

.package-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-deep));
  color: var(--color-white);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.package-title {
  color: var(--color-olive);
  margin-bottom: 8px;
}

.package-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-gold-deep);
  margin: 20px 0;
}

.package-price .currency {
  font-size: 1.3rem;
  vertical-align: top;
  margin-right: 4px;
}

.package-features {
  text-align: left;
  margin: 24px 0;
}

.package-features li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--color-gray);
  border-bottom: 1px solid #eee;
}

.package-features li:last-child { border-bottom: none; }

.package-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: 700;
}

/* ==========================================================================
   FORMS
   ========================================================================== */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-weight: 500;
  color: var(--color-olive);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid #e5e5e5;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--color-white);
  transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-error {
  color: #c0392b;
  font-size: 0.85rem;
  margin-top: 6px;
  display: none;
}

.form-error.show { display: block; }

.form-success {
  padding: 20px;
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  border-left: 4px solid #2e7d32;
  display: none;
}

.form-success.show { display: block; }

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--color-olive-dark), var(--color-olive));
  text-align: center;
  color: var(--color-white);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before,
.cta-banner::after {
  content: '✦';
  position: absolute;
  color: var(--color-gold);
  opacity: 0.15;
  font-size: 10rem;
}

.cta-banner::before { top: -30px; left: 5%; }
.cta-banner::after { bottom: -50px; right: 5%; }

.cta-banner h2 {
  color: var(--color-gold);
  margin-bottom: 20px;
  position: relative;
}

.cta-banner p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 32px;
  opacity: 0.95;
  position: relative;
}

.cta-banner .btn {
  position: relative;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.contact-info-card {
  background: var(--color-white);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-gold);
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-white);
}

.contact-info-card h4 {
  color: var(--color-olive);
  margin-bottom: 8px;
}

.contact-info-card p,
.contact-info-card a {
  color: var(--color-gray);
  font-size: 0.95rem;
  word-break: break-word;
}

.contact-info-card a:hover {
  color: var(--color-gold-deep);
}

.contact-form-wrapper {
  background: var(--color-white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 450px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-olive);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--color-gold-deep);
}

.faq-toggle {
  color: var(--color-gold);
  font-size: 1.5rem;
  transition: var(--transition);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--color-gray);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 28px 24px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--color-olive-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand .nav-logo {
  margin-bottom: 20px;
}

.footer-about {
  font-size: 0.95rem;
  line-height: 1.8;
  opacity: 0.85;
}

.footer-title {
  color: var(--color-gold);
  font-size: 1.1rem;
  margin-bottom: 22px;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

.footer-links li {
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--color-gold-soft);
  padding-left: 6px;
}

.footer-contact li {
  margin-bottom: 14px;
  font-size: 0.95rem;
  padding-left: 28px;
  position: relative;
}

.footer-contact li::before {
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-size: 1rem;
}

.footer-contact li.addr::before { content: '📍'; }
.footer-contact li.phone::before { content: '📞'; }
.footer-contact li.email::before { content: '✉'; }
.footer-contact li.hours::before { content: '🕐'; }

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-weight: 600;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--color-gold);
  color: var(--color-olive-dark);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 24px 0;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.75;
}

/* ==========================================================================
   FLOATING WHATSAPP
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  font-size: 1.8rem;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #1da851;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7); }
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   SPECIFIC SECTION STYLES
   ========================================================================== */
.service-detail-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.service-detail-image {
  height: 220px;
  background: linear-gradient(135deg, var(--color-olive-light), var(--color-olive));
  position: relative;
}

.service-detail-content {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-detail-content h3 {
  color: var(--color-olive);
  margin-bottom: 8px;
}

.service-detail-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.85rem;
}

.service-tag {
  background: rgba(212, 175, 55, 0.15);
  color: var(--color-gold-deep);
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 500;
}

.service-detail-content p {
  color: var(--color-gray);
  margin-bottom: 20px;
  flex: 1;
  font-size: 0.93rem;
}

.service-detail-content .btn {
  align-self: flex-start;
  padding: 10px 20px;
  font-size: 0.8rem;
}

/* Founder card */
.founder-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 50px;
  align-items: center;
  background: var(--color-white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.founder-image {
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-olive-light), var(--color-olive));
  box-shadow: var(--shadow-md);
}

.founder-name {
  color: var(--color-olive);
  margin-bottom: 6px;
}

.founder-title {
  color: var(--color-gold-deep);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 20px;
  font-style: italic;
}

.founder-bio p {
  color: var(--color-gray);
  line-height: 1.8;
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.credential {
  background: rgba(212, 175, 55, 0.12);
  color: var(--color-gold-deep);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Before/After */
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.before-after-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.before-after-card:hover {
  transform: translateY(-6px);
}

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ba-image {
  aspect-ratio: 1;
  position: relative;
  background: linear-gradient(135deg, var(--color-olive-light), var(--color-olive));
}

.ba-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-gold);
  color: var(--color-black);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ba-content {
  padding: 20px;
  text-align: center;
}

.ba-content h4 {
  color: var(--color-olive);
  margin-bottom: 4px;
}

/* Stats / Ratings summary */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 30px 20px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--color-white);
  font-size: 1rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Payment methods */
.payment-methods {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.payment-method {
  background: var(--color-white);
  padding: 20px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212, 175, 55, 0.2);
  font-weight: 600;
  color: var(--color-olive);
  transition: var(--transition);
}

.payment-method:hover {
  border-color: var(--color-gold);
  transform: translateY(-3px);
}

/* Service areas */
.service-areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.area-card {
  background: var(--color-white);
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: var(--transition);
  font-weight: 500;
  color: var(--color-olive);
}

.area-card:hover {
  background: var(--color-olive);
  color: var(--color-gold);
  transform: translateY(-4px);
}

/* Trust badges */
.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 32px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212, 175, 55, 0.2);
  min-width: 180px;
}

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

.trust-badge-text {
  font-weight: 600;
  color: var(--color-olive);
  text-align: center;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {
  .section { padding: 70px 0; }

  .two-col,
  .contact-layout,
  .founder-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-card { padding: 32px; }
  .founder-image { max-width: 320px; margin: 0 auto; }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }

  .timeline::before { display: none; }

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

  .pricing-row {
    grid-template-columns: 2fr 1fr;
    padding: 16px 20px;
  }

  .pricing-duration { display: none; }
}

@media (max-width: 768px) {
  html { scroll-padding-top: 70px; }

  .hamburger { display: flex; }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    background: var(--color-olive);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 24px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
  }

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

  .nav-link {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    font-size: 1.05rem;
  }

  .nav-cta {
    margin-top: 12px;
    width: 100%;
  }

  .section { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }

  .hero { min-height: 90vh; padding: 100px 20px 60px; }
  .page-hero { min-height: 40vh; padding: 120px 20px 60px; }

  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }

  .timeline { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .contact-form-wrapper { padding: 32px 24px; }

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

  .stat-number { font-size: 2.5rem; }

  .pricing-row {
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .package-price { font-size: 2.3rem; }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    font-size: 1.6rem;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .card { padding: 28px 22px; }
  .btn { padding: 12px 24px; font-size: 0.85rem; }
  .gallery-grid { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
}

/* ==========================================================================
   ADDITIONAL STYLES (TESTIMONIALS + CONTACT ADDITIONS)
   ========================================================================== */

/* Stat card — used on testimonials page (dark olive band) */
.stats-grid {
  background: linear-gradient(135deg, var(--color-olive) 0%, #143326 100%);
  padding: 60px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212, 175, 55, 0.25);
  margin-top: 20px;
}
.stat-card {
  padding: 20px;
  text-align: center;
  border-right: 1px solid rgba(212, 175, 55, 0.2);
}
.stat-card:last-child { border-right: none; }

@media (max-width: 768px) {
  .stat-card { border-right: none; border-bottom: 1px solid rgba(212, 175, 55, 0.2); padding: 20px 0; }
  .stat-card:last-child { border-bottom: none; }
  .stats-grid { padding: 40px 20px; }
}

/* Video testimonial cards */
.video-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: var(--transition);
}
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-gold);
}
.video-thumb {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #143326 0%, var(--color-olive) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.video-play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-olive);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
  transition: var(--transition);
}
.video-card:hover .video-play {
  background: var(--color-champagne);
  transform: scale(1.1);
}
.video-info {
  padding: 24px;
}
.video-info h4 {
  font-family: var(--font-heading);
  color: var(--color-olive);
  margin-bottom: 8px;
  font-size: 1.25rem;
}
.video-info p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Trust badges — enhanced card layout */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.trust-badge {
  padding: 32px 24px;
  text-align: center;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212, 175, 55, 0.25);
  transition: var(--transition);
  min-width: 0;
}
.trust-badge:hover {
  transform: translateY(-6px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-md);
}
.trust-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-champagne) 100%);
  color: var(--color-olive);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}
.trust-badge h4 {
  font-family: var(--font-heading);
  color: var(--color-olive);
  margin-bottom: 8px;
  font-size: 1.15rem;
}
.trust-badge p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Reverse layout for two-col (alternating stories) */
.two-col-reverse .two-col-image { order: 2; }
.two-col-reverse .two-col-content { order: 1; }
@media (max-width: 992px) {
  .two-col-reverse .two-col-image,
  .two-col-reverse .two-col-content { order: unset; }
}

/* Form wrapper (alias for review form on testimonials) */
.form-wrapper {
  max-width: 780px;
  margin: 20px auto 0;
  background: var(--color-white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212, 175, 55, 0.2);
}
@media (max-width: 768px) {
  .form-wrapper { padding: 32px 24px; }
}

/* Contact info cards (alternate grid styling for contact page top) */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 20px;
}
.contact-info-card {
  background: var(--color-white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: var(--transition);
}
.contact-info-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-md);
}
.contact-info-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-champagne) 100%);
  color: var(--color-olive);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 18px;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}
.contact-info-card h4 {
  font-family: var(--font-heading);
  color: var(--color-olive);
  margin-bottom: 10px;
  font-size: 1.25rem;
}
.contact-info-card p,
.contact-info-card a {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
  word-break: break-word;
}
.contact-info-card a {
  color: var(--color-olive);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}
.contact-info-card a:hover {
  color: var(--color-gold);
}

/* WhatsApp CTA section */
.whatsapp-cta {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--color-white);
  padding: 80px 20px;
  text-align: center;
  border-radius: var(--radius-lg);
  margin: 40px auto;
  max-width: 1100px;
  box-shadow: var(--shadow-md);
}
.whatsapp-cta h2 {
  color: var(--color-white);
  margin-bottom: 18px;
}
.whatsapp-cta p {
  color: rgba(255,255,255,0.95);
  max-width: 620px;
  margin: 0 auto 30px;
  font-size: 1.05rem;
}
.whatsapp-cta .btn {
  background: var(--color-white);
  color: #128C7E;
  border-color: var(--color-white);
  font-weight: 700;
}
.whatsapp-cta .btn:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-olive);
}


/* ==========================================================================
   LUXURY ENHANCEMENTS — ANIMATIONS, ICONS, PRODUCT CARDS
   ========================================================================== */

/* ---------- SVG Icon system ---------- */
.icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

.card-icon svg,
.card-icon .icon {
  width: 32px;
  height: 32px;
  stroke: var(--color-white);
  stroke-width: 1.6;
}

.contact-info-icon svg,
.contact-info-icon .icon {
  width: 26px;
  height: 26px;
  stroke: var(--color-olive);
  stroke-width: 1.75;
}

.trust-icon svg,
.trust-icon .icon {
  width: 28px;
  height: 28px;
  stroke: var(--color-olive);
  stroke-width: 1.75;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.social-icon {
  font-size: 0;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.faq-toggle svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-gold);
  stroke-width: 2.2;
  transition: var(--transition);
}

.footer-contact li {
  padding-left: 30px;
}

.footer-contact li::before {
  content: none !important;
}

.footer-contact li svg {
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Luxury Animations ---------- */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

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

.hero-eyebrow { animation: heroFadeUp 0.8s ease-out 0.1s both; }
.hero-title   { animation: heroFadeUp 1s ease-out 0.3s both; }
.hero .gold-divider { animation: heroFadeIn 1.2s ease-out 0.6s both; }
.hero-subtitle { animation: heroFadeUp 1s ease-out 0.7s both; }
.hero-cta     { animation: heroFadeUp 1s ease-out 0.9s both; }

.page-hero-content > * { animation: heroFadeUp 0.9s ease-out both; }
.page-hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.page-hero-content > *:nth-child(2) { animation-delay: 0.25s; }
.page-hero-content > *:nth-child(3) { animation-delay: 0.4s; }
.page-hero-content > *:nth-child(4) { animation-delay: 0.55s; }

/* Staggered fade-in for grid children */
.fade-in.visible .grid > *,
.fade-in.visible.grid > * {
  animation: heroFadeUp 0.7s ease-out both;
}
.fade-in.visible .grid > *:nth-child(1) { animation-delay: 0.05s; }
.fade-in.visible .grid > *:nth-child(2) { animation-delay: 0.15s; }
.fade-in.visible .grid > *:nth-child(3) { animation-delay: 0.25s; }
.fade-in.visible .grid > *:nth-child(4) { animation-delay: 0.35s; }
.fade-in.visible .grid > *:nth-child(5) { animation-delay: 0.45s; }
.fade-in.visible .grid > *:nth-child(6) { animation-delay: 0.55s; }
.fade-in.visible .grid > *:nth-child(7) { animation-delay: 0.65s; }
.fade-in.visible .grid > *:nth-child(8) { animation-delay: 0.75s; }

/* Smoother fade-in keyframe */
.fade-in {
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Button shimmer on hover */
.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  background-size: 200% 100%;
  background-position: -100% 0;
  transition: background-position 0.7s ease;
  z-index: 1;
  pointer-events: none;
}

.btn:hover::after {
  background-position: 200% 0;
}

.btn:active {
  transform: translateY(1px) scale(0.98);
}

/* Card micro-motion */
.card,
.service-detail-card,
.contact-info-card,
.package-card,
.trust-badge,
.area-card,
.testimonial-card {
  will-change: transform;
}

.card,
.package-card {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.5s ease,
              border-color 0.3s ease;
}

/* ---------- Product Card (E-Commerce) ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.5s ease,
              border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 175, 55, 0.5);
}

.product-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-olive-light), var(--color-olive));
  position: relative;
}

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

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

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-deep));
  color: var(--color-black);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
}

.product-category {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(20, 51, 38, 0.85);
  color: var(--color-gold-soft);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  z-index: 2;
  backdrop-filter: blur(4px);
}

.product-content {
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-olive);
  margin-bottom: 6px;
  line-height: 1.3;
}

.product-description {
  color: var(--color-gray);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-gold-deep);
  letter-spacing: 0.5px;
}

.product-price .currency {
  font-size: 0.95rem;
  vertical-align: baseline;
  margin-right: 2px;
  color: var(--color-olive);
}

.btn-cart {
  background: var(--color-olive);
  color: var(--color-gold);
  border: 2px solid var(--color-olive);
  padding: 10px 18px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

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

.btn-cart:active {
  transform: translateY(0) scale(0.97);
}

.btn-cart svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-cart.added {
  background: var(--color-gold);
  color: var(--color-olive-dark);
  border-color: var(--color-gold);
}

/* Cart toast notification */
.cart-toast {
  position: fixed;
  bottom: 100px;
  right: 24px;
  background: var(--color-olive-dark);
  color: var(--color-gold);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-gold);
  font-weight: 500;
  font-size: 0.95rem;
  z-index: 2500;
  transform: translateY(30px) scale(0.95);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-toast.show {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.cart-toast svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 2;
}

/* Product category heading */
.product-category-title {
  text-align: center;
  margin-bottom: 40px;
}

.product-category-title .section-eyebrow {
  color: var(--color-gold-deep);
  font-weight: 600;
  letter-spacing: 3px;
}

/* Price-only list style (for compact pricing displays) */
.price-list-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212, 175, 55, 0.2);
  overflow: hidden;
  margin-bottom: 40px;
}

.price-list-header {
  background: linear-gradient(135deg, var(--color-olive), var(--color-olive-dark));
  color: var(--color-gold);
  padding: 24px 32px;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  gap: 14px;
}

.price-list-header svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 1.75;
}

.price-list-row {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 18px 32px;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background 0.3s ease;
}

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

.price-list-row:hover {
  background: rgba(212, 175, 55, 0.06);
}

.price-list-name {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-olive);
  font-weight: 500;
  font-size: 0.98rem;
}

.price-list-name .bee-dot {
  color: var(--color-gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.price-list-price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-gold-deep);
}

/* ---------- FAQ toggle rotation for SVG ---------- */
.faq-item.active .faq-toggle svg {
  transform: rotate(45deg);
}

/* ---------- Social icons updates ---------- */
.social-icon {
  text-indent: 0;
}

/* ---------- Respect user motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Mobile polish for product cards */
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; gap: 24px; }
  .product-footer { flex-wrap: wrap; }
  .btn-cart { width: 100%; justify-content: center; }
  .price-list-row { padding: 16px 20px; }
  .price-list-header { padding: 20px 20px; font-size: 1.15rem; }
}

/* ==========================================================================
   ICON UNIFICATION — LUXURY REFINEMENT
   Ensures every SVG is thin-stroke, outlined, and color-matched to the
   luxury palette. Replaces any inadvertent solid/black fills.
   ========================================================================== */
svg { fill: none; }

/* Any icon inside the page uses consistent thin stroke by default */
.card-icon svg,
.contact-info-icon svg,
.card svg,
.footer-contact li svg,
.price-list-header svg,
.social-icon svg,
.whatsapp-float svg,
.faq-toggle svg,
.trust-icon svg,
.btn-cart svg,
.cart-toast svg {
  fill: none !important;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Card icons — circle badge with elegant gold gradient + white thin stroke */
.card-icon {
  background: linear-gradient(135deg, var(--color-gold-soft) 0%, var(--color-gold-deep) 100%);
  box-shadow: 0 6px 18px rgba(184, 150, 46, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.card-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--color-white);
  stroke-width: 1.5;
}

/* Contact info icons — soft gold circle with olive thin stroke */
.contact-info-icon {
  background: linear-gradient(135deg, #FBF5E4 0%, #F2E4B5 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
}
.contact-info-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-olive);
  stroke-width: 1.5;
}

/* Footer contact icons — gold thin stroke */
.footer-contact li svg {
  stroke: var(--color-gold);
  stroke-width: 1.6;
}

/* Price-list header icon — olive on cream, thin stroke */
.price-list-header svg {
  stroke: var(--color-gold-deep);
  stroke-width: 1.6;
}

/* Social icons — thin gold stroke on transparent pill */
.social-icon {
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: var(--color-gold-soft);
}
.social-icon:hover {
  background: var(--color-gold);
  color: var(--color-olive-dark);
  border-color: var(--color-gold);
}
.social-icon svg {
  stroke-width: 1.6;
}

/* FAQ toggle — thin gold + */
.faq-toggle svg {
  stroke-width: 1.8;
}

/* WhatsApp floating button — elegant circle */
.whatsapp-float svg {
  stroke-width: 1.8;
}

/* Button-cart icon — thin stroke */
.btn-cart svg {
  stroke-width: 1.7;
}

/* Cart-toast check icon */
.cart-toast svg {
  stroke-width: 1.8;
}

/* Featured category icons on home (sunglasses, wig, etc) */
.card-icon svg circle,
.card-icon svg rect,
.card-icon svg path {
  fill: none;
}

/* ==========================================================================
   CART BADGE IN HEADER
   ========================================================================== */
.nav-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--color-gold-soft);
  transition: var(--transition);
  margin-left: 4px;
}
.nav-cart:hover {
  background: var(--color-gold);
  color: var(--color-olive-dark);
  border-color: var(--color-gold);
  transform: translateY(-2px);
}
.header.scrolled .nav-cart,
.header.solid .nav-cart {
  border-color: rgba(212, 175, 55, 0.6);
}
.nav-cart svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nav-cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 10px;
  background: var(--color-gold);
  color: var(--color-olive-dark);
  font-size: 0.68rem;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  letter-spacing: 0;
  text-transform: none;
  font-family: var(--font-body);
}
.nav-cart-count.show {
  display: inline-flex;
}

/* ==========================================================================
   SIZE SELECTOR (product cards with multiple sizes)
   ========================================================================== */
.product-sizes {
  margin-bottom: 16px;
}
.product-sizes-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-gold-deep);
  margin-bottom: 10px;
}
.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.size-option {
  border: 1.5px solid rgba(212, 175, 55, 0.5);
  background: var(--color-white);
  color: var(--color-olive);
  padding: 8px 14px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  min-width: 56px;
  text-align: center;
}
.size-option:hover {
  border-color: var(--color-gold);
  background: #FBF5E4;
}
.size-option.selected {
  background: var(--color-olive);
  color: var(--color-gold);
  border-color: var(--color-olive);
  box-shadow: 0 4px 12px rgba(31, 77, 58, 0.25);
}

/* Product description — spec list style for wigs */
.product-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.product-specs li {
  position: relative;
  padding-left: 16px;
  font-size: 0.84rem;
  color: var(--color-gray);
  line-height: 1.55;
}
.product-specs li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
}

/* ==========================================================================
   CART PAGE
   ========================================================================== */
.cart-wrapper {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}
.cart-items {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212, 175, 55, 0.2);
}
.cart-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  align-items: center;
}
.cart-item:last-child { border-bottom: none; }

.cart-item-image {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-olive-light), var(--color-olive));
  flex-shrink: 0;
}
.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item-info h4 {
  font-family: var(--font-heading);
  color: var(--color-olive);
  font-size: 1.1rem;
  margin-bottom: 4px;
  line-height: 1.3;
}
.cart-item-meta {
  color: var(--color-gray);
  font-size: 0.82rem;
  margin-bottom: 10px;
}
.cart-item-meta .size-tag {
  display: inline-block;
  padding: 3px 10px;
  background: #FBF5E4;
  color: var(--color-gold-deep);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  margin-right: 6px;
}
.cart-item-price {
  font-family: var(--font-heading);
  color: var(--color-gold-deep);
  font-weight: 700;
  font-size: 1.05rem;
}
.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: 50px;
  overflow: hidden;
  margin-top: 10px;
}
.qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: var(--color-olive);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.qty-btn:hover {
  background: var(--color-gold);
  color: var(--color-olive-dark);
}
.qty-value {
  min-width: 34px;
  text-align: center;
  font-weight: 600;
  color: var(--color-olive);
  font-size: 0.92rem;
}
.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  justify-content: space-between;
  height: 100%;
}
.cart-remove {
  background: transparent;
  border: none;
  color: var(--color-gray);
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cart-remove:hover {
  background: #F9E6E3;
  color: #C0392B;
}
.cart-remove svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cart-line-total {
  font-family: var(--font-heading);
  color: var(--color-olive);
  font-weight: 700;
  font-size: 1.1rem;
  white-space: nowrap;
}

.cart-summary {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212, 175, 55, 0.3);
  position: sticky;
  top: 100px;
}
.cart-summary h3 {
  font-family: var(--font-heading);
  color: var(--color-olive);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  color: var(--color-gray);
  font-size: 0.95rem;
}
.summary-row.total {
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  font-family: var(--font-heading);
  color: var(--color-olive);
  font-weight: 700;
  font-size: 1.4rem;
}
.summary-row.total .currency {
  color: var(--color-olive);
  font-size: 1rem;
  margin-right: 2px;
}
.summary-row.total .amount {
  color: var(--color-gold-deep);
}
.cart-summary .btn {
  width: 100%;
  margin-top: 18px;
  justify-content: center;
}
.cart-continue {
  text-align: center;
  margin-top: 14px;
  font-size: 0.88rem;
}
.cart-continue a {
  color: var(--color-gold-deep);
  font-weight: 600;
}
.cart-continue a:hover { color: var(--color-olive); }

.cart-empty {
  text-align: center;
  padding: 80px 24px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: var(--shadow-sm);
}
.cart-empty-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FBF5E4 0%, #F2E4B5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.35);
}
.cart-empty-icon svg {
  width: 38px;
  height: 38px;
  stroke: var(--color-gold-deep);
  stroke-width: 1.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cart-empty h3 {
  color: var(--color-olive);
  margin-bottom: 10px;
}
.cart-empty p {
  color: var(--color-gray);
  margin-bottom: 24px;
}

/* ==========================================================================
   CHECKOUT PAGE
   ========================================================================== */
.checkout-wrapper {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}
.checkout-form {
  background: var(--color-white);
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212, 175, 55, 0.2);
}
.checkout-form h3 {
  color: var(--color-olive);
  margin-bottom: 8px;
  font-size: 1.25rem;
}
.checkout-form .form-section {
  margin-bottom: 32px;
}
.checkout-form .form-section:last-of-type {
  margin-bottom: 8px;
}
.checkout-section-eyebrow {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold-deep);
  font-weight: 600;
  margin-bottom: 4px;
}
.checkout-summary-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}
.checkout-summary-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(212, 175, 55, 0.25);
  font-size: 0.9rem;
  color: var(--color-gray);
  line-height: 1.4;
}
.checkout-summary-list li:last-child { border-bottom: none; }
.checkout-summary-list .item-name {
  color: var(--color-olive);
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.checkout-summary-list .item-name small {
  color: var(--color-gray);
  font-size: 0.78rem;
  font-weight: 400;
}
.checkout-summary-list .item-total {
  color: var(--color-gold-deep);
  font-family: var(--font-heading);
  font-weight: 700;
  white-space: nowrap;
}

.order-success {
  display: none;
  text-align: center;
  padding: 60px 32px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-md);
}
.order-success.show { display: block; }
.order-success-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold-soft) 0%, var(--color-gold-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(184, 150, 46, 0.3);
}
.order-success-icon svg {
  width: 44px;
  height: 44px;
  stroke: var(--color-white);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.order-success h2 {
  color: var(--color-olive);
  margin-bottom: 12px;
}
.order-success p {
  color: var(--color-gray);
  max-width: 480px;
  margin: 0 auto 12px;
}
.order-ref {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 18px;
  background: #FBF5E4;
  border-radius: 50px;
  color: var(--color-gold-deep);
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 1px;
}

/* ==========================================================================
   MOBILE RESPONSIVENESS — CART / CHECKOUT / PRODUCTS
   ========================================================================== */
@media (max-width: 992px) {
  .cart-wrapper,
  .checkout-wrapper {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cart-summary {
    position: static;
  }
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
  }
  .product-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .product-footer .btn-cart {
    width: 100%;
    justify-content: center;
  }
  .cart-item {
    grid-template-columns: 72px 1fr;
    gap: 14px;
    padding: 18px 0;
  }
  .cart-item-image {
    width: 72px;
    height: 72px;
  }
  .cart-item-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 4px;
  }
  .cart-items { padding: 8px 18px; }
  .checkout-form { padding: 28px 22px; }
  .cart-toast {
    right: 16px;
    left: 16px;
    bottom: 90px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .size-option {
    font-size: 0.72rem;
    padding: 7px 11px;
    min-width: 48px;
  }
  .nav-cart {
    width: 40px;
    height: 40px;
  }
  .cart-item {
    grid-template-columns: 60px 1fr;
    gap: 12px;
  }
  .cart-item-image {
    width: 60px;
    height: 60px;
  }
  .cart-item-info h4 { font-size: 0.98rem; }
  .cart-summary { padding: 24px 20px; }
  .summary-row.total { font-size: 1.2rem; }
  .checkout-form { padding: 24px 18px; }
}

/* Final icon safety — remove any inadvertent fills on generic icons while
   preserving intended solid fills on badges/indicators. */
.card svg:not([fill]) path,
.card svg:not([fill]) circle,
.card svg:not([fill]) rect,
.price-list-header svg path,
.price-list-header svg circle,
.price-list-header svg rect,
.contact-info-icon svg path,
.contact-info-icon svg circle,
.contact-info-icon svg rect,
.footer-contact li svg path,
.footer-contact li svg circle,
.footer-contact li svg rect {
  fill: none;
}
/* ==========================================================================
   UNIVERSAL FORM INPUT STYLING (applies to all forms with data-form attr)
   ========================================================================== */
form[data-form] label {
  display: block;
  font-weight: 500;
  color: var(--color-olive);
  margin-bottom: 8px;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

form[data-form] input[type="text"],
form[data-form] input[type="email"],
form[data-form] input[type="tel"],
form[data-form] input[type="date"],
form[data-form] input[type="number"],
form[data-form] select,
form[data-form] textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--color-olive);
  background: #FDFCF8;
  transition: var(--transition);
  box-sizing: border-box;
}

form[data-form] input:focus,
form[data-form] select:focus,
form[data-form] textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
}

form[data-form] input::placeholder,
form[data-form] textarea::placeholder {
  color: #A89D87;
  font-style: italic;
  font-size: 0.92rem;
}

form[data-form] textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.5;
}

form[data-form] input[type="date"] {
  font-family: var(--font-body);
  color: var(--color-olive);
}

/* Pay Now button styling inside summary card */
.cart-summary .btn-pay-now {
  width: 100%;
  margin-top: 14px;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-deep) 100%);
  color: var(--color-olive-dark);
  border: 2px solid var(--color-gold-deep);
  font-weight: 700;
  letter-spacing: 1.5px;
}

.cart-summary .btn-pay-now:hover {
  background: linear-gradient(135deg, var(--color-gold-deep) 0%, var(--color-gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(184, 150, 46, 0.35);
}

.cart-summary .btn-pay-now svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-right: 6px;
}
/* ==========================================================================
   PRODUCT IMAGE CAROUSEL (2-image front/back toggle)
   Matches the site's luxury olive + gold aesthetic.
   ========================================================================== */

.product-gallery {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.product-gallery-track {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #F5F1E8 0%, #FAF7EE 100%);
}

.product-gallery-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.product-gallery-img.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* The product-image already has overflow: hidden, so we're safe */
.product-card:hover .product-gallery-img.active {
  transform: scale(1.04);
}

/* Arrow buttons — elegant circular olive + gold */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.5);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--color-olive);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.3s ease, color 0.3s ease,
              transform 0.3s ease, border-color 0.3s ease;
  z-index: 3;
  padding: 0;
}

.gallery-arrow svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}

.gallery-prev { left: 10px; }
.gallery-next { right: 10px; }

/* Reveal arrows on card hover, always visible on touch devices */
.product-card:hover .gallery-arrow,
.product-card:focus-within .gallery-arrow {
  opacity: 1;
}

.gallery-arrow:hover {
  background: var(--color-gold);
  color: var(--color-olive-dark);
  border-color: var(--color-gold);
  transform: translateY(-50%) scale(1.08);
}

.gallery-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

/* Dots — bottom-centered */
.gallery-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(31, 77, 58, 0.35);
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
}

.gallery-dot:hover {
  background: var(--color-gold-deep);
  transform: scale(1.15);
}

.gallery-dot.active {
  background: var(--color-gold);
  width: 22px;
  border-radius: 10px;
}

/* Mobile — always show arrows so users know they can swipe */
@media (max-width: 768px) {
  .gallery-arrow {
    opacity: 1;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
  }
  .gallery-arrow svg {
    width: 16px;
    height: 16px;
  }
  .gallery-prev { left: 8px; }
  .gallery-next { right: 8px; }
  .gallery-dots {
    bottom: 10px;
    padding: 5px 8px;
  }
}

/* Accessibility — respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .product-gallery-img {
    transition: opacity 0.15s linear;
    transform: none !important;
  }
}
/* ====== BeeYouTeaFull Page Preloader ====== */
#byt-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  opacity: 1;
  transition: opacity 0.65s ease;
}
#byt-preloader.hide {
  opacity: 0;
  pointer-events: none;
}
.byt-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: bytLogoIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes bytLogoIn {
  from { opacity: 0; transform: scale(0.82) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.byt-logo-img-wrap {
  position: relative;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.byt-logo-img-wrap img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  animation: bytGlowPulse 1.4s ease-in-out infinite alternate;
}
@keyframes bytGlowPulse {
  0%   {
    filter: drop-shadow(0 0 4px rgba(212,175,55,0.15))
            drop-shadow(0 0 2px rgba(212,175,55,0.1));
  }
  100% {
    filter: drop-shadow(0 0 32px rgba(212,175,55,1))
            drop-shadow(0 0 14px rgba(212,175,55,0.7))
            drop-shadow(0 0 4px rgba(255,220,100,0.5));
  }
}
.byt-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1.5px solid rgba(212,175,55,0.35);
  animation: bytRingPulse 1.4s ease-in-out infinite alternate;
}
.byt-ring-2 {
  inset: -20px;
  border-color: rgba(212,175,55,0.15);
  animation-delay: 0.2s;
}
@keyframes bytRingPulse {
  0%   { opacity: 0.15; transform: scale(0.97); }
  100% { opacity: 1;    transform: scale(1.04); }
}
.byt-brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(212,175,55,0.4);
}
.byt-tagline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
/* ── Policy Band ───────────────────────────────────────────── */
.policy-band {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  background: var(--color-white, #fff);
  border: 1px solid rgba(184,148,74, 0.25);
  border-radius: 16px;
  padding: 40px 48px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.policy-col {
  flex: 1;
  min-width: 0;
}

.policy-col-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.policy-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
}

.policy-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.policy-divider {
  color: var(--color-gold, #b8944a);
  font-size: 1.4rem;
  flex-shrink: 0;
  padding-top: 8px;
  opacity: 0.5;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.policy-list li {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  color: var(--color-body, #4a4a4a);
  line-height: 1.65;
  padding-left: 18px;
  position: relative;
  text-align: left;
}

.policy-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.5rem;
  color: var(--color-gold, #b8944a);
  line-height: 2.2;
}

.policy-list li strong {
  color: var(--color-forest, #1F4D3A);
  font-weight: 600;
}

@media (max-width: 640px) {
  .policy-band {
    flex-direction: column;
    padding: 28px 20px;
    gap: 28px;
  }
  .policy-divider { display: none; }
}
/* ── End Policy Band ──────────────────────────────────────── */
/* ── Gallery image fade-in (index only, no green flash) ── */
#gallery-preview .gallery-item {
  background: #1a1a1a;
}

#gallery-preview .gallery-item img {
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.6s ease;
}

#gallery-preview .gallery-item img.loaded {
  opacity: 1;
}