/* ══════════════════════════════════════════════════════════════
   ETERNAL CLINIC — LUXURY DESIGN SYSTEM
   Premium dark aesthetic · Glassmorphism · Rich animations
   ══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Design Tokens ──────────────────────────────────────────── */
:root {
  --color-bg: #06101a;
  --color-bg-card: rgba(255, 255, 255, 0.03);
  --color-bg-glass: rgba(255, 255, 255, 0.04);
  --color-navy: #0a1628;
  --color-navy-mid: #0d1f38;
  --color-blue: #1A4D8F;
  --color-blue-mid: #2E6DB4;
  --color-blue-glow: rgba(26, 77, 143, 0.25);
  --color-gold: #C9A84C;
  --color-gold-light: #E8C97A;
  --color-gold-glow: rgba(201, 168, 76, 0.2);
  --color-white: #FFFFFF;
  --color-off-white: #e8ecf2;
  --color-gray-light: rgba(255, 255, 255, 0.06);
  --color-gray: rgba(255, 255, 255, 0.1);
  --color-text: #c8d0dc;
  --color-text-heading: #eaf0f9;
  --color-muted: #6b7a8d;
  --color-success: #1A7F5A;
  --color-danger: #C0392B;
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(20px);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --section-py: 100px;
  --section-py-sm: 60px;
  --container: 1280px;
  --gap: 32px;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
  --shadow-glow-gold: 0 0 30px rgba(201, 168, 76, 0.15);
  --shadow-glow-blue: 0 0 30px rgba(26, 77, 143, 0.2);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light Theme Overrides */
:root[data-theme="light"] {
  --color-bg: #f8f9fa;
  --color-navy: #f5f7fa;
  /* Lightened for cart/checkout layouts */
  --color-navy-mid: #e8ecf2;
  /* Lightened for dropdowns and headers */
  --color-blue: #1A4D8F;
  --color-blue-mid: #2E6DB4;
  --color-blue-glow: rgba(26, 77, 143, 0.15);
  --color-gold: #a78b3e;
  /* Darker gold for text visibility */
  --color-gold-light: #C9A84C;
  --color-gold-glow: rgba(201, 168, 76, 0.15);
  --color-white: #ffffff;
  /* Keep white white! */
  --color-off-white: #e8ecf2;
  --color-gray-light: rgba(0, 0, 0, 0.05);
  --color-gray: rgba(0, 0, 0, 0.1);
  --color-text: #475569;
  --color-text-heading: #0f172a;
  --color-muted: #64748b;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(0, 0, 0, 0.08);
  --color-bg-card: rgba(0, 0, 0, 0.02);
  --color-bg-glass: rgba(0, 0, 0, 0.03);
}

/* Light Mode Overrides for Specific Components */
:root[data-theme="light"] .section--alt {
  background: rgba(0, 0, 0, 0.02);
}

/* Header & Nav */
:root[data-theme="light"] .site-header {
  background: rgba(255, 255, 255, 0.85);
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

:root[data-theme="light"] .site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

:root[data-theme="light"] .nav-link {
  color: var(--color-text);
}

:root[data-theme="light"] .nav-link:hover,
:root[data-theme="light"] .nav-link.active {
  color: var(--color-blue);
  background: rgba(0, 0, 0, 0.05);
}

:root[data-theme="light"] .nav-logo img {
  filter: brightness(0);
}

:root[data-theme="light"] .theme-toggle {
  color: var(--color-blue);
  border-color: var(--color-blue);
}

:root[data-theme="light"] .theme-toggle:hover {
  background: rgba(26, 77, 143, 0.1);
}

:root[data-theme="light"] .nav-hamburger span {
  background: var(--color-blue);
}

/* Dropdown */
:root[data-theme="light"] .nav-dropdown {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

:root[data-theme="light"] .nav-dropdown a {
  color: var(--color-text);
}

:root[data-theme="light"] .nav-dropdown a:hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--color-blue);
}

:root[data-theme="light"] .nav-dropdown .dropdown-group {
  border-top-color: rgba(0, 0, 0, 0.06);
}

/* Mobile Menu */
:root[data-theme="light"] .nav-mobile-overlay {
  background: rgba(255, 255, 255, 0.98);
}

:root[data-theme="light"] .nav-mobile-overlay img {
  filter: brightness(0);
}

:root[data-theme="light"] .nav-mobile-links a {
  color: var(--color-text-heading);
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

:root[data-theme="light"] .nav-mobile-links a:hover {
  color: var(--color-blue);
}

:root[data-theme="light"] .nav-mobile-close {
  color: var(--color-text-heading);
}

:root[data-theme="light"] .nav-mobile-cta .btn-outline-white {
  color: var(--color-blue);
  border-color: var(--color-blue);
  background: transparent;
}

:root[data-theme="light"] .nav-mobile-cta .btn-outline-white:hover {
  background: var(--color-blue);
  color: #fff;
}
/* Cards & Components */
:root[data-theme="light"] .card:hover,
:root[data-theme="light"] .service-card:hover,
:root[data-theme="light"] .testimonial-card:hover,
:root[data-theme="light"] .blog-card:hover,
:root[data-theme="light"] .product-card:hover,
:root[data-theme="light"] .clinic-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08), 0 0 20px rgba(26, 77, 143, 0.05);
}

:root[data-theme="light"] .testimonial-card blockquote {
  color: var(--color-text);
  font-weight: 500;
}

:root[data-theme="light"] .service-card::after,
:root[data-theme="light"] .blog-card::after,
:root[data-theme="light"] .product-card::after,
:root[data-theme="light"] .clinic-card::after {
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
}

:root[data-theme="light"] .blog-card-img,
:root[data-theme="light"] .product-card-img,
:root[data-theme="light"] .clinic-card-img,
:root[data-theme="light"] .cart-product-img,
:root[data-theme="light"] .order-item-img {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.06);
}

/* Forms & Checkout Fields */
:root[data-theme="light"] .form-input,
:root[data-theme="light"] .form-select,
:root[data-theme="light"] .form-textarea,
:root[data-theme="light"] .form-field input,
:root[data-theme="light"] .form-field select,
:root[data-theme="light"] .form-field textarea {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.1);
  color: var(--color-text-heading);
}

:root[data-theme="light"] .coupon-row input {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.1);
  color: var(--color-text-heading);
}

:root[data-theme="light"] .faq-question .icon {
  background: rgba(0, 0, 0, 0.05);
}

/* Payment Methods (Checkout) */
:root[data-theme="light"] .pay-method {
  border-color: rgba(0, 0, 0, 0.1);
}

:root[data-theme="light"] .pay-method:hover {
  background: rgba(0, 0, 0, 0.02);
  border-color: var(--color-blue);
}

:root[data-theme="light"] .pay-method.selected {
  background: rgba(0, 0, 0, 0.04);
  border-color: var(--color-blue);
}

:root[data-theme="light"] .pm-icon {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
  color: var(--color-text);
}

:root[data-theme="light"] .step-num {
  background: rgba(0, 0, 0, 0.06);
}

:root[data-theme="light"] .step-line {
  background: rgba(0, 0, 0, 0.06);
}

/* Cart Qty Controls */
:root[data-theme="light"] .qty-control {
  border-color: rgba(0, 0, 0, 0.1);
}

:root[data-theme="light"] .qty-btn {
  background: rgba(0, 0, 0, 0.03);
  color: var(--color-text-heading);
}

:root[data-theme="light"] .qty-btn:hover {
  background: rgba(0, 0, 0, 0.06);
}

