/*
Theme Name: Altmed HealthTech
Theme URI: https://altmedhealthtech.com
Author: Peeble Agency
Author URI: https://thepebble.co.in
Description: Custom WordPress theme for Altmed HealthTech — medical equipment e-commerce and home care services.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.0
License: Private
Text Domain: altmed
*/

/* =============================================
   DESIGN TOKENS — from Stitch "Clinical Precision"
   ============================================= */
:root {
  /* Colors */
  --primary:            #00685f;
  --primary-dark:       #004d46;
  --primary-container:  #008378;
  --on-primary:         #ffffff;
  --secondary:          #565e74;
  --tertiary:           #006387;
  --background:         #f8f9ff;
  --surface:            #ffffff;
  --surface-low:        #eff4ff;
  --surface-container:  #e5eeff;
  --on-surface:         #0b1c30;
  --on-surface-variant: #3d4947;
  --outline:            #6d7a77;
  --outline-variant:    #bcc9c6;
  --inverse-surface:    #213145;
  --inverse-on-surface: #eaf1ff;
  --error:              #ba1a1a;
  --success:            #1a7a4a;
  --warning:            #c97a00;

  /* Orange accent from logo */
  --accent:             #f97316;
  --accent-dark:        #ea6c0a;

  /* Typography */
  --font-main:    'Inter', 'Segoe UI', sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;

  /* Spacing */
  --space-xs:   4px;
  --space-sm:   8px;
  --space-md:   16px;
  --space-lg:   24px;
  --space-xl:   40px;
  --space-xxl:  64px;
  --container:  1280px;
  --gutter:     24px;

  /* Radius */
  --radius-sm:  4px;
  --radius:     8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full:9999px;

  /* Shadows */
  --shadow-card:    0 2px 8px rgba(11,28,48,0.04), 0 0 1px rgba(11,28,48,0.08);
  --shadow-hover:   0 8px 24px rgba(11,28,48,0.10), 0 0 1px rgba(11,28,48,0.08);
  --shadow-overlay: 0 10px 40px rgba(11,28,48,0.12);

  /* Transitions */
  --transition: 0.2s ease;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--on-surface);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--on-surface);
  line-height: 1.2;
}

h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 600; letter-spacing: -0.01em; }
h3 { font-size: clamp(18px, 2vw, 24px); font-weight: 600; }
h4 { font-size: 20px; font-weight: 600; }
h5 { font-size: 18px; font-weight: 600; }
h6 { font-size: 16px; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-primary { color: var(--primary); }
.text-accent  { color: var(--accent); }
.text-muted   { color: var(--on-surface-variant); }
.text-center  { text-align: center; }

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-main);
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: var(--on-primary);
  border: 2px solid var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,104,95,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--on-surface);
  border: 2px solid var(--outline-variant);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-sm { padding: 8px 16px; font-size: 14px; }
.btn-lg { padding: 16px 32px; font-size: 17px; }
.btn-full { width: 100%; justify-content: center; }

/* =============================================
   BADGES & CHIPS
   ============================================= */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-success  { background: #dcfce7; color: #166534; }
.badge-primary  { background: #ccfbf1; color: var(--primary); }
.badge-accent   { background: #ffedd5; color: #c2410c; }
.badge-warning  { background: #fef9c3; color: #854d0e; }
.badge-error    { background: #fee2e2; color: var(--error); }

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--surface);
  border-bottom: 1px solid var(--outline-variant);
  box-shadow: 0 1px 4px rgba(11,28,48,0.05);
}

.header-top {
  background: var(--inverse-surface);
  color: var(--inverse-on-surface);
  padding: 6px 0;
  font-size: 13px;
}
.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-top a { color: var(--inverse-on-surface); opacity: 0.8; }
.header-top a:hover { opacity: 1; }
.header-top-links { display: flex; gap: var(--space-lg); }

.header-main .container {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  height: 72px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}
.site-logo img { height: 44px; width: auto; }
.site-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.site-logo-text .logo-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--on-surface);
}
.site-logo-text .logo-name span { color: var(--accent); }
.site-logo-text .logo-sub {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-surface-variant);
}

/* Nav */
.main-nav { flex: 1; }
.main-nav ul { display: flex; align-items: center; gap: var(--space-xs); }
.main-nav ul li a {
  display: block;
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--on-surface-variant);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.main-nav ul li a:hover,
.main-nav ul li.current-menu-item a {
  color: var(--primary);
  background: var(--surface-low);
}

