:root {
  --bg: #f6f8fb;
  --panel: #ffffff;
  --border: #e3e8ef;
  --text: #0f172a;
  --muted: #64748b;
  --blue: #2f6fdc;
  --blue-600: #1e62d2;
  --green: #17b26a;
  --green-100: #e7f6ee;
  --shadow: 0 6px 20px rgba(2, 6, 23, .08);
  --radius: 7px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font: 16px/1.5 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, Apple Color Emoji, Segoe UI Emoji;
  color: var(--text);
  background: var(--bg);
}

h2 {
  color: #000;
  font-family: Inter;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  margin: 2rem 0;
}

h3 {
  color: rgb(0, 0, 0); 
  font-family: Inter; 
  font-size: 30px; 
  font-style: normal; 
  font-weight: 600; 
  line-height: normal; 
  text-align: center;
  margin: 2rem 0rem;
}

/* Layout */
.page {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    "product options summary"
    "line2L line2M line2R";
  gap: 28px;
  margin: 0px 5px 0 5px;
}

.page-title {
  color: #005387;
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin: 0 !important;
}

.prod-page-top {
  background-color: #fff !important;
}

.product {
  grid-area: product;
}

.options {
  grid-area: options;
  grid-row: 1/3;
}

.summary {
  grid-area: summary;
}

.line2L {
  grid-area: line2L;
}

.line2M {
  grid-area: line2M;
}

.line2R {
  grid-area: line2R;
}

.col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Titles */
.page-title {
  font-size: 38px;
  letter-spacing: .4px;
  margin: 0 0 8px;
}

