:root {
  --orange: #ff6b00;
  --orange-2: #ff8524;
  --orange-soft: rgba(255, 107, 0, 0.10);
  --bg: #ffffff;
  --bg-2: #f7f7f7;
  --card: #ffffff;
  --card-2: #fafafa;
  --line: #e6e6e6;
  --text: #1c1c1c;
  --muted: #6d6d6d;
  --muted-2: #a0a0a0;
  --green: #25d366;
  --danger: #ff4b4b;
}

* {
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, .display-font, .brand-name {
  font-family: 'Baloo 2', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

a {
  text-decoration: none;
  color: inherit;
}

.text-orange {
  color: var(--orange) !important;
}

.bg-card {
  background: var(--card);
}

.muted {
  color: var(--muted);
}

.container-xl {
  max-width: 1240px;
}

::selection {
  background: var(--orange);
  color: #fff;
}

.btn-orange {
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-orange:hover {
  background: var(--orange-2);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px -10px rgba(255, 107, 0, 0.6);
}

.btn-outline-orange {
  border: 1px solid var(--line);
  color: var(--text);
  background: transparent;
  font-weight: 600;
  border-radius: 12px;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.btn-outline-orange:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-whatsapp {
  background: var(--green);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 12px;
}

.btn-whatsapp:hover {
  background: #1eb955;
  color: #fff;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pill-nl {
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--text);
}

.pill-orange {
  background: var(--orange-soft);
  color: var(--orange);
  border: 1px solid rgba(255, 107, 0, 0.35);
}

.badge-grade {
  background: var(--orange);
  color: #fff;
  border-radius: 10px;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 0.85rem;
}

.navbar-nl {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand-name {
  font-size: 1.7rem;
  color: var(--orange);
}

.brand-name span {
  color: var(--orange);
}

.nav-link-nl {
  color: var(--muted);
  font-weight: 500;
  margin: 0 14px;
  position: relative;
  padding: 4px 0;
}

.nav-link-nl:hover {
  color: var(--text);
}

.nav-link-nl.active {
  color: var(--orange);
}

.nav-link-nl.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  border: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.icon-btn:hover {
  color: var(--orange);
  border-color: var(--line);
}

.lang-btn {
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  padding: 9px 20px;
  font-weight: 700;
  border: none;
}

.lang-btn-dark {
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 0.85rem;
}

.search-box {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.search-box input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  width: 100%;
}

.search-box input::placeholder {
  color: var(--muted-2);
}

.hero {
  position: relative;
  padding: 90px 0 70px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.14), transparent 62%);
  z-index: 0;
}

.hero-title {
  font-size: 3.1rem;
  line-height: 1.08;
}

.hero-visual {
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, #f2f2f2, #e6e6e6);
  min-height: 420px;
  border: 1px solid var(--line);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-visual-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 22px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

.hero-visual-caption .eyebrow {
  color: var(--orange-2);
}

.stat-num {
  font-size: 1.7rem;
  color: var(--orange);
  font-weight: 800;
  font-family: 'Baloo 2', sans-serif;
}

.section {
  padding: 64px 0;
}

.section-title {
  font-size: 2.4rem;
}

.eyebrow {
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.product-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 0, 0.5);
  box-shadow: 0 16px 40px -18px rgba(0, 0, 0, 0.22);
}

.product-media {
  position: relative;
  background: radial-gradient(circle at 50% 45%, #f7f7f7, #ececec);
  height: 280px;           
  width: 100%;
  overflow: hidden;        
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;  
  display: block;
}

.product-media .pill-nl {
  position: absolute;
  top: 14px;
  left: 14px;
}

.product-media .badge-grade {
  position: absolute;
  top: 14px;
  right: 14px;
}

.product-media .grade-bottom {
  position: absolute;
  bottom: 14px;
  right: 14px;
}

.product-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.product-name {
  font-size: 1.35rem;
  margin: 0;
}

.product-price {
  color: var(--orange);
  font-size: 1.5rem;
  font-weight: 800;
  font-family: 'Baloo 2', sans-serif;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 10px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 0.92rem;
}

.spec-item i {
  color: var(--orange);
  width: 18px;
  text-align: center;
}

.health {
  font-weight: 700;
}

.card-badge-strip {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
}

.chip {
  display: inline-block;
  background: #f1f1f1;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 0.75rem;
  color: var(--muted);
  margin-right: 6px;
}

.filter-btn {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 20px;
  font-weight: 600;
  transition: all 0.15s;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 28px;
  height: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--orange-soft);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.sidebar-panel {
  background: transparent;
}

.side-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 18px;
}

.side-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: var(--text);
}

.side-item .count {
  color: var(--muted-2);
  font-size: 0.9rem;
}

.form-check-input {
  background-color: #ffffff;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  width: 20px;
  height: 20px;
}

.form-check-input:checked {
  background-color: var(--orange);
  border-color: var(--orange);
}

.form-range {
  accent-color: var(--orange);
}

.info-box {
  background: linear-gradient(160deg, rgba(255, 107, 0, 0.08), rgba(255, 107, 0, 0.02));
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: 16px;
  padding: 22px;
}

.pagination-nl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.page-dot {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 600;
  transition: all 0.15s;
}

.page-dot:hover {
  color: var(--text);
  border-color: var(--orange);
}

.page-dot.active {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 30px;
  background: var(--bg-2);
}

.footer h5 {
  color: var(--orange);
}

.footer-title {
  color: var(--orange);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-link {
  display: block;
  color: var(--muted);
  padding: 6px 0;
  transition: color 0.15s;
}

.footer-link:hover {
  color: var(--orange);
}

.gallery-main {
  background: linear-gradient(180deg, #f5f5f5, #ececec);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.thumb {
  border: 2px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: border-color 0.15s;
  background: #f2f2f2;
}

.thumb.active,
.thumb:hover {
  border-color: var(--orange);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spec-row {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.spec-row .s-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--orange-soft);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.qc-panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.qc-ring {
  --p: 92;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(closest-side, var(--card) 76%, transparent 77%),
    conic-gradient(var(--orange) calc(var(--p) * 1%), var(--line) 0);
  font-weight: 800;
  color: var(--orange);
  font-family: 'Baloo 2', sans-serif;
}

.qc-sub {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  height: 100%;
}

.logi-hero {
  position: relative;
  min-height: 360px;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #fff;
}

.logi-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.logi-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.4));
}

.logi-hero .hero-title {
  color: #fff;
}

.logi-hero .muted {
  color: rgba(255, 255, 255, 0.78);
}

.timeline {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--orange), rgba(255, 107, 0, 0.15));
  transform: translateX(-50%);
}