:root[data-theme="light"] .qty-input {
  border-left-color: rgba(0, 0, 0, 0.1);
  border-right-color: rgba(0, 0, 0, 0.1);
  color: var(--color-text-heading);
}

/* Hardcoded Dark Sections */
:root[data-theme="light"] .page-hero {
  background: linear-gradient(135deg, #0a1628 0%, #0d2240 100%);
  color: #fff;
}

:root[data-theme="light"] .cta-banner {
  background: linear-gradient(135deg, #0a1628 0%, #0d2240 100%);
}

:root[data-theme="light"] .cta-banner h2 {
  color: #fff;
}

:root[data-theme="light"] .cta-banner p {
  color: rgba(255, 255, 255, 0.7);
}

:root[data-theme="light"] .section--dark {
  background: #0a1628;
  color: #fff;
}

:root[data-theme="light"] .section--dark h2 {
  color: #fff;
}

:root[data-theme="light"] .site-footer {
  background: linear-gradient(180deg, #0a1628 0%, #0d1f38 100%);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

:root[data-theme="light"] .site-footer h4 {
  color: #fff;
}

:root[data-theme="light"] .site-footer p,
:root[data-theme="light"] .site-footer a,
:root[data-theme="light"] .site-footer span,
:root[data-theme="light"] .site-footer .footer-contact-item {
  color: rgba(255, 255, 255, 0.6);
}

:root[data-theme="light"] .footer-social a {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.06);
}

/* Other Details */
:root[data-theme="light"] .breadcrumb a {
  color: var(--color-blue);
}

:root[data-theme="light"] .breadcrumb span {
  color: var(--color-muted);
}

:root[data-theme="light"] .highlight-box {
  background: rgba(0, 0, 0, 0.02);
  border-left-color: var(--color-blue);
}

/* Index Page Specific Overrides */
:root[data-theme="light"] .step-row::before {
  background: rgba(0, 0, 0, 0.1);
}

:root[data-theme="light"] .step-item p {
  color: var(--color-text);
}

:root[data-theme="light"] .step-number {
  background: linear-gradient(135deg, var(--color-blue), var(--color-blue-mid));
  color: #fff;
  box-shadow: 0 4px 12px rgba(26, 77, 143, 0.2);
}

:root[data-theme="light"] .stats-lbl {
  color: rgba(255, 255, 255, 0.7) !important;
}

:root[data-theme="light"] .stats-val {
  color: var(--color-gold-light) !important;
}

:root[data-theme="light"] .stats-row {
  border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}

:root[data-theme="light"] .trust-bar {
  background: rgba(0, 0, 0, 0.02);
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

:root[data-theme="light"] .trust-item {
  border-right-color: rgba(0, 0, 0, 0.06);
}

:root[data-theme="light"] .trust-item .label {
  color: var(--color-text);
}

/* Cart table elements */
:root[data-theme="light"] .cart-table tbody tr {
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

:root[data-theme="light"] .cart-drawer {
  border-left-color: rgba(0, 0, 0, 0.1);
}

:root[data-theme="light"] .drawer-head,
:root[data-theme="light"] .d-item,
:root[data-theme="light"] .drawer-foot {
  border-color: rgba(0, 0, 0, 0.1);
}

:root[data-theme="light"] .drawer-x,
:root[data-theme="light"] .d-qty button {
  background: rgba(0, 0, 0, 0.05);
}

:root[data-theme="light"] .drawer-foot {
  background: rgba(0, 0, 0, 0.02);
}

:root[data-theme="light"] .d-qty {
  border-color: rgba(0, 0, 0, 0.1);
}


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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* Twemoji styling */
img.emoji {
  height: 1.2em;
  width: 1.2em;
  margin: 0 .05em 0 .1em;
  vertical-align: -0.2em;
  display: inline-block;
}

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
}

/* ── Typography ──────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--color-text-heading);
}

h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 600;
}

h4 {
  font-size: 1.15rem;
  font-weight: 600;
}

p {
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.8;
}

.lead {
  font-size: 1.15rem;
  color: var(--color-muted);
  line-height: 1.8;
  max-width: 640px;
}

/* Gold gradient text utility */
.text-gold-gradient {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 50%, var(--color-gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerText 4s ease infinite;
}

@keyframes shimmerText {
  0% {
    background-position: 0% center
  }

  50% {
    background-position: 200% center
  }

  100% {
    background-position: 0% center
  }
}

/* ── Layout ──────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: var(--section-py) 0;
  position: relative;
}

.section--alt {
  background: rgba(255, 255, 255, 0.015);
}

.section--dark {
  background: var(--color-navy);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: var(--color-white);
}

.section--dark p {
  color: rgba(255, 255, 255, 0.7);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

/* ── Section Header ──────────────────────────────────────────── */
.section-header {
  margin-bottom: 60px;
}

.section-header.text-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header .lead {
  margin: 0 auto;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-mid) 100%);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(26, 77, 143, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(26, 77, 143, 0.5);
  transform: translateY(-3px);
  color: var(--color-white);
}

.btn-secondary {
  background: transparent;
  color: var(--color-gold-light);
  border: 1.5px solid rgba(201, 168, 76, 0.4);
}

.btn-secondary:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--color-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-gold);
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold) 0%, #d4b55c 100%);
  color: var(--color-navy);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.45);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-3px);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn-lg {
  padding: 18px 42px;
  font-size: 0.95rem;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.8rem;
}

.btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Announcement Bar ────────────────────────────────────────── */
.announcement-bar {
  background: linear-gradient(90deg, var(--color-navy) 0%, #0d2240 50%, var(--color-navy) 100%);
  color: var(--color-white);
  text-align: center;
  padding: 11px 40px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 101;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.announcement-bar strong {
  color: var(--color-gold-light);
}

.announcement-bar a {
  color: var(--color-gold-light);
  text-decoration: underline;
}

.announcement-bar .close-bar {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.2rem;
  line-height: 1;
  padding: 4px 8px;
}

.announcement-bar .close-bar:hover {
  color: white;
}

/* ── Navigation ──────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 16, 26, 0.6);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(6, 16, 26, 0.92);
  border-bottom-color: rgba(201, 168, 76, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Theme Toggle */
.theme-toggle {
  background: transparent;
  color: var(--color-gold-light);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.theme-toggle:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--color-gold);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 32px;
}

.nav-logo img {
  height: 25px;
  width: auto;
  transition: var(--transition);
}

.nav-logo:hover img {
  filter: brightness(1.15);
}

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

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 9px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-gold-light);
  background: rgba(255, 255, 255, 0.05);
}

.nav-link svg {
  width: 14px;
  height: 14px;
  opacity: 0.5;
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  padding: 8px;
  z-index: 200;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.65);
  border-radius: 8px;
  transition: var(--transition);
}

.nav-dropdown a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-gold-light);
}

.nav-dropdown .dropdown-group {
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 4px;
}

.nav-dropdown .dropdown-label {
  padding: 4px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* ── Language Switcher ───────────────────────────────────────── */
.lang-switcher {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.lang-btn:hover {
  color: var(--color-gold-light);
  border-color: rgba(201, 168, 76, 0.4);
  background: rgba(255, 255, 255, 0.04);
}

.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 190px;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
  padding: 6px;
  z-index: 300;
  flex-direction: column;
}

.lang-menu.show {
  display: flex;
}

.lang-menu button {
  display: block;
  width: 100%;
  padding: 9px 14px;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  font-weight: 500;
  text-align: left;
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}

.lang-menu button:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-gold-light);
}

