/* ===================================================================
   Catman Blinds — styles
   =================================================================== */

:root {
  --ink: #2a2b2d;          /* charcoal (logo dark) */
  --ink-2: #404244;        /* logo grey */
  --cream: #ffffff;        /* page background */
  --cream-2: #f6f6f7;
  --sand: #ededef;
  --gold: #e8742a;         /* logo orange (accent) */
  --gold-dark: #cf5f18;
  --green: #404244;        /* charcoal alt */
  --text: #2b2c2e;
  --muted: #66686c;
  --white: #ffffff;
  --line: #e6e6e8;
  --shadow-sm: 0 2px 8px rgba(31, 33, 36, .08);
  --shadow-md: 0 12px 34px rgba(31, 33, 36, .12);
  --shadow-lg: 0 24px 56px rgba(31, 33, 36, .16);
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1180px;
  --font-head: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 .5em;
  color: var(--ink);
  letter-spacing: -.01em;
}

p { margin: 0 0 1em; }

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.eyebrow--center { display: block; text-align: center; }

em { font-style: italic; color: var(--gold-dark); }

/* ===== Buttons ===== */
.btn {
  --pad-y: 13px;
  --pad-x: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: var(--pad-y) var(--pad-x);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .98rem;
  border: 1.5px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
  text-align: center;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 8px 20px rgba(232, 116, 42, .35);
}
.btn--primary:hover { background: var(--gold-dark); box-shadow: 0 12px 26px rgba(207, 95, 24, .42); transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); }

.btn--light {
  background: var(--cream);
  color: var(--ink);
}
.btn--light:hover { background: var(--white); transform: translateY(-2px); }

.btn--sm { --pad-y: 9px; --pad-x: 16px; font-size: .9rem; }
.btn--lg { --pad-y: 16px; --pad-x: 30px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ===== Top bar ===== */
.topbar {
  background: var(--ink);
  color: var(--cream);
  font-size: .85rem;
  overflow: hidden;
}
.topbar__viewport { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.topbar__track {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 0;
}
.topbar__set { display: flex; align-items: center; gap: 12px; white-space: nowrap; flex: 0 0 auto; }
.topbar__set--dup { display: none; }
.topbar strong { color: var(--gold); }
.topbar__sep { opacity: .4; }
.topbar__phone { font-weight: 600; }
.topbar__phone:hover { color: var(--gold); }

/* mobile: one row that auto-scrolls (marquee) instead of wrapping to 3 rows */
@media (max-width: 600px) {
  .topbar { font-size: .8rem; }
  .topbar__viewport { padding: 0; }
  .topbar__track {
    justify-content: flex-start;
    width: max-content;
    padding: 0;
    animation: cb-marquee 22s linear infinite;
  }
  .topbar__set { padding: 9px 30px 9px 0; }
  .topbar__set--dup { display: flex; }
}
@keyframes cb-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .topbar__track { animation: none; }
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 24px;
}
.logo { display: flex; align-items: center; gap: 11px; }
.logo__mark { display: inline-flex; }
.logo__img { height: 42px; width: auto; display: block; }
.footer .logo__img { height: 38px; }
.logo__text {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--ink);
  letter-spacing: -.02em;
}
.logo__text span { color: var(--gold-dark); }
.logo--light .logo__text { color: var(--cream); }
.logo--light .logo__text span { color: var(--gold); }

.nav {
  display: flex;
  gap: 26px;
  margin-left: 20px;
}
.nav a {
  font-weight: 500;
  font-size: .96rem;
  color: var(--ink-2);
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .2s ease;
}
.nav a:hover::after { width: 100%; }

