@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,500;9..40,600;9..40,700&family=Inter:wght@400;500;600&display=swap');
@import 'variables.css';

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary-hover); }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--color-heading);
  line-height: 1.3;
  margin: 0 0 0.75em;
}
h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 15px; }
.btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--color-primary);
  color: var(--color-dark) !important;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn:hover {
  background: var(--color-primary-hover);
  color: var(--color-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232, 185, 35, 0.35);
}
.btn--dark {
  background: var(--color-dark);
  color: var(--color-white) !important;
}
.btn--dark:hover {
  background: var(--color-dark-soft);
  color: var(--color-white) !important;
  box-shadow: var(--shadow-lg);
}
.btn--outline-light {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.85);
  color: var(--color-white) !important;
}
.btn--outline-light:hover {
  background: var(--color-white);
  color: var(--color-dark) !important;
}
.btn--sm { padding: 10px 20px; font-size: 13px; }
.btn-outline {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary) !important;
}
.btn-outline:hover { background: var(--color-primary); color: var(--color-white) !important; }
.section { padding: var(--section-padding) 0; }
.section--gray { background: var(--color-bg-light); }
.section--dark { background: var(--color-dark); color: var(--color-text-light); }
.section--dark h2, .section--dark h3 { color: var(--color-white); }
.section-intro { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-intro .eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  margin-bottom: 0.75rem;
}
.section-intro h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 0.75rem; }
.section-intro p { font-size: 1.05rem; margin: 0; }

/* Trust bar */
.trust-bar {
  background: var(--color-dark);
  border-bottom: 1px solid var(--color-footer-border);
  padding: 1rem 0;
}
.trust-bar__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.trust-bar__grid li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
}
.trust-bar__grid strong { color: var(--color-primary); font-weight: 600; }
.trust-bar__dot { width: 4px; height: 4px; background: var(--color-primary); border-radius: 50%; flex-shrink: 0; }

/* Industries */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.industry-card {
  padding: 2rem 1.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.industry-card:hover { border-color: var(--color-primary); box-shadow: var(--shadow); }
.industry-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark);
}
.industry-card__icon svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.industry-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.industry-card p { font-size: 14px; margin: 0; color: var(--color-text-light); }

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  counter-reset: step;
}
.process-step {
  position: relative;
  padding-top: 0.5rem;
}
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.process-step p { font-size: 14px; margin: 0; }

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-soft) 100%);
  text-align: center;
  padding: var(--section-padding) 1.5rem;
}
.final-cta h2 { color: var(--color-white); font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
.final-cta p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 520px; margin: 0 auto 2rem; }
.final-cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Header quote btn */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.header-phone {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-heading);
  white-space: nowrap;
}
.header-phone:hover { color: var(--color-primary-dark); }
.section-title {
  text-align: center;
  margin-bottom: 40px;
}
.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}
.section-title h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--color-dark);
  transform: translateX(-50%);
}

/* Header */
.site-header {
  background: var(--color-white);
  position: relative;
  z-index: 1000;
  overflow: visible;
  transition: box-shadow var(--transition), background var(--transition);
  border-bottom: 1px solid var(--color-border);
}
.site-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: var(--shadow);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
}
.header-pre {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}
.header-pre .logo { flex-shrink: 0; }
.header-pre .header-actions { margin-left: auto; }
.logo img { max-height: 52px; width: auto; }
.header-bar {
  background: var(--color-white);
  overflow: visible;
}
.header-bar .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  min-height: var(--header-height);
  overflow: visible;
}
.main-nav { flex: 1; overflow: visible; }
.lang-switcher {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.lang-switcher a {
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-text);
  border: 1px solid #ddd;
  border-radius: 3px;
}
.lang-switcher a.is-active,
.lang-switcher a:hover:not(.is-disabled) {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white) !important;
}
.lang-switcher a.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-heading);
  line-height: 0;
}
.nav-toggle svg {
  width: 24px;
  height: 24px;
  display: block;
}
.main-nav > ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
  gap: 0;
}
.main-nav > ul > li { position: relative; }
.main-nav .sub-menu .has-children { position: relative; }
.main-nav > ul > li > a {
  display: block;
  padding: 24px 16px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-heading);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.is-active > a { color: var(--color-primary-dark); }