/* Light mode overrides for lang switcher */
:root[data-theme="light"] .lang-btn {
  color: var(--color-text);
  border-color: rgba(0, 0, 0, 0.15);
}

:root[data-theme="light"] .lang-btn:hover {
  color: var(--color-blue);
  border-color: var(--color-blue);
  background: rgba(26, 77, 143, 0.06);
}

:root[data-theme="light"] .lang-menu {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

:root[data-theme="light"] .lang-menu button {
  color: var(--color-text);
}

:root[data-theme="light"] .lang-menu button:hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--color-blue);
}

/* Mobile Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 6px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-gold-light);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile overlay */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 16, 26, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  padding: 24px 32px 40px;
  overflow-y: auto;
}

.nav-mobile-overlay.open {
  display: flex;
}

.nav-mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.nav-mobile-overlay img {
  height: 36px;
  filter: brightness(0) invert(1);
}

.nav-mobile-close {
  background: none;
  color: var(--color-gold-light);
  font-size: 1.8rem;
  line-height: 1;
  padding: 4px 8px;
}

.nav-mobile-links a {
  display: block;
  font-size: 16px;
  font-family: var(--font-display);
  color: rgba(255, 255, 255, 0.8);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-mobile-links a:hover {
  color: var(--color-gold-light);
}

.nav-mobile-cta {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nav-mobile-cta .btn{
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 8px;
  width: 90%;
  max-width: 340px;
  box-sizing: border-box;
}

.nav-mobile-cta .btn-lg{
  font-size: 14px;
  padding: 10px 14px;
}

.nav-mobile-links a{
  font-size: 16px;
  padding: 10px 0;
}

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.25;
  transform: scale(1.05);
  animation: heroBgZoom 20s ease-in-out infinite alternate;
}

@keyframes heroBgZoom {
  0% {
    transform: scale(1.05)
  }

  100% {
    transform: scale(1.15)
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(26, 77, 143, 0.15) 0%, transparent 50%),
    linear-gradient(160deg, rgba(6, 16, 26, 0.95) 0%, rgba(6, 16, 26, 0.7) 40%, rgba(10, 22, 40, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  animation: heroFadeUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 22px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-label::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--color-gold);
}

.hero h1 {
  color: white;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 44px;
  max-width: 540px;
}

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

/* Hero floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--color-gold);
  opacity: 0;
  animation: particleFloat 8s ease-in-out infinite;
}

.hero-particles span:nth-child(1) {
  left: 15%;
  animation-delay: 0s;
  animation-duration: 10s;
}

.hero-particles span:nth-child(2) {
  left: 30%;
  animation-delay: 2s;
  animation-duration: 12s;
}

.hero-particles span:nth-child(3) {
  left: 50%;
  animation-delay: 4s;
  animation-duration: 9s;
}

.hero-particles span:nth-child(4) {
  left: 70%;
  animation-delay: 1s;
  animation-duration: 11s;
}

.hero-particles span:nth-child(5) {
  left: 85%;
  animation-delay: 3s;
  animation-duration: 13s;
}

.hero-particles span:nth-child(6) {
  left: 25%;
  animation-delay: 5s;
  animation-duration: 10s;
}

.hero-particles span:nth-child(7) {
  left: 60%;
  animation-delay: 6s;
  animation-duration: 14s;
}

.hero-particles span:nth-child(8) {
  left: 40%;
  animation-delay: 7s;
  animation-duration: 11s;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.6;
  }

  100% {
    transform: translateY(-20vh) scale(1);
    opacity: 0;
  }
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: heroScrollBounce 2.5s infinite;
  z-index: 2;
}

.hero-scroll span {
  width: 28px;
  height: 44px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}

.hero-scroll span::after {
  content: '';
  width: 3px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 2px;
  animation: scrollDot 2.5s infinite;
}

@keyframes scrollDot {
  0% {
    transform: translateY(0);
    opacity: 1
  }

  80% {
    transform: translateY(12px);
    opacity: 0
  }

  100% {
    transform: translateY(0);
    opacity: 0
  }
}

@keyframes heroScrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

  50% {
    transform: translateX(-50%) translateY(-8px)
  }
}

/* ── Trust Bar ───────────────────────────────────────────────── */
.trust-bar {
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.9) 0%, rgba(13, 31, 56, 0.9) 100%);
  padding: 40px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  backdrop-filter: blur(10px);
}

.trust-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-item:last-child {
  border-right: none;
}

.trust-item .number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.trust-item .label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════════════
   CARDS & COMPONENTS — GLASSMORPHISM
   ══════════════════════════════════════════════════════════════ */

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  content: "";
}

/* Glass Card Base */
.card,
.service-card,
.testimonial-card,
.blog-card,
.product-card,
.clinic-card {
  position: relative;
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
}

.card:hover,
.service-card:hover,
.testimonial-card:hover,
.blog-card:hover,
.product-card:hover,
.clinic-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 24px rgba(201, 168, 76, 0.12);
  transform: translateY(-8px);
}

/* Shimmer sweep on hover */
.service-card::after,
.blog-card::after,
.product-card::after,
.clinic-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.04) 50%, transparent 100%);
  transition: left 0.6s ease;
  pointer-events: none;
  z-index: 1;
}

.service-card:hover::after,
.blog-card:hover::after,
.product-card:hover::after,
.clinic-card:hover::after {
  left: 100%;
}

/* Service Card */
.service-card {
  padding: 34px 28px;
    display: flex;
    flex-direction: column;
    height: 350px;
}
.service-card .link {
    margin-top: auto; 
    display: inline-block;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-gold), var(--color-blue));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s ease;
}

.service-card:hover::before {
  transform: scaleY(1);
}

.service-card .icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  background: rgba(26, 77, 143, 0.12);
  transition: var(--transition);
}

.service-card:hover .icon {
  background: linear-gradient(135deg, var(--color-blue), var(--color-blue-mid));
  box-shadow: 0 10px 24px rgba(26, 77, 143, 0.35);
  transform: translateY(-4px) scale(1.05);
}

.service-card .icon svg {
  width: 26px;
  height: 26px;
  color: var(--color-blue-mid);
  transition: var(--transition);
}

.service-card:hover .icon svg {
  color: white;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.service-card p {
  font-size: 0.9rem;
  margin-bottom: 0px;
  flex: 1;
  overflow: hidden;
  -webkit-line-clamp: 4;
}

.service-card .link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 16px;
  flex-shrink: 0;
}

.service-card .link:not(.stretched-link)::after {
  content: '→';
  transition: transform 0.3s;
}

.service-card:hover .link:not(.stretched-link)::after {
  transform: translateX(6px);
}

/* When combined with .stretched-link, keep arrow inline and
   move the stretched overlay to ::before (bootstrap-style). */
.service-card .link.stretched-link::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  content: "";
}

.service-card .link.stretched-link::after {
  content: '→';
  position: relative;
  z-index: 11;
  transition: transform 0.3s;
}

.service-card:hover .link.stretched-link::after {
  transform: translateX(6px);
}

/* Step / How It Works */
.step-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.step-row::before {
  content: '';
  position: absolute;
  top: 42px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  z-index: 0;
  background: linear-gradient(90deg, var(--color-blue) 0%, var(--color-gold) 100%);
  opacity: 0.5;
}

.step-item {
  text-align: center;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 84px;
  height: 84px;
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-navy-mid) 100%);
  color: var(--color-gold-light);
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 2px solid rgba(201, 168, 76, 0.2);
  box-shadow: 0 0 30px rgba(26, 77, 143, 0.2);
}

