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

:root {
  --color-primary: #2d6a4f;
  --color-primary-dark: #1b4332;
  --color-primary-light: #40916c;
  --color-accent: #f4a261;
  --color-accent-dark: #e76f51;
  --color-bg: #faf9f7;
  --color-bg-alt: #f0ede8;
  --color-surface: #ffffff;
  --color-text: #1a1a2e;
  --color-text-muted: #5c5c6d;
  --color-border: #e8e4df;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(26, 26, 46, 0.08);
  --shadow-lg: 0 12px 48px rgba(26, 26, 46, 0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
html[dir="rtl"] { direction: rtl; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}
body.modal-open { overflow: hidden; }

#app {
  overflow-x: hidden;
  max-width: 100%;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.show-mobile-only { display: none !important; }

/* Top Bar */
.top-bar {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.9);
  font-size: 0.8125rem;
  padding: 8px 0;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.top-bar-item { opacity: 0.9; transition: opacity var(--transition); }
.top-bar-item:hover { opacity: 1; }
.top-bar-divider { opacity: 0.4; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.logo img { height: 52px; width: auto; max-width: 220px; object-fit: contain; background: transparent; }
.nav { display: flex; gap: 32px; }
.nav-link {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--color-primary); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
}
.header-actions { display: flex; align-items: center; gap: 12px; }

.lang-select {
  appearance: none;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 8px 32px 8px 12px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  max-width: 180px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235c5c6d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.lang-flag-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 1.375rem;
  line-height: 1;
  border-radius: 50%;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.lang-flag-btn:active { transform: scale(0.94); }

.whatsapp-header-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.whatsapp-header-btn svg { width: 22px; height: 22px; }
.whatsapp-header-btn:active { transform: scale(0.94); }

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: white;
  box-shadow: 0 4px 16px rgba(45, 106, 79, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 106, 79, 0.4);
}
.btn-outline {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}
.btn-outline:hover { background: var(--color-primary); color: white; }
.btn-accent {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: white;
}
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 18px 36px; font-size: 1rem; }

/* Hero */
.hero {
  position: relative;
  --hero-scale: 1.2;
  --hero-hover-scale: 1.3;
  min-height: 95vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f5e9 0%, var(--color-bg) 50%, #fff3e0 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background: url('/images/shape-circle.png') repeat;
  background-size: calc(200px * var(--hero-scale));
}
.hero > .container {
  max-width: 1360px;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(48px * var(--hero-scale));
  align-items: center;
  padding: calc(80px * var(--hero-scale)) 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: calc(8px * var(--hero-scale));
  background: white;
  padding: calc(8px * var(--hero-scale)) calc(16px * var(--hero-scale));
  border-radius: 50px;
  font-size: calc(0.8125rem * var(--hero-scale));
  font-weight: 600;
  color: var(--color-primary);
  box-shadow: var(--shadow);
  margin-bottom: calc(24px * var(--hero-scale));
}
.hero-badge::before {
  content: '🐾';
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(calc(2.5rem * var(--hero-scale)), calc(5vw * var(--hero-scale)), calc(3.75rem * var(--hero-scale)));
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: calc(20px * var(--hero-scale));
  color: var(--color-text);
}
.hero h1 span { color: var(--color-primary); }
.hero-subtitle {
  font-size: calc(1.125rem * var(--hero-scale));
  color: var(--color-text-muted);
  margin-bottom: calc(32px * var(--hero-scale));
  max-width: calc(520px * var(--hero-scale));
}
.hero-actions {
  display: flex;
  gap: calc(16px * var(--hero-scale));
  flex-wrap: wrap;
}
.hero .btn-lg {
  padding: calc(18px * var(--hero-scale)) calc(36px * var(--hero-scale));
  font-size: calc(1rem * var(--hero-scale));
}
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  overflow: visible;
}
.hero-banner-stack {
  position: relative;
  width: 100%;
  max-width: calc(580px * var(--hero-scale));
  aspect-ratio: 1 / 1;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.1));
  animation: float 6s ease-in-out infinite;
  overflow: visible;
}
.hero-layer {
  position: absolute;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}
