/* ═══════════════════════════════════════════════════════════════════
   Gaia Cosmedical — Premium Dark Design System
   Inspired by Deia London · BeEnhanced · S&V Aesthetics
   Luxury · Clinical · Refined
   ═══════════════════════════════════════════════════════════════════ */

/* --- CSS Variables --- */
:root {
  --bg: #ffffff;
  --bg-secondary: #f8f7f5;
  --bg-card: #ffffff;
  --bg-card-hover: #f5f5f5;
  --bg-elevated: #fafafa;
  --gold: #549091;
  --gold-light: #76a8a9;
  --gold-dark: #3d7273;
  --accent-2: #9e7690;
  --accent-2-light: #b892a6;
  --text: #1a1a1a;
  --text-light: #4a4540;
  --text-muted: #a09890;
  --border: rgba(0,0,0,0.05);
  --border-strong: rgba(0,0,0,0.08);
  --border-hover: rgba(84,144,145,0.4);
  --glow-gold: 0 0 40px rgba(84,144,145,0.06);
  --glow-card: 0 0 0 1px rgba(84,144,145,0.15), 0 4px 24px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.04);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.06);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --max-width: 1200px;
  --nav-height: 92px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; font-size: 16px; background: var(--bg); overflow-x: hidden; }
@media (max-width: 500px) { html { font-size: 14px; } }

