/* =========================================
   EUPHELIA PERFUMARIA — Main Stylesheet
   Fontes: Cormorant Garamond + Inter
   ========================================= */

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

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

:root {
  --gold:       #C9A227;
  --gold-light: #E8D4A0;
  --rose:       #9B3A4D;
  --bg:         #FAFAF8;
  --bg-alt:     #F3EFE8;
  --text:       #1A1A1A;
  --text-muted: #6B6B6B;
  --border:     #E8E0D0;
  --white:      #FFFFFF;
  --shadow:     0 2px 16px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.12);
  --radius:     12px;
  --radius-sm:  8px;
  --transition: 0.2s ease;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* === LAYOUT === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-alt); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--text);
  color: var(--white);
}
.btn-primary:hover { background: #333; transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: #b8911e; transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--text); }

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(37,211,102,0.35); }

.btn-lg { padding: 1.1rem 2.5rem; font-size: 1rem; }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.8rem; }

/* === HEADER / NAV === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }

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

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  flex-shrink: 0;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 70px 0 0;
  background: var(--bg);
  z-index: 99;
  padding: 2rem 1.5rem;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

/* === HERO === */
.hero {
  padding: 5rem 0 4rem;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,162,39,0.07), transparent 65%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content { max-width: 560px; }
.hero h1 { margin-bottom: 1.25rem; }
.hero h1 em { color: var(--gold); font-style: italic; }
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

.hero-visual {
  position: relative;
  aspect-ratio: 1;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-alt);
  border: 1px solid var(--border);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  background: linear-gradient(135deg, var(--bg-alt), #EDE6D8);
}

.hero-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-badge-stars { color: #F59E0B; font-size: 0.8rem; letter-spacing: 1px; }
.hero-badge-text { font-size: 0.75rem; font-weight: 600; }
.hero-badge-sub { font-size: 0.65rem; color: var(--text-muted); }

/* === PERKS BAR === */
.perks-bar { background: var(--text); color: var(--white); padding: 1.25rem 0; }
.perks-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.perk {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
}
.perk svg { color: var(--gold); }

/* === CATEGORIES === */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.category-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.category-card:hover .category-img { transform: scale(1.04); }

.category-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: linear-gradient(160deg, var(--bg-alt), #E8DDD0);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}
.category-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.category-count { font-size: 0.75rem; color: rgba(255,255,255,0.7); }

/* === PRODUCTS GRID === */
.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.product-img-wrap {
  position: relative;
  aspect-ratio: 1;
  background: var(--bg-alt);
  overflow: hidden;
}
.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-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: linear-gradient(135deg, var(--bg-alt), #EDE6D8);
}

.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--rose);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
}
.product-badge-new { background: var(--gold); }

.product-info { padding: 1rem; }
.product-name {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text);
  line-height: 1.3;
}
.product-desc { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.75rem; }

.product-price-row { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 0.1rem; }
.price-current { font-size: 1.05rem; font-weight: 700; color: var(--text); }
.price-old { font-size: 0.75rem; color: var(--text-muted); text-decoration: line-through; }
.price-pix { font-size: 0.7rem; color: #059669; font-weight: 600; margin-bottom: 0.75rem; }
.price-installment { font-size: 0.7rem; color: var(--text-muted); margin-bottom: 0.75rem; }

.product-cta { display: grid; grid-template-columns: 1fr auto; gap: 0.5rem; }
.btn-buy { padding: 0.6rem 1rem; font-size: 0.8rem; border-radius: var(--radius-sm); }
.btn-wpp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: #25D366;
  color: var(--white);
  transition: background var(--transition);
  flex-shrink: 0;
}
.btn-wpp-icon:hover { background: #1ebe5a; }

/* === KITS SECTION === */
.kits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.kit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.kit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.kit-card-premium { border-color: rgba(201,162,39,0.4); background: linear-gradient(160deg, var(--white), rgba(201,162,39,0.04)); }

.kit-img-wrap {
  aspect-ratio: 4/3;
  background: var(--bg-alt);
  overflow: hidden;
  position: relative;
}
.kit-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.kit-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, #F3EFE8, #E8DDD0);
}