.hero-layer-base {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
  pointer-events: none;
}
.hero-layer-product {
  position: absolute;
  display: block;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1), z-index 0s;
  text-decoration: none;
  color: inherit;
}
.hero-layer-dental { z-index: 2; }
.hero-layer-multipurpose { z-index: 3; }
.hero-layer-eye { z-index: 4; }
.hero-layer-ear { z-index: 5; }
.hero-layer-product img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}
.hero-layer-label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -110%) scale(0.92);
  background: var(--color-primary-dark);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.5625rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 4px 8px;
  border-radius: 8px;
  white-space: normal;
  word-break: break-word;
  hyphens: auto;
  max-width: min(100%, 9rem);
  width: max-content;
  text-align: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
  z-index: 30;
}
.hero-layer-product:hover,
.hero-layer-product:focus-visible {
  transform: scale(var(--hero-hover-scale));
  z-index: 25;
}
.hero-layer-product:hover .hero-layer-label,
.hero-layer-product:focus-visible .hero-layer-label {
  opacity: 1;
  transform: translate(-50%, -120%) scale(1);
}
.hero-image img:not(.hero-layer):not(.hero-layer-product img) {
  width: 100%;
  max-width: calc(580px * var(--hero-scale));
  max-height: calc(520px * var(--hero-scale));
  height: auto;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.12));
  animation: float 6s ease-in-out infinite;
}
.hero-float-card {
  position: absolute;
  background: white;
  padding: calc(16px * var(--hero-scale)) calc(20px * var(--hero-scale));
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-size: calc(0.875rem * var(--hero-scale));
  font-weight: 600;
}
.hero-float-card.card-1 { bottom: 10%; left: 0; animation: float 5s ease-in-out infinite 1s; }
.hero-float-card.card-2 { bottom: 21%; top: auto; right: 0; animation: float 5s ease-in-out infinite 0.5s; }

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

/* Page loader */
html.app-ready #app {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.4s ease;
}
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.page-loader-icon {
  width: min(120px, 28vw);
  height: auto;
  object-fit: contain;
  animation: loader-heartbeat 1.15s ease-in-out infinite;
  transform-origin: center center;
}
@keyframes loader-heartbeat {
  0% { transform: scale(1); }
  12% { transform: scale(1.14); }
  24% { transform: scale(1); }
  36% { transform: scale(1.1); }
  48%, 100% { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .page-loader-icon {
    animation: loader-heartbeat-soft 1.8s ease-in-out infinite;
  }
}
@keyframes loader-heartbeat-soft {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.05); opacity: 1; }
}

/* Sections */
.section { padding: 96px 0; }
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent-dark);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.section-desc { color: var(--color-text-muted); font-size: 1.0625rem; }

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--color-border);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin-bottom: 8px;
}
.feature-card p { font-size: 0.9375rem; color: var(--color-text-muted); }

/* Stats */
.stats-section {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  color: white;
  padding: 64px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-accent);
}
.stat-label { font-size: 1rem; opacity: 0.9; margin-top: 4px; }

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.product-card-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-bg-alt);
  position: relative;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.05); }
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}
.product-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-card-body p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  flex: 1;
  margin-bottom: 16px;
}
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}
.product-price {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-primary);
}
.product-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 4px;
}
.product-link:hover { color: var(--color-accent-dark); }