.header__cta {
  margin-left: auto;
  display: flex;
  gap: 10px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  width: 24px; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: .25s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--line);
  background: var(--cream);
}
.mobile-nav a {
  padding: 12px 6px;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a:last-child { border: 0; margin-top: 8px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  isolation: isolate;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .9;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 78% -5%, rgba(232,116,42,.22), transparent 60%),
    linear-gradient(100deg, var(--cream) 30%, rgba(255,255,255,.88) 50%, rgba(255,255,255,.55) 72%, rgba(255,255,255,.3) 100%);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 54px;
  align-items: center;
}
.hero .eyebrow { color: var(--gold-dark); }
.hero h1 {
  font-size: clamp(2.3rem, 4.4vw, 3.6rem);
  margin-bottom: .35em;
}
.hero__lead {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 36ch;
}
.hero__lead strong { color: var(--ink); }
.hero__points {
  list-style: none;
  padding: 0;
  margin: 22px 0 26px;
  display: grid;
  gap: 10px;
}
.hero__points li {
  font-weight: 500;
  color: var(--ink-2);
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__micro {
  margin-top: 18px;
  font-size: .9rem;
  color: var(--muted);
}

/* ===== Lead form ===== */
.hero__form { align-self: stretch; }
.lead-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-lg);
}
.lead-form__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 4px;
}
.lead-form__head h2,
.lead-form__head h3 { margin: 0; font-size: 1.45rem; }
.lead-form__badge {
  background: var(--ink);
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .04em;
  padding: 6px 11px;
  border-radius: 999px;
  white-space: nowrap;
}
.lead-form__sub {
  color: var(--muted);
  font-size: .94rem;
  margin: 4px 0 18px;
}
.field { margin-bottom: 14px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.field textarea { resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(216, 164, 74, .2);
}
.field input.invalid,
.field select.invalid {
  border-color: #c0492f;
  box-shadow: 0 0 0 3px rgba(192, 73, 47, .15);
}

/* nicer dropdowns */
.field--select { position: relative; }
.field select {
  -webkit-appearance: none;
  appearance: none;
  padding-right: 42px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%2366686c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.field select:hover { border-color: #cdced1; }
/* grey out the placeholder option until a real choice is made */
.field select:has(option:disabled:checked) { color: var(--muted); }
.field select option { color: var(--text); }
.field select option:disabled { color: var(--muted); }
.field .err {
  display: none;
  color: #c0492f;
  font-size: .78rem;
  margin-top: 5px;
  font-weight: 500;
}
.field.show-err .err { display: block; }

.lead-form__legal {
  font-size: .76rem;
  color: var(--muted);
  margin: 12px 0 0;
  text-align: center;
}
.lead-form .btn { margin-top: 6px; }

.form-status {
  margin-top: 14px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: .92rem;
  text-align: center;
}
.form-status.is-success {
  padding: 16px;
  background: #e9f3ec;
  border: 1px solid #bcd9c4;
  color: #2c5a3a;
}
.form-status.is-error {
  padding: 14px;
  background: #fbeae6;
  border: 1px solid #efc4b9;
  color: #9e3b25;
}

/* ===== Trust strip ===== */
.trust {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink-2);
}

/* ===== Sections ===== */
.section { padding: 84px 0; }
.section--alt { background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.section__head {
  max-width: 660px;
  margin: 0 auto 50px;
  text-align: center;
}
.section__head h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
.section__head p { color: var(--muted); font-size: 1.08rem; }
.section__cta { text-align: center; margin-top: 46px; }

/* ===== Products ===== */
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.product:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.product__art {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-2);
}
.product__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product:hover .product__art img { transform: scale(1.06); }
.product__tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--ink);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .03em;
  padding: 5px 10px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.product__body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product__body h3 { font-size: 1.28rem; margin-bottom: 8px; }
.product__body p { color: var(--muted); font-size: .95rem; flex: 1; }
.product__link {
  margin-top: 14px;
  font-weight: 600;
  color: var(--gold-dark);
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.product__link:hover { gap: 10px; color: var(--ink); }

/* ===== Features ===== */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
}
.feature__icon {
  font-size: 1.8rem;
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  background: var(--cream-2);
  border-radius: 14px;
  margin-bottom: 16px;
}
.feature h3 { font-size: 1.25rem; }
.feature p { color: var(--muted); font-size: .96rem; margin: 0; }

/* ===== Steps ===== */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.step__num {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  background: var(--ink);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 1.3rem;
  border-radius: 50%;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.18rem; }
.step p { color: var(--muted); font-size: .94rem; margin: 0; }

/* ===== Reviews ===== */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  margin: 0;
  box-shadow: var(--shadow-sm);
}
.review__stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.review blockquote {
  margin: 0 0 16px;
  font-family: var(--font-head);
  font-size: 1.12rem;
  line-height: 1.5;
  color: var(--ink);
}
.review figcaption { color: var(--muted); font-weight: 600; font-size: .92rem; }