.main-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  max-width: min(320px, calc(100vw - 24px));
  background: var(--color-dark);
  list-style: none;
  margin: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  box-shadow: var(--shadow-lg);
  z-index: 100;
}
.main-nav > ul > li > .sub-menu {
  max-height: min(70vh, 520px);
  overflow-y: auto;
}
.main-nav > ul > li > .sub-menu:has(> .has-children:hover),
.main-nav > ul > li > .sub-menu:has(> .has-children:focus-within) {
  overflow: visible;
}
.main-nav > ul > li.has-children:nth-last-child(-n+2) > .sub-menu {
  left: auto;
  right: 0;
}
.main-nav li:hover > .sub-menu,
.main-nav .sub-menu .has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}
.main-nav .sub-menu a {
  display: block;
  padding: 10px 16px;
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.main-nav .sub-menu a:hover { background: var(--color-primary); color: var(--color-dark); }
.main-nav .sub-menu .sub-menu {
  left: auto;
  right: 100%;
  top: 0;
  max-height: min(70vh, 420px);
  overflow-y: auto;
  z-index: 110;
  transform: translateX(-8px);
}
.main-nav .sub-menu .has-children:hover > .sub-menu {
  transform: translateX(0);
}
.main-nav .sub-menu.sub-menu--align-end {
  left: auto;
  right: 0;
}
.main-nav .sub-menu.sub-menu--align-start {
  left: 0;
  right: auto;
}
.main-nav .sub-menu.sub-menu--flip-x-right {
  left: 100%;
  right: auto;
}
.main-nav .sub-menu.sub-menu--flip-y {
  top: auto;
  bottom: 0;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: min(88vh, 680px);
  min-height: 480px;
  overflow: hidden;
  background: var(--color-dark);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  background-size: cover;
  background-position: center;
}
.hero-slide.is-active { opacity: 1; z-index: 1; }
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(13,15,18,0.88) 0%, rgba(13,15,18,0.45) 55%, rgba(13,15,18,0.25) 100%);
}
.hero-slide__content h1 {
  color: var(--color-white);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.6em;
  max-width: 640px;
}
.hero-slide__content p {
  color: rgba(255,255,255,0.88);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.hero-slide__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-slide__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.hero-slide__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero-controls {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.hero-dot.is-active { background: var(--color-primary); border-color: var(--color-primary); }
.hero-prev, .hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  cursor: pointer;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.hero-prev svg, .hero-next svg {
  width: 24px;
  height: 24px;
  display: block;
}
.hero-prev { left: 16px; }
.hero-next { right: 16px; }
.hero-prev:hover, .hero-next:hover { background: var(--color-primary); }

/* Product cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: left;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.product-card a { color: inherit; display: block; }
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.product-card__img {
  height: 220px;
  overflow: hidden;
  background: var(--color-bg-light);
}
.product-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-card__img img { transform: scale(1.04); }
.product-card__body { padding: 1.5rem; }
.product-card__body h3 {
  color: var(--color-heading);
  font-size: 1.05rem;
  text-transform: none;
  margin-bottom: 0.5rem;
}
.product-card__body p { font-size: 14px; margin-bottom: 1rem; color: var(--color-text-light); }
.product-card__body .btn { width: 100%; text-align: center; }

/* CTA band */
.cta-band {
  background: var(--color-bg-dark);
  color: #fff;
  padding: 50px 0;
}
.cta-band .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.85); }