/* Product Detail */
.product-detail {
  padding: 48px 0 96px;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.product-gallery {
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
}
.product-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-info h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 12px;
}
.product-info .sku {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}
.product-info .price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 24px;
}
.product-info .desc {
  color: var(--color-text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}
.product-meta {
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 24px;
}
.product-meta h4 {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}
.product-meta p { font-size: 0.9375rem; }
.product-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* About */
.about-hero {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  color: white;
  padding: 80px 0;
  text-align: center;
}
.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.value-card {
  background: var(--color-surface);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  text-align: center;
}
.value-card .icon { font-size: 2.5rem; margin-bottom: 16px; }
.value-card h3 {
  font-family: var(--font-display);
  margin-bottom: 8px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}
.contact-info-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact-info-item h4 {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  margin-bottom: 4px;
}
.contact-info-item p { color: var(--color-text-muted); font-size: 0.9375rem; }
.contact-form {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9375rem;
  transition: border-color var(--transition);
  background: var(--color-bg);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-map-section {
  margin-top: 56px;
}
.contact-map-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  margin-bottom: 20px;
  text-align: center;
}
.contact-map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  background: var(--color-bg-alt);
  aspect-ratio: 16 / 9;
  min-height: 360px;
}
.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.contact-map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-weight: 600;
  color: var(--color-primary);
  transition: color var(--transition);
}
.contact-map-link:hover { color: var(--color-accent-dark); }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  border-radius: var(--radius);
  padding: 64px;
  text-align: center;
  color: white;
  margin: 0 0 96px;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 12px;
}
.cta-banner p { opacity: 0.95; margin-bottom: 28px; font-size: 1.0625rem; }
.cta-banner .btn { background: white; color: var(--color-accent-dark); }
.cta-banner .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* Lifestyle sections */
.lifestyle-section { padding-top: 0; }
.lifestyle-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.lifestyle-block.reverse .lifestyle-content { order: 2; }
.lifestyle-block.reverse .lifestyle-image { order: 1; }
.lifestyle-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--color-bg-alt);
}
.lifestyle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.lifestyle-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.lifestyle-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  margin-bottom: 16px;
}
.lifestyle-desc {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.lifestyle-list {
  display: grid;
  gap: 12px;
}
.lifestyle-list li {
  position: relative;
  padding-left: 28px;
  color: var(--color-text);
  line-height: 1.55;
  font-size: 0.9375rem;
}
.lifestyle-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}

/* Showcase sections (legacy) */
.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}
.showcase.reverse { direction: ltr; }
.showcase.reverse .showcase-content { order: 2; }
.showcase.reverse .showcase-image { order: 1; }
.showcase-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.showcase-image img { width: 100%; }
.showcase-label {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.showcase h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 16px;
}
.showcase p { color: var(--color-text-muted); line-height: 1.7; }

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #e8f5e9, var(--color-bg));
  padding: 64px 0;
  text-align: center;
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 12px;
}
.page-header p { color: var(--color-text-muted); max-width: 560px; margin: 0 auto; }

/* Legal */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 24px;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  margin: 32px 0 12px;
}
.legal-content p { color: var(--color-text-muted); margin-bottom: 16px; line-height: 1.7; }

/* Footer */
.footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.85);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { height: 48px; width: auto; max-width: 200px; margin-bottom: 16px; object-fit: contain; background: transparent; }
.footer-brand p { font-size: 0.9375rem; opacity: 0.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.social-link svg { width: 20px; height: 20px; }
.social-link:hover { background: var(--color-primary-light); }
.footer-links h4 {
  font-family: var(--font-display);
  color: white;
  margin-bottom: 20px;
  font-size: 1rem;
}
.footer-links a {
  display: block;
  font-size: 0.9375rem;
  opacity: 0.7;
  margin-bottom: 12px;
  transition: opacity var(--transition);
}
.footer-links a:hover { opacity: 1; }
.footer-contact h4 {
  font-family: var(--font-display);
  color: white;
  margin-bottom: 20px;
}
.contact-line { font-size: 0.9375rem; opacity: 0.7; margin-bottom: 8px; }
.contact-line a:hover { opacity: 1; color: var(--color-accent); }
.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.6;
}

/* Quote Modal */
.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.quote-modal.open {
  opacity: 1;
  visibility: visible;
}
.quote-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0.55);
  backdrop-filter: blur(4px);
}
.quote-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 40px 32px 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  transform: translateY(16px) scale(0.98);
  transition: transform var(--transition);
}
.quote-modal.open .quote-modal-dialog {
  transform: translateY(0) scale(1);
}
.quote-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-text-muted);
  transition: background var(--transition), color var(--transition);
}
.quote-modal-close:hover {
  background: var(--color-bg-alt);
  color: var(--color-text);
}
.quote-modal-dialog h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 8px;
  padding-right: 40px;
}
.quote-modal-subtitle {
  color: var(--color-text-muted);
  margin-bottom: 24px;
  font-size: 0.9375rem;
}
.quote-form .btn { width: 100%; margin-top: 8px; }
.quote-form-status {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  margin-bottom: 12px;
}
.quote-form-status.success {
  background: #e8f5e9;
  color: var(--color-primary-dark);
}
.quote-form-status.error {
  background: #fdecea;
  color: #b42318;
}