/* ===== Gallery ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 230px;
  gap: 16px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery__item::after {
  content: "View collections →";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 600;
  background: rgba(31, 42, 36, .45);
  opacity: 0;
  transition: opacity .25s ease;
}
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item:hover::after { opacity: 1; }
.gallery__item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery__item:nth-child(6) { grid-column: span 2; }

/* ===== Offer banner ===== */
.offer {
  background:
    radial-gradient(800px 300px at 10% 0%, rgba(216,164,74,.25), transparent 60%),
    var(--ink);
  color: var(--cream);
  padding: 60px 0;
}
.offer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.offer h2 { color: var(--cream); font-size: clamp(1.6rem, 3vw, 2.3rem); max-width: 22ch; }
.offer p { color: rgba(246,241,231,.8); margin: 0; }

/* ===== Contact ===== */
.section--contact { background: linear-gradient(180deg, var(--cream-2), var(--sand)); }
.contact {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 50px;
  align-items: start;
}
.contact__info h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
.contact__info > p { color: var(--muted); font-size: 1.08rem; max-width: 42ch; }
.contact__info strong { color: var(--ink); }
.contact__list {
  list-style: none;
  padding: 0;
  margin: 26px 0;
  display: grid;
  gap: 14px;
}
.contact__list li { display: flex; align-items: center; gap: 12px; font-weight: 500; }
.contact__list span { font-size: 1.2rem; }
.contact__list a:hover { color: var(--gold-dark); }
.contact__guarantee {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-size: .96rem;
  color: var(--ink-2);
}

/* ===== Footer ===== */
.footer {
  background: var(--ink);
  color: rgba(246,241,231,.78);
  padding-top: 56px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 44px;
}
.footer__brand p { margin: 14px 0 18px; max-width: 34ch; font-size: .94rem; }
.footer__col h4 { color: var(--cream); font-family: var(--font-body); font-size: .95rem; letter-spacing: .04em; margin-bottom: 14px; }
.footer__col a, .footer__col span {
  display: block;
  color: rgba(246,241,231,.72);
  font-size: .93rem;
  padding: 5px 0;
}
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(246,241,231,.14);
  padding: 18px 0;
  font-size: .84rem;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(246,241,231,.6);
}

/* ===== Thank-you page ===== */
.thanks {
  background:
    radial-gradient(800px 360px at 50% -10%, rgba(232,116,42,.16), transparent 65%),
    linear-gradient(180deg, var(--cream), var(--cream-2));
  padding: 80px 0 90px;
  text-align: center;
}
.thanks__inner { max-width: 720px; }
.thanks__check {
  width: 84px; height: 84px;
  margin: 0 auto 22px;
  display: grid; place-items: center;
  background: var(--gold);
  color: #fff;
  font-size: 2.6rem; font-weight: 700;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(232,116,42,.4);
}
.thanks h1 { font-size: clamp(2rem, 4vw, 2.9rem); }
.thanks__lead { font-size: 1.15rem; color: var(--muted); max-width: 56ch; margin: 0 auto 36px; }
.thanks__lead strong { color: var(--ink); }
.thanks__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0 0 36px;
  text-align: left;
}
.thanks__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
}
.thanks__card span { font-size: 1.5rem; }
.thanks__card h3 { font-size: 1.08rem; margin: 10px 0 6px; }
.thanks__card p { color: var(--muted); font-size: .94rem; margin: 0; }
.thanks__card a { color: var(--gold-dark); font-weight: 600; }
.thanks__phone { font-size: 1.12rem; font-weight: 600; color: var(--ink); margin: 0 0 32px; }
.thanks__phone a { color: var(--gold-dark); }
.thanks__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 700px) { .thanks__cards { grid-template-columns: 1fr; } }