.tl-row {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  margin-bottom: 46px;
}

.tl-node {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--orange);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.1rem;
  z-index: 1;
}

.tl-fr {
  text-align: right;
  padding-right: 8px;
}

.tl-ar {
  text-align: left;
  padding-left: 8px;
  direction: rtl;
  color: var(--muted);
}

.tl-title {
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 6px;
}

.form-control-nl {
  background: #fafafa;
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 12px;
  padding: 12px 16px;
}

.form-control-nl:focus {
  background: #ffffff;
  border-color: var(--orange);
  color: var(--text);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}

.form-control-nl::placeholder {
  color: var(--muted-2);
}

.check-line {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.check-line .c {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.fab-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.6);
  z-index: 40;
}

.mobile-tabbar {
  display: none;
}

.crumb a {
  color: var(--muted);
}

.crumb .sep {
  color: var(--muted-2);
  margin: 0 8px;
}

.crumb .cur {
  color: var(--text);
}

.stock-limit {
  color: var(--danger);
  border: 1px solid rgba(255, 75, 75, 0.4);
  background: rgba(255, 75, 75, 0.08);
  border-radius: 8px;
  padding: 3px 12px;
  font-size: 0.82rem;
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 1.4rem;
}

.burger:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  margin-top: 14px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 13px 4px;
  color: var(--muted);
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a.active,
.mobile-menu a:hover {
  color: var(--orange);
}