/* Page header */
.page-header {
  background: linear-gradient(180deg, var(--color-bg-light) 0%, var(--color-white) 100%);
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid var(--color-border);
}
.page-header h1 { margin: 0 0 0.5rem; font-size: clamp(2rem, 4vw, 2.5rem); color: var(--color-heading); }
.page-header__lead {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  color: var(--color-text);
  max-width: 560px;
}
.breadcrumb {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
}
.breadcrumb li::after { content: '/'; margin-left: 6px; color: #ccc; }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: var(--color-text); }
.breadcrumb li:last-child { color: var(--color-primary); }

/* Two column */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.two-col--reverse .two-col__img { order: -1; }

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  padding: 2rem 1.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.service-card:hover { border-color: var(--color-primary); box-shadow: var(--shadow); }
.service-card__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark);
}
.service-card__icon svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.product-section-card__icon svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.service-card h3 { font-size: 1.05rem; margin-bottom: 0.75rem; }
.service-card p { font-size: 15px; margin: 0; color: var(--color-text-light); line-height: 1.6; }
.services-cta {
  margin-top: 3.5rem;
  padding: 3rem 2rem;
  background: var(--color-dark);
  border-radius: var(--radius);
  text-align: center;
  color: rgba(255,255,255,0.85);
}
.services-cta h2 { color: var(--color-white); margin-bottom: 0.75rem; }
.services-cta p { margin-bottom: 1.5rem; }
.services-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Catalog */
.catalog-page { padding-top: 0; }
.catalog-hero {
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
}
.catalog-hero__cover {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  background: var(--color-white);
}
.catalog-hero__cover img {
  display: block;
  width: 100%;
  height: auto;
}
.catalog-hero__content .eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  margin-bottom: 0.75rem;
}
.catalog-hero__content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 0.75rem;
}
.catalog-hero__content > p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}
.catalog-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: grid;
  gap: 0.65rem;
}
.catalog-highlights li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 15px;
  color: var(--color-text);
}
.catalog-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
}
.catalog-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.catalog-hero__actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.catalog-hero__note {
  margin: 0;
  font-size: 13px;
  color: var(--color-text-light);
}
.catalog-viewer {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.catalog-viewer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 1.5rem;
  background: var(--color-dark);
  border-bottom: 3px solid var(--color-primary);
}
.catalog-viewer__head h2 {
  color: var(--color-white);
  font-size: 1.1rem;
  margin: 0;
}
.catalog-viewer__open {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
}
.catalog-viewer__open:hover { color: var(--color-primary-hover); }
.catalog-viewer__frame iframe {
  display: block;
  width: 100%;
  height: min(80vh, 900px);
  min-height: 520px;
  border: 0;
  background: #525659;
}

/* About */
.about-stats {
  background: var(--color-dark);
  padding: 2rem 0;
  border-bottom: 3px solid var(--color-primary);
}
.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.about-stats__grid strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: 0.35rem;
}
.about-stats__grid span { font-size: 13px; color: rgba(255,255,255,0.7); }
.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}
.about-content span[style] {
  display: block;
  margin-bottom: 1.25rem;
  line-height: 1.75;
  color: var(--color-text);
}
.about-media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-media img { width: 100%; height: auto; }
.final-cta--compact { padding: 3.5rem 1.5rem; }

