/* =========================================================
   PRODUCT PAGE — BLUE / GREY / PURPLE / BLACK PAGES
========================================================= */

.catalog-product-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 8% 6%, rgba(81, 138, 255, 0.13), transparent 28%),
    radial-gradient(circle at 94% 92%, rgba(145, 95, 255, 0.11), transparent 30%),
    #f7f8fc;
  color: #101828;
}

/* =========================================================
   PAGE HEAD
========================================================= */

.product-page-head {
  padding: 42px 0 44px;
}

.product-page-head__back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
  color: #52617a;
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 0.22s ease,
    color 0.22s ease;
}

.product-page-head__back span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.product-page-head__back:hover {
  color: #101828;
  transform: translateX(-3px);
}

.product-page-head__content {
  max-width: 940px;
}

.product-page-head__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #ffffff;
  color: #52617a;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.product-page-head h1 {
  margin: 0 0 18px;
  color: #101828;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.product-page-head p {
  max-width: 820px;
  margin: 0;
  color: #667085;
  font-size: 18px;
  line-height: 1.68;
}

/* =========================================================
   TWO PRODUCT CARDS
========================================================= */

.product-choice {
  padding: 0 0 48px;
}

.product-choice__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.product-offer-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 28px 76px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.product-offer-card__media {
  display: flex;
  height: 430px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(16, 24, 40, 0.08);
  background: #ffffff;
}

.product-offer-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-offer-card__body {
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.product-offer-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.product-offer-card__badges span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 13px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 999px;
  background: #f4f7fb;
  color: #475467;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-offer-card h2 {
  margin: 0 0 10px;
  color: #101828;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.product-offer-card__subtitle {
  margin: 0 0 22px;
  color: #667085;
  font-size: 16px;
  line-height: 1.55;
}

.product-offer-card__facts {
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 22px;
  background: #fbfcfe;
}

.product-offer-card__facts div {
  display: grid;
  grid-template-columns: minmax(160px, 0.75fr) minmax(0, 1.25fr);
  gap: 18px;
  padding: 15px 18px;
  border-bottom: 1px solid rgba(16, 24, 40, 0.07);
}

.product-offer-card__facts div:last-child {
  border-bottom: 0;
}

.product-offer-card__facts span {
  color: #667085;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.product-offer-card__facts strong {
  color: #101828;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.45;
}

.product-offer-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.product-offer-card__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #eef4ff;
  color: #3564d4;
  font-size: 13px;
  font-weight: 800;
}

.product-offer-card__cta {
  display: inline-flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border-radius: 18px;
  background: #101828;
  color: #ffffff;
  font-size: 16px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 18px 36px rgba(16, 24, 40, 0.2);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.product-offer-card__cta:hover {
  transform: translateY(-2px);
  background: #1d2939;
  box-shadow: 0 24px 44px rgba(16, 24, 40, 0.25);
}

/* =========================================================
   CONTENT SECTIONS
========================================================= */

.product-content-section {
  padding: 0 0 28px;
}

.product-content-section--last {
  padding-bottom: 96px;
}

.product-content-card {
  overflow: hidden;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 72px rgba(15, 23, 42, 0.08);
}

.product-content-card__heading {
  padding: 30px 30px 22px;
  border-bottom: 1px solid rgba(16, 24, 40, 0.07);
}

.product-content-card__heading span {
  display: inline-block;
  margin-bottom: 10px;
  color: #667085;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-content-card__heading h2 {
  margin: 0;
  color: #101828;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.product-content-card__body {
  padding: 28px 30px 30px;
}

.product-content-card__body p {
  margin: 0 0 18px;
  color: #475467;
  font-size: 17px;
  line-height: 1.75;
}

.product-content-card__body p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   FEATURES
========================================================= */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px 30px 30px;
}

.feature-item {
  padding: 20px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 22px;
  background: #fbfcfe;
}

.feature-item strong {
  display: block;
  margin-bottom: 8px;
  color: #101828;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.45;
}

.feature-item p {
  margin: 0;
  color: #667085;
  font-size: 15px;
  line-height: 1.6;
}

/* =========================================================
   SPECS + DEVICES
========================================================= */

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.spec-table {
  padding: 0 30px 30px;
}

.spec-table div {
  display: grid;
  grid-template-columns: minmax(220px, 0.86fr) minmax(0, 1.14fr);
  gap: 22px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(16, 24, 40, 0.07);
}

.spec-table div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.spec-table span {
  color: #667085;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.spec-table strong {
  color: #101828;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.45;
}