.step-item h3 {
  margin-bottom: 10px;
}

.step-item p {
  font-size: 0.92rem;
}

/* Testimonial Card */
.testimonial-card {
  padding: 34px;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--color-gold);
  font-size: 1rem;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-author img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author .name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text-heading);
}

.testimonial-author .meta {
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* Blog Card */
.blog-card-img {
  aspect-ratio: 16/9;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

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

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

.blog-card-body {
  padding: 24px;
}

.blog-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
  background: rgba(26, 77, 143, 0.15);
  color: var(--color-blue-mid);
}

.blog-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card h3 a {
  color: var(--color-text-heading);
}

.blog-card h3 a:hover {
  color: var(--color-gold-light);
}

.blog-card p {
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.blog-meta {
  font-size: 0.78rem;
  color: var(--color-muted);
}

/* Product Card */
.product-card {
  text-align: center;
}

.product-card-img {
  aspect-ratio: 1/1;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-card-body {
  padding: 22px;
}

.product-card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 6px;
}

.product-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.product-price {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.product-card .btn {
  width: 50%;
  justify-content: center;
}

/* Clinic Location Card */
.clinic-card-img {
  aspect-ratio: 3/2;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.clinic-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.clinic-card-body {
  padding: 24px;
}

.clinic-flag {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.clinic-flag img {
  width: 22px;
  height: 16px;
  border-radius: 2px;
}

.clinic-card h3 {
  margin-bottom: 8px;
}

.clinic-card p {
  font-size: 0.88rem;
  margin-bottom: 16px;
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 0;
  background: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-heading);
  gap: 16px;
}

.faq-question .icon {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-gold);
  transition: var(--transition);
}

.faq-item.open .faq-question .icon {
  background: var(--color-gold);
  color: var(--color-navy);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 0.95rem;
}

/* ── Forms ────────────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-label {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--color-text-heading);
  letter-spacing: 0.03em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-heading);
  background: rgba(255, 255, 255, 0.04);
  transition: var(--transition);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

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

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

/* ── Before / After Slider ───────────────────────────────────── */
.ba-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(201, 168, 76, 0.08);
  user-select: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ba-after,
.ba-before {
  display: block;
  width: 100%;
}

.ba-before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  object-fit: cover;
  clip-path: inset(0);
}

.ba-divider {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: var(--color-gold);
  z-index: 3;
  cursor: ew-resize;
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: var(--color-gold);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  cursor: ew-resize;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-navy);
}

.ba-label {
  position: absolute;
  top: 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
  background: rgba(0, 0, 0, 0.55);
  padding: 5px 12px;
  border-radius: 6px;
  backdrop-filter: blur(8px);
}

.ba-label-before {
  left: 16px;
}

.ba-label-after {
  right: 16px;
}

/* ── CTA Banner ──────────────────────────────────────────────── */
.cta-banner {
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(26, 77, 143, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
    linear-gradient(135deg, var(--color-navy) 0%, #0d2240 100%);
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at 70% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 50%);
}

.cta-banner h2 {
  color: white;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-navy) 100%);
  color: rgba(255, 255, 255, 0.6);
  padding: 80px 0 0;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand img {
  height: 42px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-social a:hover {
  background: var(--color-gold);
  color: var(--color-navy);
  border-color: var(--color-gold);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--color-text-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--color-gold-light);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  font-size: 0.88rem;
  margin-bottom: 12px;
  align-items: flex-start;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.25);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a:hover {
  color: var(--color-gold-light);
}

/* ── Page Hero (inner pages) ─────────────────────────────────── */
.page-hero {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(26, 77, 143, 0.15) 0%, transparent 60%),
    linear-gradient(135deg, var(--color-navy) 0%, #0d2240 100%);
  padding: 90px 0;
  text-align: center;
}

.page-hero h1 {
  color: white;
  margin-bottom: 14px;
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 auto;
}

/* ── Breadcrumb ──────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 22px;
  justify-content: center;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a:hover {
  color: var(--color-gold-light);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.2);
}

/* ── Utility Classes ─────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.badge-blue {
  background: rgba(26, 77, 143, 0.15);
  color: var(--color-blue-mid);
}

.badge-gold {
  background: rgba(201, 168, 76, 0.12);
  color: var(--color-gold-light);
}

.badge-green {
  background: rgba(26, 127, 90, 0.12);
  color: #2ecc71;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-gold));
  border-radius: 2px;
  margin: 0 auto 24px;
}

.highlight-box {
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--color-gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
}

.highlight-box p {
  color: var(--color-text);
  font-size: 0.95rem;
}

/* ══════════════════════════════════════════════════════════════
   ANIMATIONS SYSTEM
   ══════════════════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

.fade-up:nth-child(1) {
  transition-delay: 0s;
}

.fade-up:nth-child(2) {
  transition-delay: 0.08s;
}

.fade-up:nth-child(3) {
  transition-delay: 0.16s;
}

.fade-up:nth-child(4) {
  transition-delay: 0.24s;
}

.fade-up:nth-child(5) {
  transition-delay: 0.32s;
}

.fade-up:nth-child(6) {
  transition-delay: 0.4s;
}

.fade-up:nth-child(7) {
  transition-delay: 0.48s;
}

.fade-up:nth-child(8) {
  transition-delay: 0.56s;
}

/* Ambient glow — decorative background */
.section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.03) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .trust-bar .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px 24px;
  }

  .trust-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 60px;
  }

  .container {
    padding: 0 20px;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

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

  .nav-menu,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    justify-content: center;
  }

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

  .step-row::before {
    display: none;
  }

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

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

  .trust-bar .container {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: none;
  }
}

/* ══════════════════════════════════════════════════════════════
   SHOP / CART COMPONENTS
   ══════════════════════════════════════════════════════════════ */
.nav-cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  color: var(--color-gold-light);
  cursor: pointer;
  transition: var(--transition);
  background: none;
  border: none;
  flex-shrink: 0;
}

.nav-cart-icon:hover {
  background: rgba(255, 255, 255, 0.05);
}

.cart-badge {
  position: absolute;
  top: 3px;
  right: 3px;
  min-width: 18px;
  height: 18px;
  background: var(--color-gold);
  color: var(--color-navy);
  font-size: 0.65rem;
  font-weight: 800;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  transform: scale(0);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.cart-badge.visible {
  transform: scale(1);
}

.cart-badge.pop {
  animation: cpop .35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes cpop {
  0% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.6)
  }

  100% {
    transform: scale(1)
  }
}

.btn-atc {
  background: linear-gradient(135deg, var(--color-blue), var(--color-blue-mid));
  color: white;
  border: none;
  border-radius: var(--radius);
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 2;
}

.btn-atc:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow-blue);
}

.btn-atc.added {
  background: #1a7f5a !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Cart Drawer */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 16, 26, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 100vw;
  height: 100vh;
  background: var(--color-navy-mid);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.4, 0, .2, 1);
  box-shadow: -8px 0 48px rgba(0, 0, 0, 0.4);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.cart-drawer.open {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.drawer-head h3 {
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-heading);
}

.drawer-head h3 em {
  background: var(--color-gold);
  color: var(--color-navy);
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 700;
  border-radius: 12px;
  padding: 2px 8px;
}

.drawer-x {
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  transition: background .2s;
}