@media (max-width: 991px) {
  .burger {
    display: inline-flex;
  }
  .hero-title {
    font-size: 2.3rem;
  }
  .section-title {
    font-size: 1.9rem;
  }
  .tl-row {
    grid-template-columns: 40px 1fr;
  }
  .timeline::before {
    left: 20px;
  }
  .tl-node {
    margin: 0;
    grid-row: 1;
    grid-column: 1;
  }
  .tl-fr {
    text-align: left;
    padding-left: 8px;
    padding-right: 0;
    grid-column: 2;
  }
  .tl-ar {
    display: none;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: 72px;
  }
  .hero {
    padding: 50px 0 40px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .fab-whatsapp {
    bottom: 84px;
  }
  .mobile-tabbar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    padding: 10px 0;
    z-index: 50;
    justify-content: space-around;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
  }
  .mobile-tabbar a {
    color: var(--muted);
    font-size: 0.68rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
  .mobile-tabbar a i {
    font-size: 1.15rem;
  }
  .mobile-tabbar a.active {
    color: var(--orange);
  }
}

.filter-toggle { display: none; }

.filter-group-title {
  font-weight: 700;
  color: var(--text);
  font-size: 0.95rem;
  margin: 14px 0 6px;
}

@media (max-width: 991px) {
  .filter-toggle { display: flex; align-items: center; justify-content: center; }
  #sidebarPanel { display: none; }
  #sidebarPanel.open { display: block; }
  #sidebarPanel .side-item { padding: 5px 0; font-size: 0.9rem; }
  #sidebarPanel .side-label { margin-top: 22px !important; margin-bottom: 10px; }
  #sidebarPanel .info-box { margin-top: 22px !important; }
  #sidebarPanel .form-check-input { width: 18px; height: 18px; }
}







/* grades */

.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item .ti-icon { width: 42px; height: 42px; border-radius: 11px; background: var(--orange-soft); color: var(--orange); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
.trust-item small { color: var(--muted); }

.audit-box { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 16px 20px; display: flex; align-items: center; gap: 14px; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04); }

.grade-card { background: var(--card); border: 1px solid var(--line); border-radius: 20px; padding: 26px; height: 100%; display: flex; flex-direction: column; position: relative; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04); transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease; }
.grade-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px -18px rgba(0, 0, 0, 0.18); }
.grade-card.featured { border-color: var(--orange); box-shadow: 0 18px 50px -22px rgba(255, 107, 0, 0.45); }

.grade-ribbon { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--orange); color: #fff; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; white-space: nowrap; }

.grade-visual { background: radial-gradient(circle at 50% 45%, #f7f7f7, #ececec); border-radius: 14px; aspect-ratio: 16 / 10; overflow: hidden; margin: 16px 0; display: flex; align-items: center; justify-content: center; }
.grade-visual img { width: 100%; height: 100%; object-fit: cover; }

.grade-name { font-size: 1.9rem; margin: 0; }
.grade-ring { --p: 95; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: radial-gradient(closest-side, var(--card) 74%, transparent 75%), conic-gradient(var(--orange) calc(var(--p) * 1%), var(--line) 0); font-weight: 800; color: var(--orange); font-family: 'Baloo 2', sans-serif; font-size: 0.95rem; flex-shrink: 0; }

.grade-feat { display: flex; gap: 10px; align-items: flex-start; padding: 7px 0; color: var(--text); font-size: 0.93rem; }
.grade-feat i { color: var(--orange); margin-top: 2px; flex-shrink: 0; }
.grade-quote { background: var(--bg-2); border-radius: 12px; padding: 14px 16px; font-size: 0.85rem; color: var(--muted); font-style: italic; margin-top: auto; }

.grade-table { width: 100%; border-collapse: separate; border-spacing: 0; min-width: 640px; }
.grade-table th, .grade-table td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: middle; font-size: 0.92rem; }
.grade-table thead th { background: var(--bg-2); font-weight: 700; color: var(--text); }
.grade-table thead th.featured { color: var(--orange); }
.grade-table td:first-child { color: var(--muted); font-weight: 600; }
.grade-table tbody tr:last-child td { border-bottom: none; }

.protocol-step { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 22px; height: 100%; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04); }
.protocol-num { font-size: 0.75rem; font-weight: 700; color: var(--orange); letter-spacing: 0.1em; }

.faq-item { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 22px; height: 100%; }
.faq-q { font-weight: 700; margin-bottom: 8px; display: flex; gap: 8px; align-items: flex-start; }
.faq-q i { color: var(--orange); margin-top: 3px; }

.cta-banner { background: linear-gradient(135deg, #141414, #232323); border-radius: 22px; padding: 40px; color: #fff; }
.cta-banner .eyebrow { color: var(--orange-2); }

@media (max-width: 767px) {
  .grade-name { font-size: 1.6rem; }
  .grade-table th, .grade-table td { padding: 11px 12px; font-size: 0.85rem; }
  .cta-banner { padding: 26px 22px; }
}