/*
 * Sample Kit — /samplekit
 *
 * Everything is scoped under the page's two sections, .sk-page (the offer) and
 * .sk-own (the cross-sell). The page runs inside the Kallyas theme, which styles
 * bare headings, paragraphs and lists globally, so the reset below neutralises
 * those before the components take over. Bootstrap 5 is not loaded on the public
 * site (the theme ships Bootstrap 3), so the layout is plain grid and flexbox,
 * which also keeps it clear of the theme's .row/.col float rules.
 */

/* ── Tokens, shared by both sections of the page ──────────────────────────── */
.sk-page,
.sk-own {
  --sk-green: #19a054;
  --sk-green-dark: #14803f;
  --sk-green-soft: #eef7f1;
  --sk-ink: #14171a;
  --sk-body: #4b5158;
  --sk-muted: #868c95;
  --sk-line: #e5e7ec;
  --sk-bg: #f5f6fa;
  --sk-radius: 14px;

  color: var(--sk-body);
  font-family: 'Open Sans', 'Source Sans Pro', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

.sk-page {
  padding: 70px 16px 90px;
  background: var(--sk-bg);
}

.sk-page,
.sk-own,
.sk-page *,
.sk-own *,
.sk-page *::before,
.sk-own *::before,
.sk-page *::after,
.sk-own *::after {
  box-sizing: border-box;
}

/* The theme sets margins, text-shadow and letter-spacing on bare elements at
   element specificity. Matched through :where() so this reset carries no weight
   and loses to every component class below it. */
:where(.sk-page, .sk-own) h1,
:where(.sk-page, .sk-own) h2,
:where(.sk-page, .sk-own) h3,
:where(.sk-page, .sk-own) h4,
:where(.sk-page, .sk-own) p,
:where(.sk-page, .sk-own) ul,
:where(.sk-page, .sk-own) li,
:where(.sk-page, .sk-own) form {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-weight: 400;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
}

:where(.sk-page, .sk-own) ul {
  list-style: none;
}

:where(.sk-page, .sk-own) button {
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
}

.sk-page img {
  max-width: 100%;
  height: auto;
}

/* The hero's bottom mask draws a filled wedge that has to match whatever sits
   underneath it, and this page is no longer white. */
#page_header .kl-bottommask--mask7.mask-over polygon {
  fill: #f5f6fa;
}

.sk-shell {
  max-width: 1220px;
  margin: 0 auto;
}

/* ── Offer layout ─────────────────────────────────────────────────────────── */
/* The order card spans both rows so it sits beside the intro on desktop, and
   the areas let it jump ahead of the long description on narrow screens. */
.sk-offer {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  grid-template-areas:
    'intro side'
    'about side';
  align-content: start;
  column-gap: 44px;
  row-gap: 26px;
}

.sk-offer__intro {
  grid-area: intro;
}

.sk-offer__about {
  grid-area: about;
}

.sk-offer__side {
  grid-area: side;
}

/* ── Intro copy ───────────────────────────────────────────────────────────── */
.sk-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--sk-green-dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.sk-eyebrow::before {
  content: '';
  display: block;
  width: 3px;
  height: 14px;
  background: var(--sk-green);
}

.sk-title {
  margin-top: 14px;
  color: var(--sk-ink);
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(38px, 5.4vw, 62px);
  font-weight: 700;
  line-height: 0.98;
  text-transform: uppercase;
}

.sk-lede {
  max-width: 36ch;
  margin-top: 18px;
  color: var(--sk-body);
  font-size: 18px;
  line-height: 1.45;
}

.sk-figure {
  margin: 26px 0 0;
}

/* The pack shot is cut out on white, so it needs no frame of its own */
.sk-figure__img {
  display: block;
  width: 100%;
  mix-blend-mode: multiply;
}

/* ── Fact chips ───────────────────────────────────────────────────────────── */
/* Two per row at every width: four across leaves the longer labels wrapping to
   three lines in a column this narrow */