.drawer-x:hover {
  background: rgba(255, 255, 255, 0.1);
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.drawer-empty {
  text-align: center;
  padding: 48px 0;
  color: var(--color-muted);
}

.drawer-empty .e-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.d-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.d-item:last-child {
  border-bottom: none;
}

.d-item-img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.d-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.d-name {
  font-size: .86rem;
  font-weight: 600;
  color: var(--color-text-heading);
  line-height: 1.3;
  display: block;
  margin-bottom: 3px;
}

.d-price {
  font-size: .82rem;
  color: var(--color-gold);
  font-weight: 700;
}

.d-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
}

.d-line {
  font-size: .9rem;
  font-weight: 700;
  color: var(--color-text-heading);
}

.d-qty {
  display: flex;
  align-items: center;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  overflow: hidden;
}

.d-qty button {
  width: 27px;
  height: 27px;
  background: rgba(255, 255, 255, 0.04);
  border: none;
  font-size: .95rem;
  cursor: pointer;
  color: var(--color-text);
  transition: background .15s;
}

.d-qty button:hover {
  background: rgba(255, 255, 255, 0.08);
}

.d-qty span {
  width: 28px;
  text-align: center;
  font-size: .84rem;
  font-weight: 700;
  border-left: 1.5px solid rgba(255, 255, 255, 0.1);
  border-right: 1.5px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-heading);
}

.d-remove {
  background: none;
  border: none;
  color: var(--color-muted);
  font-size: .74rem;
  cursor: pointer;
  text-decoration: underline;
}

.d-remove:hover {
  color: #e74c3c;
}

.drawer-foot {
  padding: 18px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  flex-shrink: 0;
}

.d-row {
  display: flex;
  justify-content: space-between;
  font-size: .88rem;
  margin-bottom: 7px;
}

.d-row .lbl {
  color: var(--color-muted);
}

.d-row .val {
  font-weight: 600;
  color: var(--color-text-heading);
}

.d-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  margin-top: 4px;
  border-top: 2px solid var(--color-gold);
  margin-bottom: 16px;
}

.d-total .lbl {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-heading);
}

.d-total .val {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-gold);
  font-family: var(--font-display);
}

.d-ship-note {
  font-size: .78rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 12px;
  color: var(--color-muted);
}

.drawer-foot .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 8px;
}

.d-continue {
  width: 100%;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: .82rem;
  color: var(--color-muted);
  cursor: pointer;
  text-decoration: underline;
  padding: 4px;
}

.d-continue:hover {
  color: var(--color-text-heading);
}

#shopToast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--color-navy-mid);
  color: white;
  padding: 12px 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  font-size: .88rem;
  font-weight: 500;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

#shopToast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

#shopToast img {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  object-fit: cover;
  background: rgba(255, 255, 255, .05);
  flex-shrink: 0;
}

#shopToast .t-btn {
  background: var(--color-gold);
  color: var(--color-navy);
  border: none;
  border-radius: 6px;
  padding: 7px 14px;
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  flex-shrink: 0;
}

#shopToast .t-btn:hover {
  background: var(--color-gold-light);
}

/* Cart Page */
.cart-wrapper {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--glass-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.cart-table thead {
  background: var(--color-navy-mid);
}

.cart-table thead th {
  padding: 16px 20px;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-body);
  color: var(--color-text-heading);
}

.cart-table thead th:last-child {
  text-align: right;
}

.cart-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.2s;
}

.cart-table tbody tr:last-child {
  border-bottom: none;
}

.cart-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.cart-table tbody td {
  padding: 20px;
  vertical-align: middle;
}

.cart-table tbody td:last-child {
  text-align: right;
}

.cart-product {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-product-img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.cart-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-product-info .name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text-heading);
  margin-bottom: 4px;
  display: block;
}

.cart-product-info .tag {
  font-size: 0.75rem;
  color: var(--color-muted);
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
}

.qty-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.04);
  border: none;
  font-size: 1.1rem;
  color: var(--color-text);
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.qty-input {
  width: 44px;
  height: 36px;
  text-align: center;
  border: none;
  border-left: 1.5px solid rgba(255, 255, 255, 0.1);
  border-right: 1.5px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--color-text-heading);
  background: transparent;
  outline: none;
}

.remove-btn {
  background: none;
  border: none;
  color: var(--color-muted);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s;
  line-height: 1;
}

.remove-btn:hover {
  color: #e74c3c;
  background: rgba(231, 76, 60, 0.08);
}

.item-price {
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-gold);
  white-space: nowrap;
}

.cart-empty {
  text-align: center;
  padding: 80px 40px;
  background: var(--glass-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
}

.cart-empty .icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.cart-empty h2 {
  margin-bottom: 12px;
}

.cart-empty p {
  margin-bottom: 28px;
}

/* Order Summary */
.order-summary {
  background: var(--glass-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.order-summary-header {
  background: var(--color-navy-mid);
  color: var(--color-text-heading);
  padding: 18px 24px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order-summary-body {
  padding: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.summary-row:last-of-type {
  border-bottom: none;
}

.summary-row .label {
  color: var(--color-muted);
}

.summary-row .value {
  font-weight: 600;
  color: var(--color-text-heading);
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 20px;
  margin-top: 4px;
  border-top: 2px solid var(--color-gold);
}

.summary-total .label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-heading);
}

.summary-total .value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-gold);
  font-family: var(--font-display);
}

.coupon-row {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.coupon-row input {
  flex: 1;
  padding: 11px 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-family: var(--font-body);
  outline: none;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text);
  transition: border-color 0.2s;
}

.coupon-row input:focus {
  border-color: var(--color-gold);
}

.coupon-row button {
  padding: 11px 18px;
  background: var(--color-gold);
  color: var(--color-navy);
  border: none;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  white-space: nowrap;
  transition: background 0.2s;
}

.coupon-row button:hover {
  background: var(--color-gold-light);
}

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--color-muted);
}

.trust-badge span {
  font-size: 1.1rem;
}

.coupon-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 127, 90, 0.1);
  color: #2ecc71;
  border: 1px solid rgba(26, 127, 90, 0.2);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.coupon-tag button {
  background: none;
  border: none;
  color: #2ecc71;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 0;
  opacity: 0.7;
}

.coupon-tag button:hover {
  opacity: 1;
}

.upsell-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1.5px dashed rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-lg);
  background: rgba(201, 168, 76, 0.03);
  margin-bottom: 24px;
}

.upsell-card img {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  object-fit: cover;
  flex-shrink: 0;
}

.upsell-card .info {
  flex: 1;
}

.upsell-card .info .name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-heading);
  display: block;
  margin-bottom: 2px;
}

.upsell-card .info .price {
  font-size: 0.82rem;
  color: var(--color-gold);
  font-weight: 700;
}

.upsell-card .add-btn {
  background: var(--color-gold);
  color: var(--color-navy);
  border: none;
  border-radius: var(--radius);
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}

.upsell-card .add-btn:hover {
  background: var(--color-gold-light);
}

@media (max-width: 900px) {
  .cart-wrapper {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
  }
}

@media (max-width: 600px) {
  .cart-product-img {
    width: 52px;
    height: 52px;
  }

  .cart-product-info .name {
    font-size: 0.85rem;
  }

  .cart-table tbody td {
    padding: 14px 12px;
  }

  .cart-table thead th {
    padding: 14px 12px;
  }
}

/* ══════════════════════════════════════════════════════════════
   CHECKOUT
   ══════════════════════════════════════════════════════════════ */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}

@media(max-width:900px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }
}

.checkout-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
}