/* ===== Estimate popup (modal) ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal[hidden] { display: none; }
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 27, 29, .62);
  animation: cb-fade .2s ease;
}
.modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 470px;
  max-height: 92vh;
  overflow: auto;
  animation: cb-pop .25s ease;
}
.modal__dialog .lead-form { box-shadow: var(--shadow-lg); }
.modal .lead-form__badge { display: none; }     /* free the corner for the close button */
.modal .lead-form__head { padding-right: 30px; }
.modal__close {
  position: absolute;
  top: 14px; right: 16px;
  z-index: 2;
  background: none;
  border: 0;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  padding: 2px 8px;
  border-radius: 8px;
}
.modal__close:hover { color: var(--ink); background: var(--cream-2); }
@keyframes cb-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes cb-pop { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .modal__overlay, .modal__dialog { animation: none; }
}

/* ===== Product detail page ===== */
.breadcrumb {
  font-size: .88rem;
  color: var(--muted);
  padding: 22px 0 0;
}
.breadcrumb a:hover { color: var(--gold-dark); }
.breadcrumb span { color: var(--ink); font-weight: 600; }

.pdp-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 40px 0 70px;
}
.pdp-hero__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}
.pdp-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.pdp-hero h1 { font-size: clamp(2.1rem, 4vw, 3.1rem); margin-bottom: .3em; }
.pdp-hero .tagchip {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .04em;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.pdp-hero__lead { font-size: 1.14rem; color: var(--muted); }
.pdp-bullets {
  list-style: none;
  padding: 0;
  margin: 22px 0 26px;
  display: grid;
  gap: 10px;
}
.pdp-bullets li { font-weight: 500; color: var(--ink-2); padding-left: 26px; position: relative; }
.pdp-bullets li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--gold-dark); font-weight: 700;
}
.pdp-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.pdp-other .products { margin-top: 8px; }

/* ===== Sticky mobile CTA ===== */
.sticky-cta {
  display: none;
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 60;
  background: var(--gold);
  color: var(--ink);
  text-align: center;
  font-weight: 700;
  padding: 15px;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
}

/* ===== Reveal animation (only hides when JS is active) ===== */
html.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== Responsive ===== */
@media (max-width: 940px) {
  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero__form { order: 2; }
  .products, .features, .reviews { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery__item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery__item:nth-child(6) { grid-column: span 2; }
  .contact { grid-template-columns: 1fr; gap: 32px; }
  .pdp-hero { grid-template-columns: 1fr; gap: 30px; padding-bottom: 50px; }
  .pdp-hero__media { order: -1; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .nav, .header__cta { display: none; }
  .nav-toggle { display: flex; }
  .header__inner { gap: 12px; }
}

@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .products, .features, .reviews, .steps, .footer__inner { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery__item:nth-child(1), .gallery__item:nth-child(6) { grid-column: span 1; grid-row: span 1; }
  .field-row { grid-template-columns: 1fr; }
  .topbar__inner { font-size: .78rem; gap: 8px; }
  .topbar__phone { margin-left: 0; width: 100%; text-align: center; }
  .offer__inner { flex-direction: column; align-items: flex-start; }
  .sticky-cta { display: block; }
  .footer__bottom-inner { flex-direction: column; }
}
