:root {
  --green: #0f8f63;
  --green-dark: #075b42;
  --mint: #e8f6f0;
  --ink: #10251f;
  --muted: #5e706a;
  --line: #dce8e3;
  --paper: #ffffff;
  --soft: #f6faf8;
  --shadow: 0 18px 45px rgba(16, 37, 31, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
body.modal-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 22px; font-size: clamp(42px, 6vw, 76px); line-height: 1.02; letter-spacing: 0; }
h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.14; margin-bottom: 14px; }
h3 { font-size: 20px; line-height: 1.25; margin-bottom: 10px; }

.notice-bar {
  display: flex;
  justify-content: center;
  gap: 34px;
  padding: 8px 18px;
  font-size: 13px;
  color: #fff;
  background: var(--green-dark);
}
.notice-bar a { opacity: 0.92; }

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 16px clamp(18px, 5vw, 70px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand img { width: 164px; max-height: 64px; height: auto; object-fit: contain; }
.main-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  flex: 1;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.main-menu a:hover, .text-link:hover, .product-card a:hover, .blog-grid a:hover { color: var(--green); }
.nav-tools { display: flex; align-items: center; gap: 8px; }
.quote-link,
.button,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 4px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0;
  cursor: pointer;
}
.quote-link, .button.primary { color: #fff; background: var(--green); }
.button.secondary { color: var(--green-dark); background: #fff; border-color: rgba(255,255,255,0.55); }
.button.outline { border-color: var(--line); }
.icon-button { min-height: 38px; padding: 0 12px; border-color: var(--line); background: #fff; color: var(--green-dark); font-size: 13px; }
.cart-link span { margin-left: 5px; color: var(--green); }
.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  padding: 110px clamp(20px, 7vw, 110px);
  overflow: hidden;
  color: #fff;
  background: #173b33;
}
.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 40, 31, 0.86) 0%, rgba(10, 40, 31, 0.56) 44%, rgba(10, 40, 31, 0.08) 100%),
    url("assets/hero-banner.webp") center / cover no-repeat;
  transform: scale(1.02);
}
.hero-content { position: relative; max-width: 760px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero .eyebrow, .page-hero .eyebrow { color: #9ef0cb; }
.hero p:not(.eyebrow) { max-width: 620px; font-size: 20px; color: rgba(255,255,255,0.86); }
.hero-actions { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }

.page-hero {
  padding: 84px clamp(20px, 7vw, 110px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(10, 40, 31, 0.88), rgba(10, 40, 31, 0.58)),
    url("assets/global-presence.webp") center / cover no-repeat;
}
.page-hero h1 { max-width: 900px; font-size: clamp(40px, 6vw, 68px); }
.page-hero p:not(.eyebrow) { max-width: 720px; color: rgba(255,255,255,0.84); font-size: 19px; }

.section { padding: 86px clamp(20px, 6vw, 90px); }
.section-head { max-width: 800px; margin: 0 auto 38px; text-align: center; }
.section-head.split { display: flex; justify-content: space-between; align-items: end; max-width: 1180px; text-align: left; }
.text-link { color: var(--green-dark); font-weight: 800; text-transform: uppercase; }

.feature-grid,
.product-grid,
.blog-grid,
.cert-products,
.category-grid {
  display: grid;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.feature-grid { grid-template-columns: repeat(4, 1fr); }
.feature-card,
.blog-grid article,
.info-columns article {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(16, 37, 31, 0.06);
}
.feature-card { min-height: 260px; }
.feature-card img { width: 56px; margin-bottom: 20px; }
.feature-card p, .about-copy p, .cert-copy p, .faq p, .blog-grid p, .info-columns p { color: var(--muted); }

.products, .products-page, .faq { background: var(--soft); }
.product-grid { grid-template-columns: repeat(4, 1fr); }
.featured-products { background: #fff; }
.category-grid { grid-template-columns: repeat(3, 1fr); }
.category-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(16, 37, 31, 0.07);
}
.category-card a { display: grid; grid-template-columns: 150px 1fr; min-height: 210px; }
.category-card img { width: 100%; height: 100%; object-fit: cover; background: var(--soft); }
.category-card div { padding: 20px; }
.category-card h3 { margin: 12px 0 8px; }
.category-card p:not(.pill) { color: var(--muted); font-size: 14px; }
.category-card span { color: var(--green-dark); font-weight: 900; }
.category-intro { max-width: 880px; margin: 0 auto 24px; text-align: center; }
.category-intro h2 { margin-bottom: 8px; }
.category-intro p:not(.pill) { color: var(--muted); }
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 10px 26px rgba(16, 37, 31, 0.07);
}
.product-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; background: #f2f4f3; }
.card-body { padding: 0 18px 22px; }
.card-body p { color: var(--muted); }
.product-card h3 { margin: 20px 14px 6px; }
.product-card a, .blog-grid a, .cert-products a { display: inline-block; margin: 0 0 22px; color: var(--green-dark); font-weight: 800; }
.pill { display: inline-flex; margin: 16px 0 0; padding: 4px 8px; border-radius: 999px; color: var(--green-dark); background: var(--mint); font-size: 12px; font-weight: 800; }

.about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
}
.about-image img { width: 100%; border-radius: 8px; box-shadow: var(--shadow); }
.about-copy { max-width: 560px; }
.about-gallery-section { background: var(--soft); }
.about-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 240px;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}
.about-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(16, 37, 31, 0.08);
}
.about-gallery figure.feature { grid-row: span 2; }
.about-gallery img { width: 100%; height: 100%; object-fit: cover; }
.about-gallery figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 8px 10px;
  border-radius: 4px;
  color: #fff;
  background: rgba(9, 31, 25, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.certifications { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 40px; align-items: center; background: #0d3028; color: #fff; }
.cert-copy p { color: rgba(255,255,255,0.76); }
.cert-products { grid-template-columns: repeat(3, 1fr); }
.cert-products article { padding: 18px; border-radius: 8px; background: #fff; color: var(--ink); text-align: center; }
.cert-products img { width: 100%; aspect-ratio: 0.78 / 1; object-fit: cover; border-radius: 6px; background: #f1f4f2; }
.cert-products.wide { grid-template-columns: repeat(3, 1fr); max-width: 1180px; }
.cert-products.wide p { color: var(--muted); }
.coa-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}
.coa-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 37, 31, 0.07);
}
.coa-card button {
  display: grid;
  width: 100%;
  min-height: 100%;
  padding: 0;
  border: 0;
  background: #fff;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.coa-card img {
  width: 100%;
  aspect-ratio: 0.78 / 1;
  object-fit: cover;
  object-position: top center;
  background: var(--soft);
}
.coa-card span {
  margin: 12px 12px 4px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.coa-card strong {
  display: block;
  min-height: 54px;
  padding: 0 12px 14px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
}
.coa-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.coa-lightbox.is-open { display: flex; }
.coa-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 18, 15, 0.82);
}
.coa-lightbox figure {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  max-width: min(980px, 96vw);
  max-height: 94vh;
  margin: 0;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0,0,0,0.32);
}
.coa-lightbox figure button {
  justify-self: end;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--soft);
  color: var(--green-dark);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.coa-lightbox img {
  max-width: 100%;
  max-height: calc(94vh - 118px);
  object-fit: contain;
  background: var(--soft);
}
.coa-lightbox figcaption {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); }
.stats div { padding: 42px 20px; background: var(--mint); text-align: center; }
.stats strong { display: block; font-size: clamp(36px, 5vw, 58px); line-height: 1; color: var(--green-dark); }
.stats span { display: block; margin-top: 10px; color: var(--muted); font-weight: 700; }