.kit-tag {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.kit-info { padding: 1.25rem; }
.kit-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.kit-contents { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.6; }

.kit-price-block { margin-bottom: 1rem; }
.kit-from { font-size: 0.7rem; color: var(--text-muted); text-decoration: line-through; }
.kit-price { font-size: 1.6rem; font-family: 'Cormorant Garamond', serif; font-weight: 700; color: var(--text); }
.kit-installment { font-size: 0.75rem; color: var(--text-muted); }
.kit-pix { font-size: 0.75rem; color: #059669; font-weight: 600; }

/* === TESTIMONIALS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.testimonial-stars { color: #F59E0B; font-size: 0.85rem; margin-bottom: 0.75rem; }
.testimonial-text { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--gold);
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.testimonial-name { font-size: 0.8rem; font-weight: 600; }
.testimonial-location { font-size: 0.7rem; color: var(--text-muted); }

/* === RATINGS BAR === */
.ratings-bar {
  background: var(--text);
  color: var(--white);
  padding: 2.5rem 0;
}
.ratings-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  text-align: center;
}
.rating-stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.rating-stat .label { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 0.25rem; }
.rating-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.15); }

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, var(--text) 0%, #2D2D2D 100%);
  color: var(--white);
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,162,39,0.1), transparent 60%);
  pointer-events: none;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; position: relative; }
.cta-section p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; font-size: 1rem; position: relative; }
.cta-section .btn-whatsapp { font-size: 1rem; padding: 1.1rem 2.5rem; position: relative; }

/* === FOOTER === */
.site-footer {
  background: #111111;
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.footer-brand-name span { color: var(--gold); }
.footer-desc { font-size: 0.825rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-contact a { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; margin-bottom: 0.4rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-contact a:hover { color: var(--white); }

.footer-col h4 { font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a { font-size: 0.825rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.75rem; }
.footer-payments { display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; }
.payment-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* === FLOATING WHATSAPP === */
.wpp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: var(--white);
  padding: 0.85rem 1.25rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: all var(--transition);
  animation: float-in 0.5s ease 1s both;
}
.wpp-float:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }
.wpp-float svg { flex-shrink: 0; }

@keyframes float-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* === BREADCRUMB === */
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb span { margin: 0 0.4rem; }

/* === PAGE HERO (inner pages) === */
.page-hero {
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.5rem; }
.page-hero p { color: var(--text-muted); font-size: 1rem; }

/* === PRODUCT PAGE DETAIL === */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 3rem 0;
  align-items: start;
}
.product-gallery {
  position: sticky;
  top: 90px;
}
.product-main-img {
  aspect-ratio: 1;
  border-radius: var(--radius);
  background: var(--bg-alt);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 0.75rem;
}
.product-main-img img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbnails { display: flex; gap: 0.5rem; }
.product-thumb {
  width: 70px; height: 70px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-alt);
}
.product-thumb.active { border-color: var(--gold); }

.product-detail-info {}
.product-detail-name { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 0.5rem; }
.product-detail-code { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.product-detail-stars { color: #F59E0B; font-size: 0.875rem; margin-bottom: 1.5rem; }
.product-detail-price { margin-bottom: 1.25rem; }
.product-detail-price .price-main { font-size: 2rem; font-weight: 700; font-family: 'Cormorant Garamond', serif; }
.product-detail-actions { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.product-detail-actions .btn { justify-content: center; }
.product-detail-perks { display: flex; flex-direction: column; gap: 0.6rem; padding: 1.25rem; background: var(--bg-alt); border-radius: var(--radius); }
.detail-perk { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--text-muted); }
.detail-perk svg { color: var(--gold); flex-shrink: 0; }

/* === ABOUT PAGE === */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img-wrap { aspect-ratio: 4/5; border-radius: 20px; overflow: hidden; background: var(--bg-alt); border: 1px solid var(--border); }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.value-card { padding: 1.5rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); }
.value-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.value-title { font-size: 1rem; font-weight: 600; margin-bottom: 0.4rem; font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; }
.value-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

/* === CONTACT PAGE === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--bg-alt); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { color: var(--gold); }
.contact-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 0.25rem; }
.contact-value { font-size: 0.925rem; font-weight: 500; }

.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--text); }
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition);
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 120px; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn { display: none; }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { max-height: 350px; }
  .hero { padding: 2.5rem 0 3rem; }

  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }

  .kits-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .ratings-inner { gap: 1.5rem; }
  .rating-divider { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .product-detail { grid-template-columns: 1fr; gap: 2rem; }
  .product-gallery { position: static; }

  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  .perks-inner { gap: 1rem; }
  .perks-bar .perk:nth-child(n+3) { display: none; }

  .wpp-float span { display: none; }
  .wpp-float { padding: 0.9rem; border-radius: 50%; }

  .section { padding: 3rem 0; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .hero-trust { gap: 0.75rem; }
  .trust-item { font-size: 0.72rem; }
}

/* === UTILITIES === */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