/* Contact */
.contact-page { padding-top: 3.5rem; }
.contact-page__intro {
  max-width: 640px;
  margin-bottom: 2.5rem;
}
.contact-page__intro .eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  margin-bottom: 0.75rem;
}
.contact-page__intro h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 0.75rem;
}
.contact-page__intro p {
  font-size: 1.05rem;
  margin: 0;
  color: var(--color-text);
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.25fr);
  gap: 1.75rem;
  align-items: stretch;
  margin-bottom: 3rem;
}
.contact-panel--info {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--color-primary);
  display: flex;
  flex-direction: column;
}
.contact-panel__head {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-panel__eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.contact-panel--info h2 {
  color: var(--color-white);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}
.contact-panel__head p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}
.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
  flex: 1;
}
.contact-info-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.55;
}
.contact-info-list li:last-child { border-bottom: none; }
.contact-info-list a {
  color: rgba(255, 255, 255, 0.92);
}
.contact-info-list a:hover { color: var(--color-primary); }
.contact-info-list strong { color: var(--color-primary); font-weight: 600; }
.contact-info-list__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(232, 185, 35, 0.15);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366 !important;
  color: #fff !important;
  width: 100%;
  justify-content: center;
  margin-top: 1.5rem;
}
.contact-whatsapp-btn:hover {
  background: #20bd5a !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.contact-form-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.contact-form-card__header {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.75rem 2rem;
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-soft, #252830) 100%);
  border-bottom: 3px solid var(--color-primary);
}
.contact-form-card__header-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(232, 185, 35, 0.15);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-form-card__header-text h2 {
  color: var(--color-white);
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}
.contact-form-card__header-text p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}
.contact-form-card__badge {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 4px 10px;
  background: rgba(232, 185, 35, 0.2);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
}
.contact-form-card__steps {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  padding: 1rem 2rem;
  background: var(--color-bg-light);
  border-bottom: 1px solid var(--color-border);
}
.contact-form-step {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-heading);
}
.contact-form-step__num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-form-step__arrow {
  color: var(--color-text-light);
  line-height: 0;
}
.contact-form-card__body {
  padding: 2rem;
  background: var(--color-white);
  flex: 1;
}
.contact-form .form-group label {
  font-size: 13px;
  letter-spacing: 0.02em;
}
.contact-form .form-group input,
.contact-form .form-group textarea,
.contact-form .form-group select {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
}
.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus,
.contact-form .form-group select:focus {
  background: var(--color-white);
  border-color: var(--color-primary);
}
.contact-form .form-group textarea {
  min-height: 140px;
  resize: vertical;
}
.btn--whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  margin-top: 0.5rem;
  padding: 16px 28px;
  background: #25d366 !important;
  color: #fff !important;
  font-size: 15px;
}
.btn--whatsapp:hover {
  background: #20bd5a !important;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}
.contact-form-card__footer {
  padding: 1.25rem 2rem;
  background: var(--color-bg-light);
  border-top: 1px solid var(--color-border);
}
.contact-trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}
.contact-trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 13px;
  color: var(--color-text-light);
}
.contact-trust-list svg {
  color: var(--color-primary-dark);
  flex-shrink: 0;
}
.contact-map {
  margin-top: 0;
  padding-bottom: 1rem;
}
.contact-map__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-heading);
}
.contact-map__label svg {
  color: var(--color-primary-dark);
}
.map-embed--contact iframe { height: 360px; border-radius: var(--radius); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hp-field { position: absolute; left: -9999px; opacity: 0; }
.form-status {
  margin-top: 1rem;
  font-size: 14px;
  padding: 0.75rem 1rem;
  border-radius: 8px;
}
.form-status.success {
  background: rgba(37, 211, 102, 0.12);
  color: #1a7a42;
  border: 1px solid rgba(37, 211, 102, 0.3);
}
.form-status.error {
  background: rgba(220, 53, 69, 0.08);
  color: #a71d2a;
  border: 1px solid rgba(220, 53, 69, 0.25);
}
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover { transform: scale(1.08); color: #fff; box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55); }

/* Product detail */
.product-hero img { width: 100%; border-radius: 4px; }
.product-content { padding: 40px 0; }
.product-content .lead { font-size: 1.1rem; color: var(--color-heading); }

.product-category-badge {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 6px 14px;
  background: rgba(232, 185, 35, 0.15);
  color: var(--color-primary-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.product-category-badge:hover {
  background: var(--color-primary);
  color: var(--color-dark);
}
.product-detail__hero {
  background: var(--color-bg-light);
  padding: 0 0 2rem;
  border-bottom: 1px solid var(--color-border);
}
.product-detail__hero img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.product-detail__layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}
.product-detail__main { min-width: 0; }
.product-diagram {
  margin: 2rem 0 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-bg-light);
  box-shadow: var(--shadow);
}
.product-diagram img {
  width: 100%;
  height: auto;
  display: block;
}
.product-diagram figcaption {
  padding: 10px 14px;
  font-size: 13px;
  color: var(--color-text-light);
  text-align: center;
  border-top: 1px solid var(--color-border);
  background: var(--color-white);
}
.product-specs {
  margin: 2rem 0 0;
}
.product-specs__title {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--color-heading);
}
.product-specs__scroll {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
  background: var(--color-white);
}
.product-specs__table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.5;
}
.product-specs__table thead th {
  background: var(--color-dark);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 16px;
  text-align: center;
  border-right: 1px solid var(--color-footer-border);
  white-space: nowrap;
}
.product-specs__table thead th:last-child { border-right: none; }
.product-specs__table tbody th[scope="rowgroup"],
.product-specs__table tbody th[scope="row"] {
  background: var(--color-dark-soft);
  color: var(--color-white);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 16px;
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid var(--color-footer-border);
  border-bottom: 1px solid var(--color-border);
  min-width: 120px;
}
.product-specs__table tbody th[scope="row"] {
  text-transform: none;
  font-size: 13px;
  min-width: 88px;
}
.product-specs__table tbody td {
  padding: 12px 16px;
  text-align: center;
  vertical-align: middle;
  color: var(--color-text);
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.product-specs__table tbody td:last-child { border-right: none; }
.product-specs__table tbody tr:nth-child(even) td:not([rowspan]) {
  background: rgba(244, 245, 247, 0.6);
}
.product-specs__table tbody tr:hover td {
  background: rgba(26, 29, 33, 0.04);
}
.product-specs__table tbody td[rowspan] {
  background: var(--color-white);
  font-weight: 500;
  color: var(--color-heading);
}
.product-specs__table tfoot td {
  padding: 12px 16px;
  text-align: center;
  font-size: 13px;
  font-style: italic;
  color: var(--color-text-light);
  background: var(--color-bg-light);
  border-top: 1px solid var(--color-border);
}
.product-specs + .product-specs {
  margin-top: 1.5rem;
}
.product-overview table:not(.product-specs__table) {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 14px;
}
.product-overview table:not(.product-specs__table) th,
.product-overview table:not(.product-specs__table) td {
  padding: 12px 14px;
  text-align: center;
  border: 1px solid var(--color-border);
  background: var(--color-white) !important;
  color: var(--color-text) !important;
}
.product-overview table:not(.product-specs__table) thead th {
  background: var(--color-dark) !important;
  color: var(--color-white) !important;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.product-sidebar__card {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.product-sidebar__card h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.product-sidebar__card > p {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.product-sidebar__card .btn {
  width: 100%;
  text-align: center;
  margin-bottom: 0.75rem;
}
.product-sidebar__whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-sidebar__meta {
  list-style: none;
  padding: 1.25rem 0 0;
  margin: 1.25rem 0 0;
  border-top: 1px solid var(--color-border);
}
.product-sidebar__meta li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 12px;
  font-size: 14px;
}
.product-sidebar__meta li:last-child { margin-bottom: 0; }
.product-sidebar__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-light);
}
.product-sidebar__meta a { color: var(--color-heading); font-weight: 500; }
.product-sidebar__meta a:hover { color: var(--color-primary-dark); }
.product-overview {
  max-width: 780px;
  margin-bottom: 2.5rem;
}
.product-overview h2 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-primary);
  display: inline-block;
}
.product-overview p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1rem;
  color: var(--color-text);
}
.product-overview span[style] { font-size: inherit !important; color: inherit !important; }
.product-overview a { color: var(--color-primary-dark); font-weight: 500; }
.product-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.product-features li {
  padding: 12px 16px;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--color-heading);
  position: relative;
  padding-left: 2rem;
}
.product-features li::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
}
.product-footnote {
  margin-top: 1.5rem;
  font-size: 14px;
  font-style: italic;
  color: var(--color-text-light);
  text-align: center;
}
.product-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.product-section-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.product-section-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark);
}
.product-section-card h2 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.product-section-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}
.product-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product-tags li {
  padding: 6px 12px;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-size: 13px;
  color: var(--color-heading);
}
.product-accessories {
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}
.product-accessories h2 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}
.product-accessories__lead {
  color: var(--color-text-light);
  font-size: 15px;
  margin-bottom: 1.5rem;
}
.product-accessories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.product-accessories__item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-bg-light);
  aspect-ratio: 4/3;
}
.product-accessories__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.product-accessories__item:hover img { transform: scale(1.04); }
.product-grid--related { margin-top: 0; }
.product-grid--category { margin-top: 0; }
.section--alt { background: var(--color-bg-light); }