.subtitle {
  color: #000;
  font-family: Inter;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

/* Product hero (simple illustrated placeholder) */
.product-hero {
  margin: 8px 0 0;
  position: relative;
  height: 400px;
  width: 420px;
}

.filter-card {
  height: 100%;
  border-radius: 7px;
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: 1fr 320px;
  overflow: hidden;
  position: relative;
}

.filter-card__badge {
  position: absolute;
  left: 14px;
  top: 14px;
  background: #fff;
  border: 2px solid var(--border);
  width: 68px;
  height: 68px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-weight: 700;
  text-align: center;
}

.filter-card__brand {
  padding: 22px 22px 0;
  background: var(--blue);
  color: #fff;
}

.filter-card__brand .dust {
  font-weight: 800;
  font-size: 56px;
  display: block;
  letter-spacing: .5px;
}

.filter-card__brand small {
  opacity: .95;
  display: block;
  margin-top: 6px;
}

.filter-card__brand .logo {
  margin-top: 18px;
  font-weight: 700;
  letter-spacing: .12em;
}

.filter-card__brand .logo span {
  font-weight: 900;
}

.filter-card__grid {
  background:
    linear-gradient(#fff, #fff) padding-box,
    repeating-linear-gradient(45deg, #e8ecf2 0 14px, #d9dee7 14px 28px);
  border-top: 10px solid #fff;
}

/* Panels */
.panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel__header {
  background: var(--blue);
  color: #fff;
  padding: 14px 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.panel__body {
  padding: 18px;
}

.section-label {
  font-size: 18px;
  margin: 0 0 2px;
}

.muted {
  color: var(--muted);
  margin: 0 0 12px;
}

.mt {
  margin-top: 18px;
}

/* Card radio list */
.list-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card {
  display: grid;
  grid-template-columns: 110px 1fr auto 26px;
  align-items: center;
  position: relative;
  gap: 14px;
  padding: 12px;
  border: 1.5px solid var(--border);
  background: rgb(255, 255, 255);
  border-radius: 7px;
  transition: border 0.2s, box-shadow 0.2s, background 0.2s;
  grid-template-columns: auto auto auto 26px !important;
  min-width: 0;
  word-wrap: break-word;
}

.card:hover {
  border-color: #c9d2e3;
  box-shadow: 0 2px 10px rgba(2, 6, 23, .05);
}

.card.radio input {
  position: absolute;
  opacity: 0;
  inset: 0;
}

.card__visual {
  display: flex;
  align-items: center;
  gap: 8px;
}

.card__content {
  display: flex;
  flex-direction: column;
}

.card__title {
  color: #000;
  font-family: Inter;
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.card__sub {
  color: #000 !important;
  font-family: Inter !important;
  font-size: 8px !important;
  font-style: normal;
  font-weight: 500 !important;
  line-height: normal;
}

.card__price {
  color: #187FDF;
  font-family: Inter;
  font-size: 10px;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.3px;
}

.card_img {
  aspect-ratio: 1 / 1 !important;
  object-fit: cover !important;
  width: 48px !important;
  height: 50px !important;
}

.card__check {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: #f1f5f9;
  color: transparent;
  font-weight: 800;
}

.card:has(input:checked) {
  border-radius: 5px !important;
  border: 1px solid #187FDF !important;
  background: #E0F0FF !important;
}

.card:has(input:checked) .card__check {
  background: var(--blue);
  color: #fff;
}

/* Chips */
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 7px;
  font-weight: 800;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: .02em;
}

.chip--tiny {
  font-size: 12px;
  padding: 2px 6px;
  background: #0f172a;
}

.chip_img {
  aspect-ratio: 1 / 1 !important;
  object-fit: cover !important;
  width: 48px !important;
  height: 50px !important;
}

/* Links row */
.links-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 12px 0 2px;
}

.links-row a {
  color: var(--blue-600);
  text-decoration: none;
  font-weight: 700;
}

.links-row a:hover {
  text-decoration: underline;
}

/* Saving note */
.saving-note {
  margin: 12px 2px 0;
  color: var(--muted);
}

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

/* Summary / Price Card */
.price-card {
  border: 1px solid var(--blue);
  background: #fff;
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}

.price-card__top {
  margin-bottom: 8px;
}

.price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.price__value {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: .3px;
}

.price__badge {
  color: #fff;
  background: var(--green);
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 7px;
}

.price__sub {
  color: var(--muted);
  font-size: 14px;
}

.price-filters-qty {
  margin-top: 5px;
}

.shipping-data {
  margin: 5px 0 10px 0;
}

.stock {
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 7px;
  font-weight: 500;
}

.stock .dot {
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 7px;
  display: inline-block;
}

.ship-date {
  font-weight: 700;
  margin-left: 5px;
}

/* Buttons */
.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  border-radius: 7px;
  padding: 14px 16px;
  width: 100%;
  font-weight: 800;
  letter-spacing: .02em;
}

.btn-primary {
  background: var(--green);
  color: #fff;
}

.btn-primary:hover {
  filter: brightness(.95);
}

.add-to-cart {
  width: 100%;
  border: none;
  border-radius: 500px;
  background: linear-gradient(90deg, #1AA20A 0%, #18A209 100%);
  padding: 1.8rem 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 3rem;
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  min-height: 50px !important;
  max-height: 54.242px;
  box-shadow:
    1px 3px 0px #158908,
    1px 4px 13px rgba(26, 162, 10, 0.5);
}

/* Save banner */
.save-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px dashed var(--green);
  background: #fff;
  border-radius: 7px;
  padding: 12px 14px;
  margin-top: 12px;
}

.save-banner strong {
  color: var(--green);
}

.coupon-title {
  color: #000;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.coupon-info {
  color: rgba(0, 0, 0, 0.55);
  font-family: Inter;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

/* Benefits */
.benefits {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.benefits li {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-top: 1px solid var(--border);
}

.benefits li:first-child {
  border-top: 0;
}

.benefits .i {
  width: 22px;
  text-align: center;
}

/* === TRUST BADGES === */
.trust-badges {
  padding: 0rem 1rem;
  border-radius: 4px;
  border: 1px solid #EBEBEB;
  background: #FFF;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 0px;
  font-size: 15px;
  font-weight: 600;
  color: #1C1C1C;
}

.trust-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.trust-text {
    color: #1C1C1C;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.trust-separator {
  width: 100%;
  height: 1px;
  background: #ECEAE8;
  margin: 0 auto;
}

/* Trust */
.trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.stars {
  color: #22c55e;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 2px;
}

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

/* Bullets */
.desc h3 {
  margin: 4px 0 10px;
}

.bullets {
  margin: 0;
  padding-left: 18px;
}

.bullets li {
  margin: 8px 0;
}

.product-price {
  text-align: center;
  box-sizing: border-box;
}

.product-price .dollars-main {
  color: #187FDF;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.54px;
  display: inline;
}

.product-price .dollars-main-ads {
  color: #187FDF;
  font-family: Inter;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.54px;
  display: inline;
}

.product-price .applied-discount {
  display: inline;
}

.product-price .applied-discount-ads {
  display: block;
}

.product-price strike {
  color: rgba(0, 0, 0, 0.55);
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.prod-image-initial {
  height: 317px;
}

.main-image-slider {
  height: 317px !important;
}

.product-price .discount-display {
  border-radius: 30px;
  background: #E5F5E5;
  color: #090;
  text-align: center;
  font-family: Inter;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 6px 12px;
}

/* Accessibility helpers */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.iapmo-info {
  font-size: 10px;
}

.iapmo-info img {
  width: 60%;
}

/* --- Breakpoints --- */
/* 2 columns on “thin” viewports (tablet / small laptop) */
@media (max-width: 1100px) {
  .page {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "product options"
      "line2R summary"
      "line2L line2M";
  }
  .options {
    grid-row: auto;
  }
}

/* 1 column on mobile */
@media (max-width: 760px) {
  .options {
    grid-row: auto;
  }
  .page {
    grid-template-columns: 1fr;
    grid-template-areas:
      "product"
      "options"
      "summary"
      "line2L"
      "line2R";
  }
}