.sk-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.sk-fact {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
  padding: 14px 14px;
  background: #fff;
  border: 1px solid var(--sk-line);
  border-radius: 10px;
}

.sk-fact__icon {
  flex: 0 0 auto;
  color: var(--sk-ink);
  font-size: 17px;
}

.sk-fact__label {
  color: var(--sk-ink);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.35;
}

/* ── Description card ─────────────────────────────────────────────────────── */
.sk-about {
  padding: 26px 28px 28px;
  background: #fff;
  border: 1px solid var(--sk-line);
  border-radius: var(--sk-radius);
}

.sk-about__text {
  font-size: 15px;
  line-height: 1.7;
}

.sk-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  padding: 14px 16px;
  background: #f8f9fb;
  border: 1px solid var(--sk-line);
  border-radius: 10px;
  color: var(--sk-body);
  font-size: 13.5px;
  font-style: italic;
  line-height: 1.6;
}

.sk-note__icon {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--sk-muted);
  font-size: 15px;
}

.sk-note a {
  color: var(--sk-green-dark);
  font-weight: 600;
  text-decoration: underline;
}

.sk-note a:hover,
.sk-note a:focus {
  color: var(--sk-green);
}

/* Reference pack download, deliberately quiet next to the order CTA */
.sk-dl {
  margin-top: 20px;
}

.sk-dl__pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 15px;
  background: #f4f5f7;
  border: 1px solid var(--sk-line);
  border-radius: 999px;
  color: var(--sk-body);
  font-size: 12.5px;
  line-height: 1.3;
  text-decoration: none;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.sk-dl__pill:hover,
.sk-dl__pill:focus {
  background: #eceef2;
  border-color: #d6d9e0;
  color: var(--sk-ink);
  text-decoration: none;
}

.sk-dl__pill .fa {
  color: var(--sk-muted);
  font-size: 12px;
}

.sk-dl__pill:hover .fa {
  color: var(--sk-green);
}

/* ── Order card ───────────────────────────────────────────────────────────── */
.sk-order {
  padding: 30px 32px 32px;
  background: #fff;
  border: 1px solid var(--sk-line);
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(20, 23, 26, 0.06);
}

.sk-order__title {
  color: var(--sk-ink);
  font-size: 19px;
  font-weight: 700;
}

/* Secondary line under the card title, kept quieter than the sample list */
.sk-order__note {
  margin-top: 8px;
  color: var(--sk-body);
  font-size: 13px;
  line-height: 1.5;
}

.sk-included {
  margin-top: 14px;
}

.sk-included__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid #f0f1f4;
}

.sk-included__item:last-child {
  border-bottom: 0;
}

.sk-included__check {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--sk-green-soft);
  color: var(--sk-green);
  font-size: 10px;
  line-height: 20px;
  text-align: center;
}

.sk-included__name {
  flex: 1 1 auto;
  color: var(--sk-ink);
  font-size: 14px;
  line-height: 1.4;
}

/* Material hint on the right of each row, decorative only */
.sk-included__media {
  flex: 0 0 auto;
  color: #c9ccd3;
  font-size: 13px;
}

.sk-price {
  margin-top: 24px;
  color: var(--sk-green-dark);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
}

.sk-price__ship {
  margin-top: 10px;
  color: var(--sk-muted);
  font-size: 13px;
  line-height: 1.5;
}

.sk-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  margin-top: 22px;
  padding: 17px 22px;
  background: var(--sk-green);
  border: 1px solid var(--sk-green);
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.6px;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease;
}

.sk-cta:hover,
.sk-cta:focus {
  background: var(--sk-green-dark);
  border-color: var(--sk-green-dark);
  color: #fff;
  text-decoration: none;
}

.sk-cta:focus-visible {
  outline: 2px solid var(--sk-green-dark);
  outline-offset: 2px;
}

/* ── Reassurance row ──────────────────────────────────────────────────────── */
.sk-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid #f0f1f4;
}