body {
  font-family: var(--font-body);
  color: #000;
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

h1 { font-size: clamp(2.8rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 500; color: #000; }

p { margin-bottom: 1rem; color: #000; }

a { color: #000; text-decoration: none; transition: color var(--transition); }
a:hover { color: #000; }

img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* --- Utility --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.section { padding: calc(var(--nav-height) + 1rem) 0 1rem; }
.section-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #000;
  margin-bottom: 1.25rem;
  font-weight: 500;
  text-align: center;
}
.section-title { text-align: center; margin-bottom: 1rem; color: #000; font-weight: 400; font-size: 1.65rem; letter-spacing: 0.02em; }
.section-subtitle { color: #000; font-weight: 400; margin-left: auto; margin-right: auto;
  font-size: 1.1rem;
  color: #000;
  max-width: 600px;
  margin-bottom: 3rem;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 15px 40px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
  border-radius: var(--radius-sm);
}
.btn-primary {
  background: var(--gold);
  color: #0a0a0a;
}
.btn-primary:hover {
  background: var(--gold-light);
  color: #0a0a0a;
  box-shadow: 0 0 30px rgba(201,169,110,0.25);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: #000;
  border: 1px solid var(--border-strong);
}
.btn-outline:hover {
  border-color: #000;
  color: #000;
}
.btn-whatsapp {
  background: #25D366;
  color: #0a0a0a;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-whatsapp:hover { background: #1EA952; color: #0a0a0a; }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: var(--bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1240px;
  padding: 0 1.5rem;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  color: #000;
  text-decoration: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0 0 0 1.5rem;
}
.nav-logo img {
  height: 120px;
  width: auto;
  animation: logoFadeIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav-logo svg {
  height: 54px;
  width: auto;
  animation: logoFadeIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav-logo:hover img {
  filter: brightness(1.1);
}
.nav-logo:hover svg {
  transform: scale(1.06);
}
@keyframes logoFadeIn {
  0% { opacity: 0; transform: translateY(-8px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* --- Page Header with Hero BG --- */
.hero-bg-page {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-bg-page .container {
  position: relative;
  z-index: 3;
}
.hero-bg-page h1, .hero-bg-page p {
  /* text-shadow removed for clean look */
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #000;
  padding: 0.5rem 0;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: #000; }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: #000; }
.nav-links a.active::after { width: 100%; background: var(--gold); }
/* ===== Dropdown Menu ===== */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a {
  cursor: pointer;
}
.nav-dropdown > a::after {
  content: " ▾";
  font-size: 0.7rem;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  min-width: 190px;
  max-height: none;
  box-shadow: var(--shadow-lg);
  z-index: 1001;
  padding: 0.3rem 0;
}
.nav-dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu a {
  display: block;
  padding: 0.35rem 1rem;
  color: #000;
  text-decoration: none;
  font-size: 0.82rem;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
  font-weight: 400;
  line-height: 1.3;
  transition: background 0.2s, color 0.2s;
}
.dropdown-menu a:hover {
  background: var(--bg-elevated);
  color: #000;
}
@media (max-width: 900px) {
  .nav-dropdown > a::after { content: ""; }
  .nav-dropdown:hover .dropdown-menu { display: none; }
  .nav-dropdown.open .dropdown-menu {
    display: block;
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    padding-left: 1rem;
    max-height: none;
  }
  .nav-dropdown.open .dropdown-menu a {
    padding: 0.45rem 0;
    font-size: 0.85rem;
  }
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  margin: 6px 0;
  transition: var(--transition);
}

/* --- Hero --- */
.hero-photo {
  height: 80vh;
  min-height: 500px;
  background: url('../images/photos/hero-new.jpg') top 20%/cover no-repeat;
}
.hero-caption {
  text-align: center;
  padding: 5rem 1.5rem 6rem;
  background: var(--bg);
}
.hero-caption h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: #000;
  margin: 0 auto 1rem -0.5rem;
  white-space: normal;
}
.hero-caption h1 em { font-style: italic; color: #000; }
.hero-caption p {
  font-size: 1.25rem;
  color: #000;
  max-width: 650px;
  margin: 0 auto 2rem;
}
.hero-badge {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 1.5rem;
}
.hero-badge-link {
  font-size: 0.9rem;
  color: #000;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.hero-badge-link:hover { color: #000; }
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-photo { height: 50vh; min-height: 350px; }
  .hero-caption h1 { font-size: 1.5rem; white-space: normal; overflow-wrap: break-word; }
  .hero-caption p { font-size: 1rem; padding: 0 1rem; }
}
@media (max-width: 500px) {
  .hero-photo { height: 45vh; min-height: 280px; }
  .hero-caption h1 { font-size: 1.0rem; letter-spacing: 0; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; text-align: center; }
}

/* --- Page Bar (Inner Pages) --- */
.page-bar {
  background: var(--bg);
  padding: calc(var(--nav-height) + 1.5rem) 0 1.25rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-bar h1 {
  font-size: 1.25rem;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.04em;
}
.page-bar-bc {
  font-size: 0.8rem;
  color: #000;
  margin-top: 0.35rem;
}
.page-bar-bc a { color: #000; text-decoration: none; }
.page-bar-bc a:hover { text-decoration: underline; }

/* --- Full-Body Background Pages --- */
.page-body-bg {
  position: relative;
  background: center/cover no-repeat;
  padding: 5rem 0;
}
.page-body-overlay {
  position: absolute;
  inset: 0;
  background: #fff;
  z-index: 0;
}
.page-body-bg .container {
  position: relative;
  z-index: 1;
}

/* --- Page Header --- */
.page-header {
  background: #ffffff;
  padding: calc(var(--nav-height) + 5rem) 0 4rem;
  text-align: center;
}
.page-header h1 { color: #2d2a27; font-size: 1.75rem; font-weight: 600; }
.page-header p { max-width: 500px; margin: 0.75rem auto 0; color: #000; font-size: 0.9rem; }

/* --- Cards --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  transition: all var(--transition);
}
.card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  box-shadow: var(--glow-gold);
  transform: translateY(-2px);
}
.card-icon { font-size: 2rem; margin-bottom: 1.5rem; }
.card h3 { margin-bottom: 0.75rem; color: #000; text-align: center; }
.card p { font-size: 0.95rem; margin-bottom: 0; text-align: center; }

/* --- Photo Cards --- */
.card-photo {
  padding: 0 !important;
  background: var(--bg-card) !important;
  overflow: hidden;
}
.card-photo-img {
  height: 120px;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.card-photo:hover .card-photo-img {
  filter: brightness(1.1);
}
.card-photo-body {
  padding: 1.5rem 1.75rem 2rem;
}
.card-photo-body h3 { margin-bottom: 0.5rem; color: #000; }
.card-photo-body p { font-size: 0.92rem; margin-bottom: 0; color: #000; }
.card-photo:hover {
  border-color: var(--border-hover);
  box-shadow: var(--glow-gold);
  transform: translateY(-2px);
}

/* --- Treatment Cards (Overview Grid) --- */
.treatment-card {
  display: block;
  text-decoration: none;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--transition);
}
.treatment-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  box-shadow: var(--glow-gold);
}
.treatment-card h3 { color: #000; margin-bottom: 0.5rem; }
.treatment-card p { color: #000; font-size: 0.9rem; margin-bottom: 0.75rem; }
.treatment-card .price { color: #000; font-weight: 600; font-size: 0.9rem; }

/* --- Treatment Table --- */
.treatment-table {
  width: 100%;
  border-collapse: collapse;
}
.treatment-table th,
.treatment-table td {
  color: #000;
  text-align: center;
  padding: 1.25rem 1rem;
  border-bottom: 1px solid var(--border);
}
.treatment-table th {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #000;
  font-weight: 500;
}
.treatment-table td { font-size: 0.95rem; color: #000; }
.treatment-table td:nth-child(2), .treatment-table td:nth-child(3) { color: #549091; font-weight: 600; }
  color: #000;
.treatment-table tr:hover td { background: var(--bg-card); color: #000; }
.treatment-category {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #000;
  padding: 2.5rem 1rem 0.75rem !important;
  border-bottom: none;
}

/* --- Shop --- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}
.product-card:hover { border-color: var(--border-hover); box-shadow: var(--glow-gold); }
.product-image {
  background: var(--bg-elevated);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 0.85rem;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
}
.product-info { padding: 1.5rem; }
.product-info h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  color: #000;
}
.product-price { font-size: 1.1rem; font-weight: 500; margin-bottom: 1rem; color: #549091; }
.btn-add-cart {
  width: 100%;
  padding: 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--gold);
  color: #0a0a0a;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius-sm);
}
.btn-add-cart:hover { background: var(--gold-hover); }

/* --- Brand Strip --- */
.brand-strip {
  padding: 3rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.brand-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem 4rem;
}
.brand-logo {
  height: 50px;
  width: auto;
  opacity: 1;
  filter: none;
  transition: all 0.3s ease;
}
.brand-logo[src*="bocouture"] { max-width: 180px; }
.brand-logo:hover {
  opacity: 1;
  filter: brightness(1.1);
}

/* --- Cart --- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-sidebar {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: -420px;
  width: 380px;
  max-width: 92vw;
  max-height: 80vh;
  height: auto;
  background: #fff;
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transition: right var(--transition);
  box-shadow: var(--shadow-lg);
  border-radius: 12px 0 0 12px;
  overflow: hidden;
}
.cart-sidebar.open { right: 0; }
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.cart-header h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #000;
}
.cart-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #000;
  padding: 4px;
}
.cart-close:hover { color: #000; }
.cart-items { flex: 1; overflow-y: auto; padding: 1.5rem; }
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-info h4 { font-size: 0.9rem; font-weight: 500; color: #000; }
.cart-item-info p { font-size: 0.85rem; margin: 0; }
.cart-item-remove {
  background: none;
  border: none;
  color: #000;
  cursor: pointer;
  font-size: 1.2rem;
  padding: 4px;
}
.cart-item-remove:hover { color: #C62828; }
.cart-empty { text-align: center; color: #000; padding: 3rem 1rem; }
.cart-footer { padding: 1.5rem; border-top: 1px solid var(--border); }
.cart-total {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #000;
}
.cart-footer .btn { width: 100%; text-align: center; }
.cart-count {
  background: var(--gold);
  color: #0a0a0a;
  font-size: 0.7rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
  font-weight: 600;
}

/* --- Instagram --- */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.5rem;
}
.instagram-item {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #fdf2ec, #faf5f0);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.8rem;
  color: var(--grey);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.instagram-item:hover {
  background: linear-gradient(135deg, #833AB4, #E1306C, #F77737, #FFDC80);
  color: #000;
  transform: translateY(-2px);
}
/* --- Reviews --- */
/* --- Testimonials --- */
/* --- Single Review Carousel --- */
.review-carousel {
  max-width: 650px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.review-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.review-card-single {
  flex: 0 0 100%;
  min-width: 100%;
  text-align: center;
  padding: 2.5rem 2.5rem;
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  font-size: 1.2rem;
  line-height: 1.8;
  color: #000;
}
.review-stars {
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  color: #000;
  margin-bottom: 1rem;
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
}
.review-quote {
  font-style: italic;
  margin: 0 0 1rem;
  color: #000;
  min-height: 60px;
}
.review-author {
  font-weight: 500;
  font-size: 0.95rem;
  color: #000;
}

/* --- Reviews Carousel --- */
.reviews-section { background: var(--bg-secondary); padding: 5rem 0; }
.reviews-carousel { max-width: 900px; margin: 0 auto; position: relative; overflow: hidden; }
.reviews-slide {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  transition: transform 0.5s ease;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.review-stars { color: #000; font-size: 0.8rem; margin-bottom: 0.75rem; }
.review-text { font-size: 0.85rem; color: #000; margin-bottom: 1rem; font-style: italic; line-height: 1.6; }
.review-author { font-size: 0.75rem; color: #000; font-weight: 500; }
.review-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem; }
.review-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-strong);
  cursor: pointer;
  transition: all var(--transition);
}
.review-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* --- About --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image {
  background: var(--bg-elevated);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.about-content p { font-size: 1.05rem; line-height: 1.9; color: #000; }

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-info-icon {
  font-size: 1.25rem;
  color: #000;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-item h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.25rem;
  color: #000;
}
.contact-info-item p { margin: 0; }
.hours-table { width: 100%; }
.hours-table td { padding: 0.5rem 0; font-size: 0.95rem; color: #000; }
.hours-table td:last-child { text-align: right; color: #000; }
.hours-table .closed { color: #000; font-style: italic; }

/* --- Forms --- */
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #000;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  font-size: 0.95rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  transition: border-color var(--transition);
  background: var(--bg-elevated);
  color: #000;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #000;
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* --- Hours --- */
.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.hours-item {
  padding: 1.25rem;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  text-align: center;
  border: 1px solid var(--border);
}
.hours-day {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #000;
  margin-bottom: 0.5rem;
}
.hours-time { font-size: 1rem; color: #000; }
.hours-time.closed { color: #000; font-style: italic; }

/* --- WhatsApp Float --- */
.whatsapp-float {
  position: fixed;
  bottom: 72px;
  right: 2rem;
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  z-index: 999;
  transition: transform 0.3s ease;
  padding: 0;
  box-sizing: border-box;
}
@media (max-width: 500px) {
  .whatsapp-float { bottom: 60px; right: 12px; width: 44px; height: 44px; min-width: 44px; min-height: 44px; }
  .call-float    { bottom: 116px; right: 12px; width: 44px; height: 44px; }
  .ig-float      { bottom: 182px; right: 12px; width: 44px; height: 44px; }
  .bk-float      { bottom: 248px; right: 12px; width: 44px; height: 44px; font-size: 0.55rem; }
}
.whatsapp-float:hover { transform: scale(1.12); }

/* Call Now Float */
.call-float {
  position: fixed;
  bottom: 150px;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #549091;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(84,144,145,0.35);
  z-index: 999;
  transition: transform 0.3s ease;
}
.call-float:hover { transform: scale(1.12); }

/* Instagram Float */
.ig-float {
  position: fixed;
  bottom: 228px;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(220,39,67,0.35);
  z-index: 999;
  transition: transform 0.3s ease;
}
.ig-float:hover { transform: scale(1.12); }


/* Cart Icon in Nav */
.cart-nav-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  margin-right: 0.5rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  color: var(--teal);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.cart-nav-icon:hover { transform: scale(1.1); color: #3a7072; }
.cart-nav-icon svg {
  width: 22px;
  height: 22px;
}
.cart-nav-count {
  position: absolute;
  top: -7px;
  right: -10px;
  background: #c0392b;
  color: #000;
  font-size: 0.6rem;
  font-weight: 700;
  min-width: 17px;
  height: 17px;
  border-radius: 9px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}
@media (max-width: 900px) {
  .cart-nav-icon { margin-left: 0; margin-top: 0.5rem; padding: 0.5rem; }
}

/* Cart Sidebar */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 998;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-sidebar.open { right: 0; }
.cart-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 1.5rem; border-bottom: 1px solid #eee;
}
.cart-header h3 { margin: 0; font-size: 1.2rem; color: var(--teal); }
.cart-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: #999; }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cart-empty { text-align: center; padding: 2rem; color: #999; }
.cart-item { display: flex; justify-content: space-between; align-items: center; padding: 0.8rem 0; border-bottom: 1px solid #f5f5f5; }
.cart-item-info h4 { margin: 0 0 4px; font-size: 0.95rem; }
.cart-item-info p { margin: 0; font-size: 0.85rem; color: var(--grey); }
.cart-item-remove { background: none; border: none; color: #c0392b; cursor: pointer; font-size: 1rem; }
.cart-footer { padding: 1rem 1.5rem; border-top: 1px solid #eee; }
.cart-total { display: flex; justify-content: space-between; font-size: 1.1rem; font-weight: 600; margin-bottom: 1rem; }

/* --- Footer --- */
.footer {
  background: #ffffff;
  border-top: 1px solid var(--border);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo { display:block; margin:0 auto 8px; max-width:200px; height:auto; }
.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #000;
}
.footer p { font-size: 0.9rem; margin-bottom: 0.5rem; }
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1.25rem;
  font-weight: 600;
  color: #000;
}
.footer-links a {
  display: block;
  font-size: 0.9rem;
  color: #000;
  margin-bottom: 0.75rem;
}
.footer-links a:hover { color: #000; }

/* ===== Newsletter ===== */
.newsletter-signup {
  text-align: center;
  padding: 3rem 1.5rem;
  margin: 2rem auto;
  max-width: 600px;
  background: none;
  border-radius: var(--radius-lg);
  
}
.newsletter-signup h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.2rem;
  letter-spacing: -0.01em;
}
.newsletter-signup p {
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.3rem;
}
.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.newsletter-form input {
  padding: 0.8rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-family: var(--font-body);
  min-width: 280px;
  background: var(--bg);
  color: #000;
  transition: border-color 0.2s;
}
.newsletter-form input:focus {
  outline: none;
  border-color: #000;
}
.newsletter-form button {
  padding: 0.8rem 1.8rem;
  background: var(--gold);
  color: #000;
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.newsletter-form button:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}
@media (max-width: 500px) {
  .newsletter-signup { margin: 1.5rem 1rem; }
  .newsletter-form input { min-width: 100%; }
  .newsletter-form { flex-direction: column; }
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 0.8rem;
  color: #000;
}
.social-links { display: flex; gap: 1.25rem; }
.social-links a { font-size: 0.9rem; color: #000; }
.social-links a:hover { color: #000; }

/* --- Blog --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.blog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  transition: all var(--transition);
}
.blog-card:hover { border-color: var(--border-hover); box-shadow: var(--glow-gold); }
.blog-image {
  background: var(--bg-elevated);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}
.blog-info { padding: 1.5rem; }
.blog-date {
  font-size: 0.75rem;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.blog-info h3 { font-size: 1.1rem; font-weight: 500; color: #000; margin-bottom: 0.75rem; }
.blog-info p { font-size: 0.95rem; }

/* --- Booking CTA --- */
.booking-cta {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: #000;
  text-align: center;
  padding: 6rem 0;
}
.booking-cta h2 { color: #000; margin-bottom: 1rem; }
.booking-cta p { color: #000; margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.booking-cta .btn-primary { font-size: 0.85rem; }

/* --- FAQ (Details/Summary) --- */
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary { cursor: pointer; font-weight: 600; font-size: 1.05rem; color: #000; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary span { font-size: 1.3rem; color: #000; transition: transform var(--transition); }
.faq-item[open] summary span { transform: rotate(45deg); }

/* --- Process Steps --- */
.process-step h3 { color: #000; font-size: 2rem; }
.process-step h4 { color: #000; }

/* --- Admin --- */
.admin-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
}
.admin-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 3rem;
  width: 400px;
  max-width: 90vw;
}
.admin-card h2 { text-align: center; margin-bottom: 0.5rem; }
.admin-card .section-subtitle { color: #000; font-weight: 400; margin-left: auto; margin-right: auto; text-align: center; margin-bottom: 2rem; }

/* --- Responsive --- */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--bg);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .menu-toggle { display: block; }
  .hero-image { display: none; }
  .hero-content { max-width: 100%; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-image { aspect-ratio: 16/9; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .cart-sidebar { width: 100%; max-height: 70vh; border-radius: 12px 12px 0 0; top: auto; bottom: 0; transform: none; right: -100vw; }
  .cart-sidebar.open { right: 0; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .hours-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-slide { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  .container { padding: 0 1.25rem; }
  .section { padding: calc(var(--nav-height) + 1rem) 0 1rem; }
  .hero-photo { height: 45vh; min-height: 280px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .reviews-slide { grid-template-columns: 1fr; }
  .card-photo-img { height: 100px; }
  .card-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .treatment-table { font-size: 0.8rem; }
  .treatment-table th, .treatment-table td { padding: 0.75rem 0.5rem; }
  .container { padding: 0 1rem; }
  .section { padding: calc(var(--nav-height) + 0.5rem) 0 0.5rem; }
}

/* --- Animations --- */
@keyframes fadeIn {
  from { opacity: 0; transform: none; }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeIn 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.shimmer {
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.06), transparent);
  background-size: 200% 100%;
  animation: shimmer 2.5s infinite;
}

/* --- Selection --- */
/* ::selection using browser default */
::-moz-selection { background: rgba(201,169,110,0.3); color: #000; }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* --- Team Cards --- */
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-card:hover .team-photo img { transform: scale(1.03); }
.team-photo img { transition: transform 0.4s ease; }

/* Performance: lazy-render below-fold sections (disabled on mobile due to rendering bugs) */
.brands-section,
.services-preview,
.about-section,
.contact-section,
footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}
@media (max-width: 900px) {
  .brands-section,
  .services-preview,
  .about-section,
  .contact-section,
  footer {
    content-visibility: visible;
    contain-intrinsic-size: none;
  }
}

/* --- Carousel Dots --- */
.carousel-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s;
}
.carousel-dots .dot.active {
  background: #fff;
}

.dropdown-menu a { color: #000 !important; font-weight: 500; }
.section-label { color: #000 !important; }
@media (max-width: 900px) { .nav-dropdown.open .dropdown-menu a { color: #000 !important; font-weight: 500; } }

.btn-book-nav {
  flex-shrink: 0;
  margin-right: auto;
  background: #000 !important;
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  margin-left: 0.5rem;
}
.btn-book-nav::after { display: none !important; }
@media (max-width: 900px) {
  .btn-book-nav {
  flex-shrink: 0;
  margin-right: auto; margin-left: 0; margin-top: 0.25rem; display: inline-block; }
}

/* Book Now Float */
.bk-float {
  position: fixed;
  bottom: 306px;
  right: 2rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.65rem;
  text-decoration: none;
  text-align: center;
  line-height: 1.1;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  letter-spacing: 0.3px;
  transition: transform 0.3s ease;
  animation: bk-bounce 2s infinite;
}
@keyframes bk-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.bk-float:hover {
  animation: none;
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .bk-float { bottom: 306px; right: 2rem; }
}