.step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--color-muted);
}

.step.active {
  color: var(--color-gold);
}

.step.done {
  color: var(--color-success);
}

.step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 800;
  flex-shrink: 0;
  transition: all .3s;
}

.step.active .step-num {
  background: var(--color-gold);
  color: var(--color-navy);
}

.step.done .step-num {
  background: var(--color-success);
  color: white;
}

.step-line {
  width: 60px;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  margin: 0 4px;
  flex-shrink: 0;
}

.step-line.done {
  background: var(--color-success);
}

@media(max-width:500px) {
  .step-line {
    width: 24px;
  }

  .step span {
    display: none;
  }
}

.checkout-panel {
  background: var(--glass-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  margin-bottom: 24px;
  overflow: hidden;
}

.panel-head {
  background: var(--color-navy-mid);
  color: var(--color-text-heading);
  padding: 16px 24px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.panel-head .step-badge {
  width: 22px;
  height: 22px;
  background: var(--color-gold);
  color: var(--color-navy);
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.panel-body {
  padding: 24px;
}

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

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

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

@media(max-width:600px) {
  .form-row {
    grid-template-columns: 1fr;
  }

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--color-text-heading);
  letter-spacing: .02em;
}

.form-field label .req {
  color: var(--color-gold);
  margin-left: 2px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  font-size: .9rem;
  font-family: var(--font-body);
  color: var(--color-text-heading);
  background: rgba(255, 255, 255, 0.04);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
  box-sizing: border-box;
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, .08);
}

.form-field input.error {
  border-color: #e74c3c;
}

.form-field .err-msg {
  font-size: .75rem;
  color: #e74c3c;
  display: none;
}

.form-field input.error+.err-msg {
  display: block;
}

.pay-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pay-method {
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}

.pay-method:hover {
  border-color: var(--color-gold);
  background: rgba(201, 168, 76, .02);
}

.pay-method.selected {
  border-color: var(--color-gold);
  background: rgba(201, 168, 76, .04);
}

.pay-method-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pay-method-head input[type=radio] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-gold);
  flex-shrink: 0;
  cursor: pointer;
}

.pay-method-head .pm-label {
  font-weight: 600;
  font-size: .9rem;
  flex: 1;
  color: var(--color-text-heading);
}

.pay-method-head .pm-icons {
  display: flex;
  gap: 6px;
}

.pm-icon {
  height: 24px;
  padding: 0 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  font-size: .65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  white-space: nowrap;
}

.pay-method-fields {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: none;
}

.pay-method.selected .pay-method-fields {
  display: block;
}

.card-input-wrap {
  position: relative;
}

.card-input-wrap input {
  padding-right: 50px;
}

.card-input-wrap .card-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  pointer-events: none;
}

/* Order Box (Checkout) */
.order-box {
  background: var(--glass-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  position: sticky;
  top: 100px;
  overflow: hidden;
}

.order-box-head {
  background: var(--color-navy-mid);
  color: var(--color-text-heading);
  padding: 16px 24px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.order-box-body {
  padding: 20px 24px;
}

.order-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.order-item:last-of-type {
  border-bottom: none;
}

.order-item-img {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.order-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-item-info {
  flex: 1;
}

.order-item-info .oname {
  font-size: .85rem;
  font-weight: 600;
  color: var(--color-text-heading);
  display: block;
}

.order-item-info .oqty {
  font-size: .78rem;
  color: var(--color-muted);
}

.order-item-price {
  font-size: .9rem;
  font-weight: 700;
  color: var(--color-gold);
  white-space: nowrap;
}

.totals-block {
  padding-top: 16px;
}

.tot-row {
  display: flex;
  justify-content: space-between;
  font-size: .88rem;
  margin-bottom: 8px;
}

.tot-row .lbl {
  color: var(--color-muted);
}

.tot-row .val {
  font-weight: 600;
  color: var(--color-text-heading);
}

.tot-final {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  margin-top: 6px;
  border-top: 2px solid var(--color-gold);
}

.tot-final .lbl {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-heading);
}

.tot-final .val {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-gold);
  font-family: var(--font-display);
}

.order-box-trust {
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trust-line {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .78rem;
  color: var(--color-muted);
}

.trust-line span {
  font-size: 1rem;
}

.place-order-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--color-gold), #d4b55c);
  color: var(--color-navy);
  border: none;
  border-radius: var(--radius);
  padding: 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.place-order-btn:hover {
  box-shadow: 0 6px 24px rgba(201, 168, 76, .35);
  transform: translateY(-2px);
}

.place-order-btn:disabled {
  background: var(--color-muted);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

#successScreen {
  display: none;
  text-align: center;
  padding: 80px 40px;
  background: var(--glass-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(26, 127, 90, .1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  margin: 0 auto 24px;
}

#successScreen h2 {
  margin-bottom: 12px;
}

#successScreen p {
  margin-bottom: 8px;
  color: var(--color-muted);
}

.order-ref {
  font-size: .9rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 12px 20px;
  display: inline-block;
  margin: 16px 0;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-text-heading);
}

/* ══════════════════════════════════════════════════════════════
   DARK THEME GLOBAL OVERRIDES
   Fixes inline white backgrounds across all inner pages
   ══════════════════════════════════════════════════════════════ */

/* Card body padding (used in clinic cards, team cards, etc.) */
.card-body {
  padding: 22px;
}

/* Select / Option dropdown - force dark background */
select,
option {
  background: var(--color-navy-mid) !important;
  color: var(--color-text-heading) !important;
}

select option {
  padding: 8px 12px;
}

/* Override ANY inline 'background:white' or 'background:var(--color-off-white)' */
[style*="background:white"],
[style*="background: white"],
[style*="background:var(--color-off-white)"],
[style*="background: var(--color-off-white)"] {
  background: var(--glass-bg) !important;
  border-color: var(--glass-border) !important;
  color: var(--color-text) !important;
}

[style*="background:white"] h3,
[style*="background: white"] h3,
[style*="background:white"] h4,
[style*="background: white"] h4,
[style*="background:white"] strong,
[style*="background: white"] strong,
[style*="background:var(--color-off-white)"] h3,
[style*="background: var(--color-off-white)"] h3,
[style*="background:var(--color-off-white)"] h4,
[style*="background: var(--color-off-white)"] h4 {
  color: var(--color-text-heading) !important;
}

[style*="background:white"] p,
[style*="background: white"] p,
[style*="background:var(--color-off-white)"] p,
[style*="background: var(--color-off-white)"] p {
  color: var(--color-muted) !important;
}

/* Fix the form success message box (contact page) */
#formSuccess {
  background: rgba(26, 127, 90, 0.12) !important;
  border-color: rgba(26, 127, 90, 0.3) !important;
}

#formSuccess h4 {
  color: #2ecc71 !important;
}

#formSuccess p {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Checkout: "Need help" card and coupon input */
.checkout-grid [style*="background:white"] a.btn {
  color: var(--color-text-heading) !important;
}

#couponInput {
  background: rgba(255, 255, 255, 0.04) !important;
  color: var(--color-text-heading) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Bank transfer info box */
[style*="background:var(--color-off-white)"] {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  color: var(--color-text) !important;
}

/* Date input fix */
input[type="date"] {
  color-scheme: dark;
}

/* Checkbox styling for dark theme */
input[type="checkbox"] {
  accent-color: var(--color-gold);
}

/* Privacy link on dark theme */
a[style*="color:var(--color-blue)"] {
  color: var(--color-gold-light) !important;
}

