/* ==========================================================================
   Mario Malik Links - internal product pages
   Loads after styles.css and reuses its tokens, so the pages cannot drift from
   the index if the palette or type changes.
   ========================================================================== */

.page {
  max-width: var(--store-max);
  margin: 0 auto;
  padding: 24px var(--gutter) 48px;
}

/* ---- back to the index ---- */

.page__back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;              /* comfortable tap target */
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--fg-muted);
  text-decoration: none;
}

.page__back:hover { color: var(--fg); }
.page__back:focus-visible { outline: 2px solid var(--fg); outline-offset: 3px; }

/* ---- masthead ---- */

.page__eyebrow {
  margin: 20px 0 10px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.page__title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(26px, 8vw, 32px);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.8px;
  color: var(--fg);
}

.page__price {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--fg);
}

.page__lead {
  margin: 0 0 32px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-soft);
}

.page__lead p { margin: 0 0 14px; }
.page__lead p:last-child { margin: 0; }

/* ---- sections ---- */

.page__section {
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
  margin-bottom: 28px;
}

.page__section-title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.page__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page__list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.45;
  color: var(--fg-soft);
}

.page__list li:last-child { margin-bottom: 0; }

.page__list li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fg);
}

/* ---- call to action ---- */

.page__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  margin-top: 32px;
  padding: 0 16px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1px;
  text-align: center;
  text-decoration: none;
  transition: transform 0.18s ease;
}

/* No colour change on hover: the fill stays black. */
.page__cta:hover { background: var(--btn-bg); }
.page__cta:active { transform: scale(0.99); }
.page__cta:focus-visible { outline: 2px solid var(--fg); outline-offset: 3px; }

.page__cta-note {
  margin: 12px 0 0;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
  color: var(--fg-muted);
}

/* ---- footer ---- */

.page__footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  text-align: center;
}