.blog-grid { grid-template-columns: repeat(3, 1fr); }
.blog-grid article { min-height: 250px; }
.blog-grid span { display: block; margin-bottom: 18px; color: var(--green); font-weight: 900; text-transform: uppercase; font-size: 12px; }

.filter-bar { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; max-width: 1180px; margin: 0 auto 28px; }
.filter-bar a { padding: 10px 14px; border: 1px solid var(--line); border-radius: 4px; background: #fff; color: var(--green-dark); font-weight: 800; }
.filter-bar a.active { color: #fff; background: var(--green); border-color: var(--green); }

.faq-list { max-width: 980px; margin: 0 auto; }
details { margin-bottom: 12px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
summary { padding: 20px 24px; font-weight: 800; cursor: pointer; }
details p { padding: 0 24px 22px; margin: 0; }

.quote-section { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: start; padding: 86px clamp(20px, 6vw, 90px); background: linear-gradient(135deg, #e8f6f0 0%, #ffffff 100%); }
.whatsapp-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 52px clamp(20px, 6vw, 90px);
  color: #fff;
  background: #12352d;
}
.whatsapp-band div { max-width: 760px; }
.whatsapp-band h2 { margin-bottom: 8px; font-size: clamp(28px, 4vw, 42px); }
.whatsapp-band p:not(.eyebrow) { margin: 0; color: rgba(255,255,255,0.76); }
.direct-contact { margin-top: 18px; color: var(--green-dark); font-weight: 900; }
.direct-contact a { color: var(--green-dark); text-decoration: underline; }
.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  color: var(--green-dark);
  font-weight: 700;
}
.contact-details p { margin: 0; }
.contact-details a {
  color: var(--green-dark);
  text-decoration: underline;
  overflow-wrap: anywhere;
}
.floating-contacts {
  position: fixed;
  right: 24px;
  bottom: 26px;
  z-index: 70;
  display: grid;
  gap: 12px;
}
.floating-contact-item {
  display: grid;
  grid-template-columns: 54px auto;
  align-items: center;
  min-width: 150px;
  height: 54px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(9, 31, 25, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.floating-whatsapp {
  background: #25d366;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.42), 0 8px 18px rgba(9, 31, 25, 0.18);
  animation: whatsappPulse 2.4s ease-in-out infinite;
}
.floating-email {
  background: #10251f;
}
.floating-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-left: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.96);
}
.floating-whatsapp .floating-icon::before {
  content: "";
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #25d366;
}
.floating-whatsapp .floating-icon::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 3px solid #fff;
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(-36deg);
}
.floating-email .floating-icon::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 17px;
  border: 3px solid #10251f;
  border-radius: 4px;
}
.floating-email .floating-icon::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-left: 3px solid #10251f;
  border-bottom: 3px solid #10251f;
  transform: translateY(-4px) rotate(-45deg);
}
.floating-label {
  padding: 0 18px 0 8px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}