.device-list {
  display: grid;
  gap: 14px;
  padding: 28px 30px 30px;
}

.device-list__item {
  padding: 18px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 20px;
  background: #fbfcfe;
}

.device-list__item strong {
  display: block;
  margin-bottom: 8px;
  color: #101828;
  font-size: 17px;
  font-weight: 850;
}

.device-list__item p {
  margin: 0;
  color: #667085;
  font-size: 15px;
  line-height: 1.6;
}

/* =========================================================
   BOX + FINAL CTA
========================================================= */

.product-bottom-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
}

.box-list {
  display: grid;
  gap: 14px;
  padding: 28px 30px 30px;
  margin: 0;
  list-style: none;
}

.box-list li {
  padding: 16px 18px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 18px;
  background: #fbfcfe;
  color: #101828;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.45;
}

.product-contact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(130, 100, 255, 0.24), transparent 36%),
    linear-gradient(135deg, #101828 0%, #1d2939 100%);
  color: #ffffff;
  box-shadow: 0 28px 80px rgba(16, 24, 40, 0.24);
}

.product-contact-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-contact-card h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.product-contact-card p {
  max-width: 760px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.7;
}

.product-contact-card__cta {
  display: inline-flex;
  width: fit-content;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 18px;
  background: #ffffff;
  color: #101828;
  font-size: 16px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.product-contact-card__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.22);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1180px) {
  .product-choice__grid,
  .product-detail-grid,
  .product-bottom-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  .product-page-head {
    padding: 28px 0 34px;
  }

  .product-page-head__back {
    margin-bottom: 26px;
  }

  .product-page-head h1 {
    font-size: 42px;
  }

  .product-page-head p {
    font-size: 16px;
  }

  .product-offer-card {
    border-radius: 28px;
  }

  .product-offer-card__media {
    height: 340px;
  }

  .product-offer-card__body {
    padding: 22px;
  }

  .product-offer-card h2 {
    font-size: 29px;
  }

  .product-offer-card__facts div,
  .spec-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .product-content-card__heading {
    padding: 24px 20px 18px;
  }

  .product-content-card__heading h2 {
    font-size: 30px;
  }

  .product-content-card__body,
  .feature-grid,
  .device-list,
  .box-list {
    padding-left: 20px;
    padding-right: 20px;
  }

  .spec-table {
    padding-left: 20px;
    padding-right: 20px;
  }

  .product-contact-card {
    padding: 28px 22px;
    border-radius: 28px;
  }
}

@media (max-width: 560px) {
  .product-page-head__eyebrow {
    min-height: 32px;
    padding: 0 13px;
    font-size: 11px;
  }

  .product-page-head h1 {
    font-size: 35px;
    line-height: 1.06;
  }

  .product-choice {
    padding-bottom: 28px;
  }

  .product-offer-card__media {
    height: 270px;
  }

  .product-offer-card__body {
    padding: 18px;
  }

  .product-offer-card h2 {
    font-size: 25px;
  }

  .product-offer-card__subtitle {
    font-size: 15px;
  }

  .product-offer-card__facts div {
    padding: 13px 14px;
  }

  .product-offer-card__chips span {
    min-height: 31px;
    padding: 0 12px;
    font-size: 12px;
  }

  .product-offer-card__cta,
  .product-contact-card__cta {
    width: 100%;
    min-height: 54px;
  }

  .product-content-section--last {
    padding-bottom: 72px;
  }

  .product-content-card {
    border-radius: 24px;
  }

  .product-content-card__heading h2 {
    font-size: 26px;
  }

  .product-content-card__body p {
    font-size: 15px;
    line-height: 1.68;
  }

  .feature-item,
  .device-list__item,
  .box-list li {
    padding: 15px;
    border-radius: 16px;
  }

  .product-contact-card h2 {
    font-size: 28px;
  }

  .product-contact-card p {
    font-size: 15px;
  }
}
/*  */
.product-offer-card__price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  margin: 4px 0 24px;
  border-top: 1px solid rgba(16, 24, 40, 0.1);
  border-bottom: 1px solid rgba(16, 24, 40, 0.1);
}

.product-offer-card__price-label {
  color: #667085;
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-offer-card__price-value {
  color: #101828;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.045em;
}
@media (max-width: 560px) {
  .product-offer-card__price-row {
    padding: 15px 0;
    margin-bottom: 20px;
  }

  .product-offer-card__price-label {
    font-size: 12px;
  }

  .product-offer-card__price-value {
    font-size: 32px;
  }
}