.elementor-4617 .elementor-element.elementor-element-2349a77{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:100px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-a4c8427 *//* ─── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #161519;
  background: #ffffff;
}
img { display: block; max-width: 100%; height: auto; }
a { color: #1E6BBE; text-decoration: none; transition: color 0.2s; }
a:hover { color: #155299; }

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
  --blue:       #1E6BBE;
  --blue-dark:  #155299;
  --blue-light: #EBF3FC;
  --dark:       #161519;
  --mid:        #4A4A55;
  --muted:      #6B6B78;
  --border:     #E2E4EA;
  --bg-subtle:  #F7F8FA;
  --bg-card:    #FFFFFF;
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.10);
}

/* ─── Layout Utilities ──────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 64px 0; }
.section--tight { padding: 40px 0; }

/* ─── COMPLIANCE BANNER ─────────────────────────────────── */
.compliance-banner {
  background: var(--blue-light);
  border-left: 4px solid var(--blue);
  padding: 14px 20px;
}
.compliance-banner .container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.compliance-banner .icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--blue);
}
.compliance-banner p {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--mid);
}
.compliance-banner strong { color: var(--dark); }

/* ─── PRODUCT HERO ──────────────────────────────────────── */
.product-hero { padding: 56px 0 48px; }
.product-hero__inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: start;
}
.product-gallery {
  position: sticky;
  top: 96px;
}
.product-gallery__main {
  background: var(--bg-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1px;
}
.product-gallery__badge {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F0FBF4;
  border: 1px solid #B8E8C8;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  color: #1A7A3A;
  font-weight: 500;
}
.product-gallery__badge svg { flex-shrink: 0; }

/* Product Info */
.product-info__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.product-info__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 6px;
}
.product-info__subtitle {
  font-size: 15px;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}
.product-info__price {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}
.product-info__summary {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--mid);
  margin-bottom: 28px;
  border-left: 3px solid var(--blue);
  padding-left: 16px;
}

/* ─── PURCHASE BOX ──────────────────────────────────────── */
.purchase-box {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 20px;
}
.purchase-box__row {
  display: flex;
  align-items: stretch;
  gap: 12px;
}
.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 50px;
  overflow: hidden;
  background: #fff;
}
.qty-control button {
  width: 40px;
  height: 52px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--mid);
  transition: background 0.15s;
}
.qty-control button:hover { background: var(--bg-subtle); }
.qty-display {
  width: 44px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  color: var(--dark);
  user-select: none;
}

/* Add to Cart — solid primary */
.btn-add-cart {
  flex: 1;
  height: 52px;
  background: var(--blue);
  color: #fff;
  border: 2px solid var(--blue);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(30, 107, 190, 0.30);
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-add-cart:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: 0 6px 20px rgba(30, 107, 190, 0.42);
  transform: translateY(-1px);
}
.btn-add-cart:active { transform: translateY(0); box-shadow: none; }

/* Get Document — outlined secondary */
.btn-get-document {
  flex: 1;
  height: 52px;
  background: #fff;
  color: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-get-document:hover {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 6px 20px rgba(30, 107, 190, 0.35);
  transform: translateY(-1px);
}
.btn-get-document:active { transform: translateY(0); box-shadow: none; }

.purchase-box__note {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ─── STATS STRIP ───────────────────────────────────────── */
.stats-strip {
  background: var(--dark);
  padding: 36px 0;
}
.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
}
.stat-item {
  background: var(--dark);
  padding: 28px 32px;
  text-align: center;
}
.stat-item__value {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item__value span { color: var(--blue); }
.stat-item__label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  line-height: 1.4;
}

/* ─── DESCRIPTION SECTION ───────────────────────────────── */
.desc-section { padding: 72px 0; }
.desc-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-body {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--mid);
}
.section-body p + p { margin-top: 14px; }

/* Feature List */
.feature-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--mid);
  line-height: 1.6;
}
.feature-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  line-height: 22px;
  text-align: center;
}

/* ─── RESEARCH EFFECTS ──────────────────────────────────── */
.effects-section {
  background: var(--bg-subtle);
  padding: 72px 0;
}
.effects-section__header { text-align: center; margin-bottom: 48px; }
.effects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.effect-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.effect-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.effect-card__icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--blue);
}
.effect-card__stat {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 6px;
}
.effect-card__stat span { color: var(--blue); }
.effect-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.effect-card__desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}
.effects-footnote {
  text-align: center;
  margin-top: 28px;
  font-size: 12.5px;
  color: var(--muted);
  font-style: italic;
}

/* ─── SPECS SECTION ─────────────────────────────────────── */
.specs-section { padding: 72px 0; }
.specs-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
}
.specs-table tr { border-bottom: 1px solid var(--border); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table td {
  padding: 14px 0;
  font-size: 14.5px;
  vertical-align: top;
}
.specs-table td:first-child {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  width: 42%;
  padding-right: 16px;
}
.specs-table td:last-child {
  font-weight: 500;
  color: var(--dark);
}

/* Compliance Cards */
.compliance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.compliance-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-size: 13.5px;
  color: var(--mid);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.compliance-card .check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: #E8F5EE;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.compliance-card .check::after {
  content: '✓';
  font-size: 11px;
  font-weight: 700;
  color: #1A7A3A;
  line-height: 1;
}
.compliance-card--full { grid-column: span 2; }

/* ─── DISCLAIMER ────────────────────────────────────────── */
.disclaimer-section { padding: 0 0 72px; }
.disclaimer-box {
  border: 1px solid #F5C6C6;
  background: #FFF8F8;
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.disclaimer-box__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: #FDEAEA;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C0392B;
  font-size: 16px;
  font-weight: 700;
}
.disclaimer-box__text { font-size: 14px; color: #7A3030; line-height: 1.7; }
.disclaimer-box__text strong { color: #5A1A1A; }

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 900px) {
  .product-hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .product-gallery { position: static; }
  .product-gallery__main { max-width: 320px; margin: 0 auto; }
  .stats-strip__grid { grid-template-columns: 1fr; }
  .desc-section__inner { grid-template-columns: 1fr; gap: 40px; }
  .effects-grid { grid-template-columns: 1fr; }
  .specs-section__inner { grid-template-columns: 1fr; gap: 40px; }
  .product-info__title { font-size: 32px; }
}
@media (max-width: 600px) {
  .purchase-box__row { flex-direction: column; }
  .btn-add-cart, .btn-get-document { width: 100%; }
  .compliance-grid { grid-template-columns: 1fr; }
  .compliance-card--full { grid-column: span 1; }
}/* End custom CSS */