/* Language Modal */
.lang-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.lang-modal.open {
  opacity: 1;
  visibility: visible;
}
.lang-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0.55);
  backdrop-filter: blur(4px);
}
.lang-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 420px;
  max-height: 70vh;
  overflow-y: auto;
  background: var(--color-surface);
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 24px 20px calc(24px + env(safe-area-inset-bottom));
  box-shadow: var(--shadow-lg);
  transform: translateY(100%);
  transition: transform var(--transition);
}
.lang-modal.open .lang-modal-dialog {
  transform: translateY(0);
}
.lang-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.375rem;
  line-height: 1;
  color: var(--color-text-muted);
}
.lang-modal-dialog h2 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin-bottom: 16px;
  padding-right: 36px;
}
.lang-modal-list {
  display: grid;
  gap: 6px;
}
.lang-modal-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: left;
  transition: background var(--transition);
}
.lang-modal-option:hover,
.lang-modal-option.active {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}
.lang-modal-flag { font-size: 1.25rem; line-height: 1; }

/* Mobile Tab Bar */
.mobile-tabbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--color-border);
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -4px 24px rgba(26, 26, 46, 0.08);
}
.tab-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 4px 10px;
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: color var(--transition);
  min-width: 0;
}
.tab-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.tab-item span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.tab-item.active,
.tab-item:hover {
  color: var(--color-primary);
}
.tab-item.active svg {
  stroke: var(--color-accent-dark);
}

/* Animations */
.fade-in {
  animation: fadeIn 0.6s ease forwards;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero { --hero-scale: 1.08; --hero-hover-scale: 1.22; }
  .hero-inner, .product-detail-grid, .about-grid, .contact-grid, .showcase, .lifestyle-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .showcase.reverse .showcase-content,
  .showcase.reverse .showcase-image,
  .lifestyle-block.reverse .lifestyle-content,
  .lifestyle-block.reverse .lifestyle-image { order: unset; }
}

@media (max-width: 768px) {
  .show-mobile-only { display: flex !important; }
  .hide-mobile { display: none !important; }
  .nav { display: none !important; }
  .container { padding: 0 16px; }
  .header-inner {
    height: 60px;
    gap: 12px;
  }
  .logo img { height: 40px; max-width: 160px; }
  .header-actions { gap: 8px; flex-shrink: 0; }
  .top-bar { font-size: 0.75rem; padding: 6px 0; }
  .top-bar-inner { gap: 8px; }
  #main-content,
  .footer {
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
  }
  .hero { --hero-scale: 1; --hero-hover-scale: 1.15; min-height: auto; }
  .hero > .container {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero-inner {
    padding: 40px 0 48px;
    min-height: auto;
    gap: 32px;
  }
  .hero-content {
    padding: 0 16px;
  }
  .hero-actions {
    padding: 0 8px;
    gap: 12px;
  }
  .hero-image { order: -1; padding: 0 4px; }
  .hero-banner-stack {
    max-width: 100%;
    animation: none;
  }
  .hero-layer-product:hover,
  .hero-layer-product:focus-visible {
    transform: scale(var(--hero-hover-scale));
  }
  .hero-layer-label {
    font-size: 0.5rem;
    max-width: min(100%, 5.5rem);
    padding: 3px 6px;
  }
  .hero-float-card { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 24px; }
  .section { padding: 64px 0; }
  .lifestyle-section + .lifestyle-section { padding-top: 0; }
  .lifestyle-image img { aspect-ratio: 16 / 11; }
  .whatsapp-float { display: none !important; }
}

@media (min-width: 769px) {
  .lang-modal {
    align-items: center;
    padding: 24px;
  }
  .lang-modal-dialog {
    border-radius: var(--radius);
    max-height: 80vh;
    transform: translateY(16px) scale(0.98);
    padding: 32px 24px 24px;
  }
  .lang-modal.open .lang-modal-dialog {
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}