/* Category pages */
.category-page__layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}
.category-page__main { min-width: 0; }
.category-page__intro {
  margin-bottom: 2.5rem;
}
.section-intro--left {
  text-align: left;
  margin: 0 0 1.5rem;
  max-width: none;
}
.category-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}
.category-highlights li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--color-text);
  line-height: 1.6;
}
.category-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
}
.category-page__meta {
  margin-top: 2.5rem;
}
.category-section-card { max-width: 520px; }
.category-nav {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
}
.category-nav h2 {
  font-size: 1rem;
  margin: 0 0 1rem;
  color: var(--color-heading);
}
.category-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}
.category-nav__item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  color: var(--color-text);
  text-decoration: none;
  border: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.category-nav__item a:hover {
  background: var(--color-bg-light);
  border-color: var(--color-border);
}
.category-nav__item.is-active a {
  background: rgba(232, 185, 35, 0.12);
  border-color: rgba(232, 185, 35, 0.35);
  color: var(--color-heading);
}
.category-nav__title {
  font-weight: 600;
  font-size: 0.95rem;
}
.category-nav__count {
  font-size: 12px;
  color: var(--color-text-light);
  white-space: nowrap;
}
.category-page__sidebar .product-sidebar__card {
  position: sticky;
  top: 100px;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.category-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.category-card a { color: inherit; display: block; }
.category-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: transparent;
}
.category-card__img {
  height: 160px;
  overflow: hidden;
  background: var(--color-bg-light);
}
.category-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.category-card:hover .category-card__img img { transform: scale(1.04); }
.category-card__body { padding: 1.25rem; }
.category-card__body h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--color-heading);
}
.category-card__body p {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 1rem;
  line-height: 1.55;
}
.category-card__body .btn { width: 100%; text-align: center; }