/* Dropdown */
.main-nav ul li { position: relative; }
.main-nav ul li ul {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--surface);
  border: 1px solid var(--outline-variant);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-overlay);
  min-width: 200px;
  padding: var(--space-sm);
  flex-direction: column;
}
.main-nav ul li:hover > ul { display: flex; }
.main-nav ul li ul li a { padding: 10px 14px; color: var(--on-surface); }

/* Search */
.header-search {
  position: relative;
  flex: 0 0 220px;
}
.header-search input {
  width: 100%;
  padding: 9px 16px 9px 40px;
  border: 1px solid var(--outline-variant);
  border-radius: var(--radius-full);
  font-size: 14px;
  background: var(--surface-low);
  color: var(--on-surface);
  transition: all var(--transition);
  font-family: var(--font-main);
}
.header-search input:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(0,104,95,0.1);
}
.header-search .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--on-surface-variant);
  pointer-events: none;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-left: auto;
}
.header-icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  color: var(--on-surface-variant);
  transition: all var(--transition);
  background: transparent;
}
.header-icon-btn:hover {
  background: var(--surface-low);
  color: var(--primary);
}
.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 18px;
  height: 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--on-surface);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  background: var(--surface);
  overflow: hidden;
  position: relative;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, var(--surface-low) 0%, var(--surface-container) 100%);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xxl);
  align-items: center;
  min-height: 580px;
  position: relative;
  z-index: 1;
  padding: var(--space-xxl) 0;
}
.hero-content { max-width: 540px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--surface-container);
  border: 1px solid var(--outline-variant);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-lg);
}
.hero-tag::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.hero-content h1 {
  margin-bottom: var(--space-lg);
  color: var(--on-surface);
}
.hero-content h1 span { color: var(--primary); }

.hero-content p {
  font-size: 18px;
  color: var(--on-surface-variant);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.hero-stats {
  display: flex;
  gap: var(--space-xl);
}
.hero-stat-item { display: flex; flex-direction: column; }
.hero-stat-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--on-surface);
  font-family: var(--font-display);
}
.hero-stat-label {
  font-size: 13px;
  color: var(--on-surface-variant);
  font-weight: 500;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.hero-img {
  width: 100%;
  max-width: 560px;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-overlay);
}
.hero-badge {
  position: absolute;
  bottom: 32px;
  left: -24px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  border: 1px solid var(--outline-variant);
}
.hero-badge-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--tertiary) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}
.hero-badge-text strong { display: block; font-size: 15px; color: var(--on-surface); }
.hero-badge-text span { font-size: 13px; color: var(--on-surface-variant); }

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: var(--inverse-surface);
  padding: var(--space-lg) 0;
}
.trust-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex: 1;
}
.trust-item + .trust-item {
  padding-left: var(--space-lg);
  border-left: 1px solid rgba(255,255,255,0.1);
}
.trust-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6bd8cb;
  flex-shrink: 0;
}
.trust-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--inverse-on-surface);
  margin-bottom: 2px;
}
.trust-text span {
  font-size: 12px;
  color: rgba(234,241,255,0.6);
}

/* =============================================
   SECTION COMMONS
   ============================================= */
.section { padding: var(--space-xxl) 0; }
.section-alt { background: var(--surface-low); }

.section-header { text-align: center; margin-bottom: var(--space-xxl); }
.section-header p {
  font-size: 17px;
  color: var(--on-surface-variant);
  max-width: 500px;
  margin: var(--space-md) auto 0;
}