/* ══════════════════════════════════════════════════════════
                          LANGUAGE SWITCHER & RTL
   ══════════════════════════════════════════════════════════ */

.lang-switcher {
  position: relative;
  display: inline-block;
  margin-right: 12px;
}

.lang-btn {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--glass-border);
  padding: 8px 16px;
  border-radius: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background: var(--color-bg-glass);
  border-color: var(--color-gold);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--color-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 9999;
}

.lang-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-menu button {
  background: transparent;
  border: none;
  color: var(--color-text);
  padding: 12px 16px;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  transition: background 0.2s ease;
  width: 100%;
}

.lang-menu button:hover {
  background: var(--color-blue-glow);
  color: var(--color-white);
}


/* ══════════════════════════════════════════════════════════
   LOCATION CARDS  (Our Clinics page)
══════════════════════════════════════════════════════════ */

.clinics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.location-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
}

.location-card:hover {
  border-color: rgba(201, 168, 76, 0.45);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45), 0 0 32px rgba(201, 168, 76, 0.1);
  transform: translateY(-6px);
}

/* ── Image area ── */
.location-card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.location-card__image-inner {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--color-navy-mid);
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.location-card:hover .location-card__image-inner {
  transform: scale(1.06);
}

.location-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 14, 35, 0.15) 0%,
    rgba(10, 14, 35, 0.7) 100%
  );
}

/* ── Index badge (01 / 02 …) ── */
.location-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
}

.location-card__index {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: 99px;
}

/* ── Flag + region (bottom-left of image) ── */
.location-card__flag-wrap {
  position: absolute;
  bottom: 16px;
  left: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}

.location-card__flag {
  font-size: 1.5rem;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

.location-card__region {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* ── Card body ── */
.location-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 28px 28px 24px;
}

.location-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.location-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text-heading);
  line-height: 1.2;
  margin: 0;
}

.location-card__tag {
  flex-shrink: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 4px 10px;
  border-radius: 99px;
  white-space: nowrap;
}

.location-card__desc {
  font-size: 0.87rem;
  color: var(--color-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

/* ── Service pills ── */
.location-card__services {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.location-card__services li {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 99px;
  padding: 5px 12px;
  letter-spacing: 0.02em;
  transition: border-color 0.2s, color 0.2s;
}

.location-card:hover .location-card__services li {
  border-color: rgba(201, 168, 76, 0.3);
  color: var(--color-text-heading);
}

/* ── Footer: address + CTA ── */
.location-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
}

.location-card__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--color-muted);
  line-height: 1.4;
  flex: 1;
  min-width: 0;
}

.location-card__meta svg {
  flex-shrink: 0;
  color: var(--color-gold);
}

.location-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-gold);
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
  white-space: nowrap;
}

.location-card__btn:hover {
  gap: 10px;
  color: var(--color-gold-light);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .clinics-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .location-card__image {
    height: 200px;
  }
}

@media (max-width: 600px) {
  .location-card__body {
    padding: 20px;
  }

  .location-card__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

[data-theme="light"] .lang-menu {
  background: var(--color-white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

[data-theme="light"] .lang-menu button:hover {
  background: rgba(46, 109, 180, 0.1);
  color: var(--color-blue-mid);
}

/* --- Right-To-Left (RTL) Auto Handling --- */
html[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .me-auto {
  margin-left: auto !important;
  margin-right: 0 !important;
}

html[dir="rtl"] .ms-auto {
  margin-right: auto !important;
  margin-left: 0 !important;
}

html[dir="rtl"] .ps-0 { padding-right: 0 !important; padding-left: auto !important; }
html[dir="rtl"] .pe-0 { padding-left: 0 !important; padding-right: auto !important; }
html[dir="rtl"] .ps-3 { padding-right: 1rem !important; padding-left: auto !important; }

html[dir="rtl"] .fa-arrow-right,
html[dir="rtl"] .bi-arrow-right {
  transform: rotate(180deg);
}

html[dir="rtl"] .footer-links li a::before {
  content: "←";
  margin-left: 8px;
  margin-right: 0;
}

/* --- Navbar Density Auto-Adjustment --- */
@media (max-width: 1200px) {
  .nav-inner {
    gap: 16px;
  }
  .nav-cta a.btn-secondary {
    display: none; /* Hide 'Call Us' to save space on tablets/small laptops */
  }
  .nav-menu {
    gap: 0;
  }
  .nav-link {
    padding: 24px 8px;
  }
}

@media (max-width: 992px) {
  .nav-cta a.btn-primary {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
  .nav-cta a.btn-primary svg {
    display: none;
  }
}

/* ══════════════════════════════════════════════════════════
   CLINIC DETAIL PAGES
══════════════════════════════════════════════════════════ */

/* Info box */
.clinic-detail__info-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    backdrop-filter: blur(12px);
}

.clinic-detail__info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.92rem;
    color: var(--color-text);
    line-height: 1.5;
}

.clinic-detail__info-item a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.2s;
}

.clinic-detail__info-item a:hover {
    color: var(--color-gold);
}

.clinic-detail__info-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    margin-top: -2px;
}

/* Map placeholder */
.clinic-detail__map-placeholder {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--color-muted);
}

.clinic-detail__map-flag {
    font-size: 4rem;
    line-height: 1;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

/* Gallery placeholder */
.clinic-detail__gallery-placeholder {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-muted);
    transition: border-color 0.3s;
}

.clinic-detail__gallery-placeholder:hover {
    border-color: rgba(201, 168, 76, 0.3);
}

/* ── Clinic Service Cards ── */
.clinic-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 24px 22px 20px;
    backdrop-filter: blur(12px);
    transition: var(--transition);
    overflow: hidden;
}

.clinic-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--color-gold), var(--color-gold-light));
    transition: height 0.35s ease;
    border-radius: 0 0 2px 0;
}

.clinic-service-card:hover {
    border-color: rgba(201, 168, 76, 0.4);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 20px rgba(201, 168, 76, 0.08);
    transform: translateY(-4px);
}

.clinic-service-card:hover::before {
    height: 100%;
}

.clinic-service-card__cat {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 14px;
}

.clinic-service-card__icon {
    width: 48px;
    height: 48px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    margin-bottom: 16px;
    overflow: hidden;
    flex-shrink: 0;
}

.clinic-service-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clinic-service-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 8px;
    line-height: 1.3;
}

.clinic-service-card__excerpt {
    font-size: 0.82rem;
    color: var(--color-muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}

.clinic-service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-gold);
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.2s, color 0.2s;
}

.clinic-service-card__link:hover {
    gap: 10px;
    color: var(--color-gold-light);
}
/* ══════════════════════════════════════════════════════════
   SINGLE PRODUCT DETAIL PAGE
══════════════════════════════════════════════════════════ */

.spd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px;
}

/* ── Gallery ── */
.spd-main-img {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spd-main-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.4s ease;
}

.spd-main-img:hover img {
  transform: scale(1.04);
}

.spd-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.spd-sale-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--color-gold);
  color: var(--color-navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 99px;
  z-index: 2;
}

.spd-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.spd-thumb {
  width: 72px;
  height: 72px;
  border: 2px solid var(--glass-border);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
  background: var(--glass-bg);
}

.spd-thumb:hover,
.spd-thumb.active {
  border-color: var(--color-gold);
}

.spd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

/* ── Info panel ── */
.spd-info {
  position: sticky;
  top: 100px;
}

.spd-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.spd-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--color-text-heading);
  line-height: 1.2;
  margin-bottom: 20px;
}