.map-embed iframe { width: 100%; height: 300px; border: 0; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 600; color: var(--color-heading); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(232, 185, 35, 0.2);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* Filter */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 30px;
}
.filter-bar button {
  padding: 8px 16px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  border-radius: 3px;
  font-size: 13px;
}
.filter-bar button.is-active,
.filter-bar button:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

/* Footer */
.site-footer {
  background: var(--color-footer-bg);
  color: var(--color-text-light);
  padding: 4rem 0 0;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand .footer-logo { display: inline-block; margin-bottom: 1rem; }
.footer-tagline {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  margin: 0 0 1.5rem;
}
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}
.footer-contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.5;
}
.footer-icon { flex-shrink: 0; color: var(--color-primary); margin-top: 2px; }
.footer-contact-list a { color: rgba(255,255,255,0.85); }
.footer-contact-list a:hover { color: var(--color-primary); }
.footer-contact-list strong { color: var(--color-primary); font-weight: 600; }
.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 10px 18px;
  background: #25d366;
  color: #fff !important;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
}
.footer-whatsapp:hover { background: #20bd5a; color: #fff !important; }
.footer-widget h3 {
  color: var(--color-footer-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-footer-border);
}
.footer-subheading {
  margin-top: 1.75rem !important;
  font-size: 0.85rem !important;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer-links a:hover { color: var(--color-primary); }
.footer-note { font-size: 14px; color: rgba(255,255,255,0.55); margin: 0 0 1rem; }
.footer-hours { width: 100%; font-size: 14px; }
.footer-hours td { padding: 6px 0; color: rgba(255,255,255,0.75); }
.footer-hours td:last-child { text-align: right; color: rgba(255,255,255,0.55); }
.footer-hours .closed td { color: rgba(255,255,255,0.4); }
.map-embed--footer iframe { height: 200px; border-radius: var(--radius); }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-links a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-footer-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  transition: background var(--transition), border-color var(--transition);
}
.social-links a:hover { background: var(--color-primary); border-color: var(--color-primary); color: var(--color-dark); }
.copyright-footer {
  background: rgba(0,0,0,0.25);
  border-top: 1px solid var(--color-footer-border);
  padding: 1.25rem 0;
  font-size: 13px;
}
.copyright-footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255,255,255,0.5);
}
.copyright-footer a { color: rgba(255,255,255,0.7); }
.copyright-footer a:hover { color: var(--color-primary); }

/* Coming soon (TR/FR) */
.coming-soon {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}
.coming-soon h1 { font-size: 2.5rem; }

/* Responsive */
@media (max-width: 991px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: #fff;
    padding: 80px 20px 20px;
    overflow-y: auto;
    transition: right var(--transition);
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    z-index: 999;
  }
  .main-nav.is-open { right: 0; }
  .main-nav > ul { flex-direction: column; }
  .main-nav > ul > li > a { padding: 14px 0; border-bottom: 1px solid #eee; }
  .main-nav .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: var(--color-bg-light);
    box-shadow: none;
  }
  .main-nav .has-children.is-expanded > .sub-menu { display: block; }
  .product-grid, .service-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .about-layout, .contact-layout { grid-template-columns: 1fr; }
  .catalog-hero { grid-template-columns: 1fr; }
  .catalog-hero__cover { max-width: 320px; margin: 0 auto; }
  .contact-form-card__header,
  .contact-form-card__body,
  .contact-form-card__footer,
  .contact-form-card__steps { padding-left: 1.25rem; padding-right: 1.25rem; }
  .contact-panel--info { padding: 1.5rem; }
  .product-detail__layout, .product-detail__grid, .category-page__layout { grid-template-columns: 1fr; }
  .product-detail__hero img { max-height: 320px; }
  .product-accessories__grid, .category-grid { grid-template-columns: repeat(2, 1fr); }
  .product-sidebar__card, .category-page__sidebar .product-sidebar__card { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .two-col, .cta-band .container { grid-template-columns: 1fr; }
  .hero-slider { height: 420px; }
}
@media (max-width: 575px) {
  .product-grid, .service-grid, .footer-grid { grid-template-columns: 1fr; }
  .industries-grid, .process-grid { grid-template-columns: 1fr; }
  .about-stats__grid { grid-template-columns: 1fr; }
  .product-accessories__grid, .category-grid { grid-template-columns: 1fr; }
  .header-actions .header-phone { display: none; }
  .whatsapp-float { bottom: 16px; right: 16px; width: 52px; height: 52px; }
}