/* =============================================
   INNER PAGES
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-low) 100%);
  padding: var(--space-xxl) 0;
  border-bottom: 1px solid var(--outline-variant);
}
.page-hero .container {
  max-width: 860px;
}
.page-hero h1 {
  margin-bottom: var(--space-md);
}
.page-hero p:not(.section-label) {
  font-size: 18px;
  color: var(--on-surface-variant);
  line-height: 1.7;
}
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
  gap: var(--space-xxl);
  align-items: flex-start;
}
.rich-content {
  color: var(--on-surface-variant);
  font-size: 16px;
  line-height: 1.8;
}
.rich-content ul,
.rich-content ol {
  list-style: initial;
  padding-left: 1.25rem;
  margin: 0 0 var(--space-lg);
}
.rich-content h2,
.rich-content h3,
.rich-content h4 {
  margin: var(--space-lg) 0 var(--space-sm);
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.value-item,
.contact-panel,
.contact-form,
.booking-panel {
  background: var(--surface);
  border: 1px solid var(--outline-variant);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.value-item {
  padding: var(--space-xl);
}
.value-item strong {
  display: block;
  margin-bottom: var(--space-sm);
  font-family: var(--font-display);
  font-size: 18px;
}
.value-item span {
  color: var(--on-surface-variant);
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: var(--space-xl);
  align-items: flex-start;
}
.contact-panel,
.contact-form,
.booking-panel {
  padding: var(--space-xl);
}
.contact-panel h2,
.booking-panel h2 {
  margin-bottom: var(--space-lg);
}
.contact-row {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  color: var(--on-surface-variant);
  border-bottom: 1px solid var(--outline-variant);
}
.contact-row svg {
  color: var(--primary);
  flex-shrink: 0;
}
.contact-panel .btn {
  margin-top: var(--space-lg);
}
.contact-form {
  display: grid;
  gap: var(--space-md);
}
.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--on-surface);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--outline-variant);
  border-radius: var(--radius);
  font: inherit;
  color: var(--on-surface);
  background: var(--surface);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,104,95,0.1);
}
.booking-panel {
  position: sticky;
  top: 96px;
}
.booking-panel p {
  color: var(--on-surface-variant);
  margin-bottom: var(--space-lg);
}
.booking-panel .btn + .btn {
  margin-top: var(--space-sm);
}

/* =============================================
   SHOP BY CATEGORY
   ============================================= */
.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-md);
}
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-lg) var(--space-md);
  background: var(--surface);
  border: 1px solid var(--outline-variant);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  color: var(--on-surface);
}
.category-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.category-icon {
  width: 52px; height: 52px;
  background: var(--surface-container);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all var(--transition);
}
.category-card:hover .category-icon {
  background: var(--primary);
  color: #fff;
}
.category-card span {
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  color: var(--on-surface);
  line-height: 1.3;
}

/* =============================================
   HOME CARE SERVICES
   ============================================= */
.services-section { background: var(--surface-low); }
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-xxl);
}
.services-header .view-all {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 4px;
}
.services-header .view-all:hover { text-decoration: underline; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--outline-variant);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition);
}
.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.service-icon {
  width: 52px; height: 52px;
  background: var(--surface-container);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: var(--space-lg);
}
.service-card h3 { margin-bottom: var(--space-sm); }
.service-card p {
  font-size: 14px;
  color: var(--on-surface-variant);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}
.service-card .btn { margin-top: auto; }

/* =============================================
   FEATURED PRODUCTS
   ============================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--outline-variant);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: var(--primary);
}
.product-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--surface-low);
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }

.product-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
}
.product-wishlist {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 34px; height: 34px;
  background: var(--surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-surface-variant);
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  cursor: pointer;
}
.product-wishlist:hover { color: var(--error); }

.product-info {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-brand {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--on-surface-variant);
  margin-bottom: 6px;
}
.product-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--on-surface);
  margin-bottom: var(--space-sm);
  line-height: 1.4;
  flex: 1;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: var(--space-sm);
  font-size: 13px;
}
.stars { color: #f59e0b; letter-spacing: -1px; }
.rating-count { color: var(--on-surface-variant); }

.product-price-row {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}
.product-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--on-surface);
  font-family: var(--font-display);
}
.product-price-original {
  font-size: 14px;
  text-decoration: line-through;
  color: var(--on-surface-variant);
}
.product-discount {
  font-size: 12px;
  font-weight: 600;
  color: var(--success);
  background: #dcfce7;
  padding: 2px 7px;
  border-radius: var(--radius-full);
}

.product-actions {
  display: flex;
  gap: var(--space-sm);
}
.product-actions .btn { flex: 1; font-size: 13px; padding: 10px 12px; }

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-us-section {
  background: var(--inverse-surface);
  color: var(--inverse-on-surface);
  padding: var(--space-xxl) 0;
}
.why-us-section .section-header h2,
.why-us-section .section-header p { color: var(--inverse-on-surface); }
.why-us-section .section-header p { opacity: 0.7; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}
.why-item { text-align: center; }
.why-icon {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  color: #6bd8cb;
  font-size: 28px;
  transition: all var(--transition);
}
.why-item:hover .why-icon {
  background: var(--primary);
  color: #fff;
  transform: scale(1.05);
}
.why-item h4 {
  color: var(--inverse-on-surface);
  margin-bottom: var(--space-sm);
}
.why-item p {
  font-size: 14px;
  color: rgba(234,241,255,0.65);
  line-height: 1.6;
  margin: 0;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--outline-variant);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-hover); }
.testimonial-quote {
  font-size: 40px;
  color: var(--surface-container);
  line-height: 1;
  margin-bottom: var(--space-sm);
  font-family: Georgia, serif;
}
.testimonial-card p {
  font-size: 15px;
  color: var(--on-surface-variant);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface-container);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-display);
}
.testimonial-author-info strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}
.testimonial-author-info span {
  font-size: 12px;
  color: var(--on-surface-variant);
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-md);
  color: #f59e0b;
}

/* =============================================
   FOOTER
   ============================================= */