.floating-contact-item:hover {
  transform: translateY(-3px) scale(1.04);
}
.floating-whatsapp:hover {
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.5), 0 12px 24px rgba(9, 31, 25, 0.22);
}
.floating-email:hover {
  box-shadow: 0 18px 42px rgba(16, 37, 31, 0.28), 0 12px 24px rgba(9, 31, 25, 0.22);
}
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 14px 34px rgba(37, 211, 102, 0.42), 0 0 0 0 rgba(37, 211, 102, 0.28); }
  50% { box-shadow: 0 14px 34px rgba(37, 211, 102, 0.42), 0 0 0 10px rgba(37, 211, 102, 0); }
}
.quote-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 28px; border-radius: 8px; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); }
.quote-form label { display: grid; gap: 8px; color: var(--muted); font-weight: 800; font-size: 13px; }
.quote-form label:nth-of-type(4), .quote-form button, .form-note, .hidden-field { grid-column: 1 / -1; }
.hidden-field { display: none; }
input, textarea { width: 100%; border: 1px solid #cfdcd6; border-radius: 4px; padding: 13px 14px; font: inherit; color: var(--ink); background: #fff; }
textarea { resize: vertical; }
.form-note { margin: 0; color: var(--green-dark); font-weight: 800; }

.detail-layout { display: grid; grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1.1fr); gap: clamp(32px, 6vw, 78px); align-items: center; padding: 76px clamp(20px, 6vw, 90px); }
.detail-media img { width: 100%; border-radius: 8px; background: var(--soft); box-shadow: var(--shadow); }
.detail-copy h1, .article-page h1 { color: var(--ink); }
.detail-copy > p { color: var(--muted); font-size: 18px; }
.specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 24px 0; }
.specs div { padding: 14px; border: 1px solid var(--line); border-radius: 6px; background: var(--soft); }
.specs dt { color: var(--muted); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.specs dd { margin: 3px 0 0; font-weight: 900; }
.tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 26px; }
.tag-row span { padding: 6px 10px; border-radius: 999px; background: var(--mint); color: var(--green-dark); font-size: 13px; font-weight: 800; }
.detail-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.info-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1180px; margin: 0 auto; }
.article-page { max-width: 900px; margin: 0 auto; padding: 84px 20px; }
.article-page h1 { font-size: clamp(38px, 5vw, 64px); }
.article-page p { color: var(--muted); font-size: 18px; }
.article-page .lead { color: var(--ink); font-size: 22px; }
.article-cta { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

.cart-list { display: grid; gap: 12px; max-width: 900px; margin-bottom: 24px; }
.cart-list article { display: grid; grid-template-columns: 90px 1fr auto; align-items: center; gap: 18px; padding: 14px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.cart-list img { width: 90px; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 6px; background: var(--soft); }
.cart-list p { margin: 0; color: var(--muted); }
.qty-controls { display: flex; align-items: center; gap: 10px; }
.qty-controls button { width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 4px; background: #fff; font: inherit; font-weight: 900; cursor: pointer; }
.qty-controls span { min-width: 24px; text-align: center; font-weight: 900; }
.account-page { display: grid; grid-template-columns: minmax(280px, 420px) 1fr; gap: 32px; align-items: start; }
.quote-form.compact { grid-template-columns: 1fr; }
.account-help { padding: 28px; border: 1px solid var(--line); border-radius: 8px; background: var(--soft); }

.site-footer { padding: 54px clamp(20px, 6vw, 90px) 24px; color: rgba(255,255,255,0.84); background: #0b211c; }
.footer-topline {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-logo {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}
.footer-logo img { width: 66px; height: 66px; object-fit: contain; }
.site-footer h2 { margin: 0 0 8px; color: #fff; font-size: 24px; }
.site-footer p { margin-bottom: 0; color: rgba(255,255,255,0.72); }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 10px 22px;
  flex-wrap: wrap;
  max-width: 1180px;
  margin: 26px auto 0;
}
.footer-links a { color: rgba(255,255,255,0.72); font-size: 14px; font-weight: 800; }
.footer-links a:hover { color: #fff; }
.footer-contact {
  display: grid;
  gap: 6px;
  max-width: 1180px;
  margin: 18px auto 0;
  text-align: center;
}
.footer-contact p {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 14px;
}
.copyright { max-width: 1180px; margin: 24px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 14px; text-align: center; }

.search-panel { position: fixed; inset: 0; z-index: 50; display: none; padding: 80px 20px; background: rgba(8, 24, 20, 0.72); }
.search-panel.is-open { display: block; }
.search-box { max-width: 760px; margin: 0 auto; padding: 24px; border-radius: 8px; background: #fff; box-shadow: var(--shadow); }
.search-close { float: right; border: 1px solid var(--line); border-radius: 4px; background: #fff; padding: 8px 10px; font: inherit; font-weight: 800; cursor: pointer; }
.search-box label { display: grid; gap: 10px; color: var(--muted); font-weight: 900; clear: both; }
.search-results { display: grid; gap: 8px; margin-top: 18px; }
.search-results a { display: grid; gap: 2px; padding: 12px; border: 1px solid var(--line); border-radius: 6px; }
.search-results span { color: var(--muted); font-size: 13px; }

@media (max-width: 1100px) {
  .nav-wrap { flex-wrap: wrap; }
  .main-menu { order: 3; flex-basis: 100%; }
  .feature-grid, .product-grid, .info-columns, .category-grid { grid-template-columns: repeat(2, 1fr); }
  .coa-grid { grid-template-columns: repeat(3, 1fr); }
  .about, .certifications, .quote-section, .detail-layout, .account-page { grid-template-columns: 1fr; }
  .about-gallery { grid-template-columns: repeat(2, 1fr); }
  .whatsapp-band { align-items: flex-start; flex-direction: column; }
  .hero { min-height: 640px; }
}

@media (max-width: 780px) {
  .notice-bar { display: none; }
  .nav-wrap { gap: 12px; }
  .brand img { width: 136px; max-height: 54px; }
  .nav-toggle { display: inline-flex; justify-content: center; min-height: 40px; padding: 0 14px; border: 1px solid var(--line); border-radius: 4px; background: #fff; font-weight: 800; }
  .main-menu { display: none; flex-basis: 100%; align-items: stretch; justify-content: start; gap: 0; padding-top: 12px; }
  .main-menu.is-open { display: grid; }
  .main-menu a { padding: 12px 0; border-top: 1px solid var(--line); }
  .nav-tools { width: 100%; order: 4; overflow-x: auto; padding-bottom: 4px; }
  .icon-button, .quote-link { white-space: nowrap; }
  .hero { min-height: 600px; padding-top: 76px; padding-bottom: 76px; }
  .section { padding-top: 64px; padding-bottom: 64px; }
  .section-head.split { display: block; }
  .feature-grid, .product-grid, .category-grid, .cert-products, .cert-products.wide, .blog-grid, .stats, .quote-form, .info-columns, .specs { grid-template-columns: 1fr; }
  .coa-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-topline { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-links { gap: 10px 16px; }
  .category-card a { grid-template-columns: 120px 1fr; min-height: 180px; }
  .about-gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .about-gallery figure.feature { grid-row: auto; }
  .quote-form label:nth-of-type(4), .quote-form button, .form-note, .hidden-field { grid-column: auto; }
  .cart-list article { grid-template-columns: 72px 1fr; }
  .cart-list img { width: 72px; }
  .qty-controls { grid-column: 2; }
}

@media (max-width: 480px) {
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  .hero-actions .button, .detail-actions .button { width: 100%; }
  .feature-card { min-height: auto; }
  .floating-contacts { right: 14px; bottom: 16px; gap: 8px; }
  .floating-contact-item { grid-template-columns: 46px auto; min-width: 128px; height: 46px; }
  .floating-icon { width: 36px; height: 36px; margin-left: 5px; }
  .floating-label { padding-right: 14px; font-size: 12px; }
  .floating-whatsapp .floating-icon::before { width: 24px; height: 24px; }
  .floating-whatsapp .floating-icon::after { width: 12px; height: 12px; border-width: 2px; }
  .floating-email .floating-icon::before { width: 22px; height: 15px; border-width: 2px; }
  .floating-email .floating-icon::after { width: 16px; height: 16px; border-left-width: 2px; border-bottom-width: 2px; }
  .coa-grid { grid-template-columns: 1fr; }
  .coa-lightbox { padding: 12px; }
  .coa-lightbox figure { padding: 12px; }
}
.mini-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin-top: 12px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.empty-state { padding: 22px; border: 1px dashed var(--line); border-radius: 8px; background: var(--soft); text-align: center; color: var(--muted); }
.wishlist-actions { margin-top: 24px; display: flex; justify-content: center; }
.track-layout { display: grid; grid-template-columns: minmax(280px, 380px) 1fr; gap: 24px; align-items: start; }
.track-results { padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: var(--soft); }
.track-results h3 { margin-bottom: 8px; }
.wish-link span { display: inline-block; min-width: 18px; text-align: center; }
@media (max-width: 780px) {
  .track-layout { grid-template-columns: 1fr; }
}
.mini-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin-top: 12px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.empty-state { padding: 22px; border: 1px dashed var(--line); border-radius: 8px; background: var(--soft); text-align: center; color: var(--muted); }
.wishlist-actions { margin-top: 24px; display: flex; justify-content: center; }
.track-layout { display: grid; grid-template-columns: minmax(280px, 380px) 1fr; gap: 24px; align-items: start; }
.track-results { padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: var(--soft); }
.track-results h3 { margin-bottom: 8px; }
.wish-link span { display: inline-block; min-width: 18px; text-align: center; }
@media (max-width: 780px) {
  .track-layout { grid-template-columns: 1fr; }
}