.sk-trust__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.sk-trust__icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border: 1px solid var(--sk-line);
  border-radius: 50%;
  color: var(--sk-muted);
  font-size: 12px;
  line-height: 28px;
  text-align: center;
}

.sk-trust__label {
  color: var(--sk-body);
  font-size: 11.5px;
  line-height: 1.4;
}

/* ── Back-in-stock notice (shown only while the kit is out of stock) ──────── */
.sk-alert {
  margin-top: 22px;
  padding: 18px 20px;
  background: #fff8e6;
  border: 1px solid #f2e2b8;
  border-radius: 10px;
  color: #7a5c12;
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
}

.sk-alert__title {
  font-weight: 700;
}

.sk-alert__label {
  display: block;
  margin: 16px 0 6px;
  font-size: 13px;
  font-weight: 700;
}

.sk-alert__input {
  width: 100%;
  max-width: 320px;
  padding: 9px 12px;
  background: #fff;
  border: 1px solid #ddd6bf;
  border-radius: 6px;
  color: var(--sk-ink);
  font-family: inherit;
  font-size: 14px;
}

.sk-alert__btn {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  padding: 10px 22px;
  background: var(--sk-green);
  border: 1px solid var(--sk-green);
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.sk-alert__btn:hover {
  background: var(--sk-green-dark);
  border-color: var(--sk-green-dark);
}

.sk-alert__msg {
  margin-top: 12px;
  font-size: 13.5px;
  font-weight: 600;
}

.sk-alert__msg.is-error {
  color: #a3241c;
}

.sk-alert__msg.is-ok {
  color: #1a6b39;
}

/* ── Cross-sell: order a sample with your own image ───────────────────────── */
.sk-own {
  padding: 76px 16px;
  background: #fff;
}

.sk-own__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.sk-own__title {
  margin-top: 12px;
  color: var(--sk-ink);
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1.1;
}

.sk-own__text {
  max-width: 52ch;
  margin-top: 16px;
  line-height: 1.7;
}

.sk-own__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding: 14px 28px;
  background: var(--sk-ink);
  border: 1px solid var(--sk-ink);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.18s ease, border-color 0.18s ease;
}

.sk-own__cta:hover,
.sk-own__cta:focus {
  background: var(--sk-green-dark);
  border-color: var(--sk-green-dark);
  color: #fff;
  text-decoration: none;
}

.sk-steps {
  padding: 26px 28px;
  background: var(--sk-bg);
  border: 1px solid var(--sk-line);
  border-radius: var(--sk-radius);
}

.sk-steps__title {
  color: var(--sk-muted);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sk-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 16px;
  color: var(--sk-ink);
  font-size: 13.5px;
  line-height: 1.5;
}

.sk-step__icon {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  background: #fff;
  border: 1px solid var(--sk-line);
  border-radius: 50%;
  color: var(--sk-green);
  font-size: 12px;
  line-height: 24px;
  text-align: center;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1199px) {
  .sk-offer {
    column-gap: 30px;
  }

  .sk-order {
    padding: 26px 24px 28px;
  }
}

@media (max-width: 991px) {
  .sk-offer {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      'intro'
      'side'
      'about';
    row-gap: 30px;
  }

  .sk-lede {
    max-width: none;
  }

  .sk-figure__img {
    max-width: 620px;
    margin: 0 auto;
  }

  .sk-own__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
}

@media (max-width: 767px) {
  /* The hero is hidden on phones, so the page has to clear the overlaid
     site header on its own */
  .sk-page {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .sk-about {
    padding: 22px 20px 24px;
  }

  .sk-own {
    padding: 50px 16px;
  }
}

@media (max-width: 575px) {
  .sk-page,
  .sk-own {
    padding-left: 12px;
    padding-right: 12px;
  }

  .sk-order {
    padding: 22px 18px 24px;
    border-radius: 14px;
  }

  .sk-price {
    font-size: 38px;
  }

  .sk-cta {
    padding: 15px 16px;
    font-size: 15px;
  }

  .sk-trust {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .sk-trust__label {
    font-size: 12.5px;
  }
}