.spd-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.spd-price-old {
  font-size: 1rem;
  color: var(--color-muted);
  text-decoration: line-through;
}

.spd-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-gold);
}

.spd-price .woocommerce-Price-amount {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-gold);
}

.spd-short-desc {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.75;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--glass-border);
}

/* ── Qty + ATC ── */
.spd-atc-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
}

.spd-qty-control {
  display: flex;
  align-items: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}

.spd-qty-btn {
  width: 40px;
  height: 48px;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: var(--font-body);
}

.spd-qty-btn:hover {
  background: rgba(201,168,76,0.1);
  color: var(--color-gold);
}

.spd-qty-input {
  width: 52px;
  height: 48px;
  border: none;
  background: none;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-heading);
  font-family: var(--font-body);
  -moz-appearance: textfield;
}

.spd-qty-input::-webkit-outer-spin-button,
.spd-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.spd-atc-btn {
  flex: 1;
  justify-content: center;
  gap: 8px;
  font-size: 1rem;
  padding: 14px 24px;
  transition: background 0.3s, transform 0.2s;
}

.spd-atc-btn:hover {
  transform: translateY(-2px);
}

/* ── Trust ── */
.spd-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}

.spd-trust-item {
  font-size: 0.8rem;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── Meta rows ── */
.spd-meta-row {
  display: flex;
  gap: 12px;
  font-size: 0.88rem;
  margin-bottom: 8px;
}

.spd-meta-label {
  color: var(--color-muted);
  min-width: 90px;
  flex-shrink: 0;
}

.spd-meta-val {
  color: var(--color-text-heading);
  font-weight: 500;
}

/* ── Full description ── */
.spd-full-desc {
  border-top: 1px solid var(--glass-border);
  padding-top: 48px;
  max-width: 760px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .spd-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .spd-info {
    position: static;
  }
  .spd-trust {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .spd-atc-row {
    flex-direction: column;
    align-items: stretch;
  }
  .spd-qty-control {
    justify-content: center;
  }
}
/* ══════════════════════════════════════════════════════════
   ETERNAL CLINIC CONSULTATION FORM (Contact Form 7)
══════════════════════════════════════════════════════════ */

.eternal-clinic-form {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 100%;
}

/* Row wrapper */
.eternal-clinic-form .form-row {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 100%;
}

.eternal-clinic-form .form-row.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Individual field group */
.eternal-clinic-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    min-width: 0;
}

/* Labels */
.eternal-clinic-form .form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-heading);
    letter-spacing: 0.02em;
}

/* CF7 span wrapper — forces full width */
.eternal-clinic-form .wpcf7-form-control-wrap {
    display: block !important;
    width: 100% !important;
}

/* All inputs, selects, textareas */
.eternal-clinic-form input[type="text"],
.eternal-clinic-form input[type="email"],
.eternal-clinic-form input[type="tel"],
.eternal-clinic-form input[type="date"],
.eternal-clinic-form select,
.eternal-clinic-form textarea,
.eternal-clinic-form .wpcf7-form-control-wrap input,
.eternal-clinic-form .wpcf7-form-control-wrap select,
.eternal-clinic-form .wpcf7-form-control-wrap textarea {
    width: 100% !important;
    background: var(--glass-bg);
    border: 1.5px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 13px 16px;
    font-size: 0.92rem;
    font-family: var(--font-body);
    color: var(--color-text);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    box-sizing: border-box !important;
    -webkit-appearance: none;
    appearance: none;
}

/* Placeholders */
.eternal-clinic-form input[type="text"]::placeholder,
.eternal-clinic-form input[type="email"]::placeholder,
.eternal-clinic-form input[type="tel"]::placeholder,
.eternal-clinic-form input[type="date"]::placeholder,
.eternal-clinic-form textarea::placeholder {
    color: var(--color-muted);
}

/* Focus state */
.eternal-clinic-form input[type="text"]:focus,
.eternal-clinic-form input[type="email"]:focus,
.eternal-clinic-form input[type="tel"]:focus,
.eternal-clinic-form input[type="date"]:focus,
.eternal-clinic-form select:focus,
.eternal-clinic-form textarea:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

/* Select dropdown arrow */
.eternal-clinic-form select,
.eternal-clinic-form .wpcf7-select {
    display: block !important;
    width: 100% !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256' fill='%23a0aec0' width='16' height='16'%3E%3Cpath d='M213.66,101.66l-80,80a8,8,0,0,1-11.32,0l-80-80A8,8,0,0,1,53.66,90.34L128,164.69l74.34-74.35a8,8,0,0,1,11.32,11.32Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 44px !important;
    cursor: pointer;
    color: var(--color-text);
}

/* Textarea */
.eternal-clinic-form textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}

/* Date input calendar icon */
.eternal-clinic-form input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.5);
    cursor: pointer;
}

/* Checkbox acceptance row */
.eternal-clinic-form .checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.83rem;
    color: var(--color-muted);
    line-height: 1.6;
}

.eternal-clinic-form .checkbox-row .wpcf7-acceptance {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

.eternal-clinic-form .checkbox-row input[type="checkbox"],
.eternal-clinic-form .wpcf7-acceptance input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    max-width: 18px !important;
    border: 1.5px solid var(--glass-border);
    border-radius: 4px;
    accent-color: var(--color-gold);
    cursor: pointer;
    margin-top: 2px;
    flex-shrink: 0;
    -webkit-appearance: checkbox !important;
    appearance: checkbox !important;
}

/* Submit row */
.eternal-clinic-form .submit-row {
    margin-top: 4px;
}

.eternal-clinic-form .submit-row input[type="submit"],
.eternal-clinic-form .wpcf7-submit {
    width: 100% !important;
    background: var(--color-blue);
    color: white;
    border: none;
    border-radius: var(--radius);
    padding: 16px 20px !important;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: var(--font-body);
    cursor: pointer; 
    transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
    min-height: 52px;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    display: block !important;
    box-sizing: border-box !important;
}

.eternal-clinic-form .submit-row input[type="submit"]:hover,
.eternal-clinic-form .wpcf7-submit:hover {
    background: var(--color-gold);
    color: var(--color-navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.25);
}

/* Footer note */
.eternal-clinic-form .form-footer-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-muted);
    margin-top: 4px;
}

/* Validation error */
.eternal-clinic-form .wpcf7-not-valid-tip {
    font-size: 0.78rem;
    color: #e74c3c;
    margin-top: 4px;
    display: block;
}

.eternal-clinic-form input.wpcf7-not-valid,
.eternal-clinic-form select.wpcf7-not-valid,
.eternal-clinic-form textarea.wpcf7-not-valid {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Response messages */
.wpcf7 .wpcf7-response-output {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: var(--radius);
    font-size: 0.88rem;
    font-weight: 500;
    border: none !important;
}

.wpcf7-mail-sent-ok {
    background: rgba(16, 185, 129, 0.12) !important;
    color: #065f46 !important;
    border-left: 3px solid #10b981 !important;
}

.wpcf7-mail-sent-ng,
.wpcf7-spam-blocked,
.wpcf7-validation-errors {
    background: rgba(239, 68, 68, 0.1) !important;
    color: #991b1b !important;
    border-left: 3px solid #ef4444 !important;
}

/* Hide CF7 spinner */
.wpcf7-spinner {
    display: none !important;
}

/* Responsive */
@media (max-width: 600px) {
    .eternal-clinic-form .form-row.two-cols {
        grid-template-columns: 1fr;
    }
}