#site-footer {
  background: var(--inverse-surface);
  color: var(--inverse-on-surface);
  padding-top: var(--space-xxl);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-xxl);
  padding-bottom: var(--space-xxl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .site-logo { margin-bottom: var(--space-lg); }
.footer-brand .site-logo-text .logo-name { color: var(--inverse-on-surface); }
.footer-brand p {
  font-size: 14px;
  color: rgba(234,241,255,0.6);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 14px;
  color: rgba(234,241,255,0.7);
  margin-bottom: var(--space-sm);
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: #6bd8cb; }

.footer-col h5 {
  color: var(--inverse-on-surface);
  font-size: 15px;
  margin-bottom: var(--space-lg);
}
.footer-col ul li { margin-bottom: var(--space-sm); }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(234,241,255,0.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: #6bd8cb; }

.footer-newsletter h5 {
  color: var(--inverse-on-surface);
  font-size: 15px;
  margin-bottom: var(--space-sm);
}
.footer-newsletter p {
  font-size: 13px;
  color: rgba(234,241,255,0.6);
  margin-bottom: var(--space-md);
}
.newsletter-form {
  display: flex;
  gap: var(--space-sm);
}
.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: var(--inverse-on-surface);
  font-size: 14px;
  font-family: var(--font-main);
}
.newsletter-form input::placeholder { color: rgba(234,241,255,0.4); }
.newsletter-form input:focus { outline: none; border-color: #6bd8cb; }
.newsletter-form button {
  padding: 10px 16px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--primary-dark); }

.footer-bottom {
  padding: var(--space-lg) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(234,241,255,0.45);
}
.footer-social {
  display: flex;
  gap: var(--space-sm);
}
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(234,241,255,0.6);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--primary);
  color: #fff;
}

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: all var(--transition);
  color: #fff;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

/* =============================================
   WOOCOMMERCE OVERRIDES
   ============================================= */
.woocommerce-page .woocommerce {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.woocommerce ul.products li.product .price { color: var(--on-surface); font-weight: 700; }
.woocommerce ul.products li.product .button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--primary) !important;
  color: #fff !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  transition: background var(--transition) !important;
  border: none !important;
}
.woocommerce ul.products li.product .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: var(--primary-dark) !important;
}
.woocommerce .star-rating span::before { color: #f59e0b; }
.woocommerce span.onsale {
  background: var(--accent) !important;
  border-radius: var(--radius) !important;
  min-height: auto !important;
  line-height: 1.4 !important;
  padding: 4px 10px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
}
.woocommerce-cart table.cart td.actions .coupon .input-text,
.woocommerce #coupon_code {
  border: 1px solid var(--outline-variant);
  border-radius: var(--radius);
  padding: 10px 14px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 1fr; gap: var(--space-xl); min-height: 480px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --space-xxl: 48px; }

  .header-top { display: none; }
  .header-main .container { gap: var(--space-md); }
  .main-nav, .header-search { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.active {
    display: flex;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--outline-variant);
    padding: var(--space-md);
    z-index: 999;
  }
  .main-nav.active ul { flex-direction: column; gap: 0; width: 100%; }
  .main-nav.active ul li a { padding: 14px 16px; border-radius: var(--radius); }

  .hero-section::before { display: none; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; min-height: auto; gap: var(--space-xl); }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-badge { left: 0; right: 0; margin: 0 auto; width: fit-content; position: relative; bottom: auto; margin-top: var(--space-md); }

  .trust-bar-inner { flex-wrap: wrap; gap: var(--space-md); }
  .trust-item + .trust-item { border-left: none; padding-left: 0; }
  .trust-item { flex: calc(50% - 12px); }

  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; align-items: flex-start; gap: var(--space-md); }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .footer-bottom { flex-direction: column; gap: var(--space-md); text-align: center; }
  .content-grid,
  .contact-layout,
  .value-grid { grid-template-columns: 1fr; }
  .booking-panel { position: static; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-stats { flex-wrap: wrap; gap: var(--space-lg); justify-content: center; }
  .category-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-sm); }
  .trust-item { flex: 100%; }
}
