@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@400;500;600;700&display=swap');

:root {
  --bg: #f3efe8;
  --surface: rgba(255, 255, 255, 0.7);
  --surface-strong: #ffffff;
  --surface-deep: #111827;
  --text: #18212f;
  --muted: #5f6b7c;
  --brand: #bf3f34;
  --brand-dark: #8f261c;
  --accent: #0f766e;
  --line: rgba(24, 33, 47, 0.1);
  --shadow-soft: 0 20px 60px rgba(17, 24, 39, 0.12);
  --shadow-card: 0 18px 40px rgba(17, 24, 39, 0.09);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(191, 63, 52, 0.16), transparent 30%),
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.16), transparent 28%),
    linear-gradient(180deg, #f7f2eb 0%, #f3efe8 45%, #ebe7df 100%);
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

main {
  display: block;
}

.page-width,
.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(243, 239, 232, 0.82);
  border-bottom: 1px solid rgba(24, 33, 47, 0.08);
}

.header-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand-mark__badge {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), #e07354);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(191, 63, 52, 0.2);
}

.brand-mark__text {
  display: grid;
  gap: 2px;
}

.brand-mark__text strong {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.brand-mark__text small {
  color: var(--muted);
  font-size: 0.76rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(24, 33, 47, 0.06);
  transform: translateY(-1px);
}

.top-search {
  position: relative;
}

.top-search form {
  display: flex;
  gap: 8px;
  align-items: center;
}

.top-search input {
  min-width: 260px;
  padding: 11px 15px;
  border-radius: 16px;
  border: 1px solid rgba(24, 33, 47, 0.1);
  background: rgba(255, 255, 255, 0.7);
  font: inherit;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.top-search input:focus {
  border-color: rgba(191, 63, 52, 0.45);
  box-shadow: 0 0 0 4px rgba(191, 63, 52, 0.12);
  background: #fff;
}

.suggestions {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 280px;
  max-width: 360px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(24, 33, 47, 0.08);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.suggestions.hidden {
  display: none;
}

.suggestions ul {
  list-style: none;
  margin: 0;
  padding: 8px;
}

.suggestions li {
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
}

.suggestions li:hover,
.suggestions li.active {
  background: rgba(191, 63, 52, 0.08);
}

.btn,
.button,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 17px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.btn,
.cta-button {
  background: linear-gradient(135deg, var(--brand), #d85f46);
  color: #fff;
  box-shadow: 0 14px 30px rgba(191, 63, 52, 0.24);
}

.btn:hover,
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(191, 63, 52, 0.28);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.58);
  color: var(--text);
  border-color: rgba(24, 33, 47, 0.12);
}

.button--ghost:hover {
  transform: translateY(-2px);
  background: #fff;
}

.hero {
  padding: 52px 0 24px;
}

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

.hero__content,
.hero-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.hero__content {
  min-height: 540px;
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.12), rgba(17, 24, 39, 0.64)),
    url('https://www.byacre.com/wp-content/uploads/2023/08/8.jpg') center 40% / cover no-repeat;
  color: #fff;
}

.hero__content::after {
  content: '';
  position: absolute;
  inset: auto -80px -120px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28), transparent 65%);
}

.eyebrow,
.hero-panel__label,
.feature-band__kicker {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero__content h1 {
  margin: 0;
  max-width: 10ch;
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero__lede {
  margin: 18px 0 0;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.stat-card {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.stat-card strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
}

.stat-card span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.hero-panel {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.7));
}

.hero-panel h2 {
  margin: 0;
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.hero-panel p {
  color: var(--muted);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(24, 33, 47, 0.08);
}

.feature-list li::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #34d399);
  box-shadow: 0 0 0 6px rgba(15, 118, 110, 0.1);
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 18px 0 8px;
}

.feature-band__card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(24, 33, 47, 0.08);
  box-shadow: var(--shadow-card);
}

.feature-band__card h3,
.section-heading h2,
.featured-products .product h3 {
  margin: 0;
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.04em;
}

.feature-band__card p:last-child,
.section-heading p:last-child,
.featured-products .product p:last-child {
  margin-bottom: 0;
}

.feature-band__kicker {
  color: var(--brand);
}

.showcase {
  padding: 36px 0 64px;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-heading p {
  max-width: 68ch;
  color: var(--muted);
  margin: 0;
}

.featured-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.featured-products .product {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76));
  border: 1px solid rgba(24, 33, 47, 0.08);
  box-shadow: var(--shadow-card);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  scroll-margin-top: 120px;
}

.featured-products .product::before {
  content: '';
  position: absolute;
  inset: -40% auto auto 60%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(191, 63, 52, 0.1), transparent 70%);
}

.featured-products .product:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 42px rgba(17, 24, 39, 0.12);
  border-color: rgba(191, 63, 52, 0.2);
}

.featured-products .product img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 10px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(247, 242, 235, 0.92), rgba(255, 255, 255, 0.65));
}

.featured-products .product h3 {
  margin-top: 16px;
  font-size: 1.12rem;
  color: var(--text);
}

.featured-products .product a {
  color: inherit;
  text-decoration: none;
}

.featured-products .product p {
  margin: 10px 0 0;
  color: var(--muted);
}

.featured-products .product strong {
  color: var(--brand);
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
}

.search-highlight {
  border-color: rgba(15, 118, 110, 0.35) !important;
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.14), 0 24px 42px rgba(17, 24, 39, 0.14) !important;
}

.footer {
  margin-top: 18px;
  padding: 28px 20px 40px;
  text-align: center;
  color: var(--muted);
}

.footer a {
  color: var(--text);
  text-decoration: none;
}

.products-page .site-header,
.product-detail-page nav,
.products-page nav {
  background: rgba(143, 38, 28, 0.92);
}

.products-page .site-header h1,
.products-page .nav-links a,
.product-detail-page .nav-links a {
  color: #fff;
}

.products-page .nav-links a:hover,
.products-page .nav-links a.is-active,
.product-detail-page .nav-links a:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
}

.product-detail,
.contact-card,
.card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(24, 33, 47, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(24, 33, 47, 0.12);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(191, 63, 52, 0.45);
  box-shadow: 0 0 0 4px rgba(191, 63, 52, 0.12);
}

@media (max-width: 1080px) {
  .header-shell {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .top-search input {
    min-width: min(360px, 65vw);
  }

  .hero__layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .page-width,
  .container {
    width: min(100% - 20px, 1180px);
  }

  .site-header {
    position: static;
  }

  .header-shell {
    padding: 16px 0 18px;
    gap: 14px;
  }

  .brand-mark {
    justify-content: center;
    text-align: center;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links a {
    padding: 9px 12px;
    font-size: 0.92rem;
  }

  .top-search {
    width: 100%;
  }

  .top-search form {
    flex-direction: column;
  }

  .top-search input,
  .top-search button {
    width: 100%;
  }

  .suggestions {
    left: 0;
    right: 0;
    max-width: none;
    min-width: 0;
  }

  .hero {
    padding-top: 24px;
  }

  .hero__content,
  .hero-panel {
    padding: 24px;
    border-radius: 24px;
  }

  .hero__content {
    min-height: 480px;
  }

  .hero__content h1 {
    max-width: 12ch;
  }

  .hero__stats,
  .feature-band {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    font-size: 2rem;
  }
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 1200;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--surface-deep);
  color: #fff;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.hero__intro {
  display: grid;
  gap: 0;
}

.hero-panel__spotlight {
  margin-top: 24px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(191, 63, 52, 0.08), rgba(15, 118, 110, 0.08));
  border: 1px solid rgba(24, 33, 47, 0.08);
}

.hero-panel__spotlight-title {
  margin: 0 0 12px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

.mini-product {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  align-items: center;
}

.mini-product img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  padding: 8px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
}

.mini-product strong,
.finder-card strong,
.journey-step h3,
.testimonial-card strong,
.faq-item summary,
.cta-banner h2,
.trust-pill {
  font-family: 'Sora', sans-serif;
}

.mini-product span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.95rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 14px 0 10px;
}

.trust-pill {
  padding: 16px 18px;
  border-radius: 999px;
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(24, 33, 47, 0.08);
  box-shadow: var(--shadow-card);
  font-size: 0.94rem;
}

.finder-section,
.compare-section,
.social-proof,
.faq-section {
  padding: 26px 0 10px;
}

.finder-grid,
.journey-grid,
.testimonial-grid {
  display: grid;
  gap: 18px;
}

.finder-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.finder-card,
.journey-step,
.testimonial-card,
.faq-item,
.cta-banner {
  border: 1px solid rgba(24, 33, 47, 0.08);
  box-shadow: var(--shadow-card);
}

.finder-card {
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.74));
  text-align: left;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.finder-card:hover,
.finder-card.is-active {
  transform: translateY(-4px);
  border-color: rgba(191, 63, 52, 0.22);
  box-shadow: 0 24px 44px rgba(17, 24, 39, 0.12);
}

.finder-card.is-active {
  background: linear-gradient(135deg, rgba(191, 63, 52, 0.12), rgba(255, 255, 255, 0.96));
}

.finder-card strong,
.journey-step h3,
.testimonial-card strong,
.faq-item summary {
  display: block;
  letter-spacing: -0.03em;
}

.finder-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.finder-summary {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
  flex-wrap: wrap;
}

.finder-summary p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.product[hidden],
.card[hidden] {
  display: none !important;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.1);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-product-actions {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.home-add-to-cart {
  width: 100%;
}

.home-product-status {
  margin: 0;
  min-height: 1.4em;
  color: var(--accent);
  font-size: 0.92rem;
}

.journey-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.journey-step {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
}

.journey-step span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), #e07354);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(191, 63, 52, 0.24);
}

.journey-step h3 {
  margin: 18px 0 10px;
}

.journey-step p,
.testimonial-card p,
.faq-item p,
.cta-banner p {
  margin: 0;
  color: var(--muted);
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76));
}

.testimonial-card p {
  font-size: 1.02rem;
}

.testimonial-card strong {
  margin-top: 18px;
  color: var(--text);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 0;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.faq-item summary {
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary {
  background: rgba(191, 63, 52, 0.06);
}

.faq-item p {
  padding: 0 22px 20px;
}

.cta-banner {
  margin: 32px auto 0;
  padding: 30px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #8f261c, #bf3f34 55%, #0f766e);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
}

.cta-banner .eyebrow,
.cta-banner h2,
.cta-banner p {
  color: #fff;
}

.cta-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cta-banner .button--ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.cta-banner .button--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.products-page--modern .site-header,
.products-page--modern nav {
  background: rgba(243, 239, 232, 0.72);
}

.products-page--modern .nav-links a,
.products-page--modern .brand-mark,
.products-page--modern .brand-mark__text small {
  color: inherit;
}

.products-masthead {
  padding: 34px 0 18px;
}

.products-masthead__shell {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 18px;
  padding: 32px;
  border-radius: 32px;
  border: 1px solid rgba(24, 33, 47, 0.08);
  background:
    radial-gradient(circle at top right, rgba(191, 63, 52, 0.18), transparent 24%),
    radial-gradient(circle at bottom left, rgba(15, 118, 110, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76));
  box-shadow: var(--shadow-soft);
}

.products-masthead__shell::after {
  content: '';
  position: absolute;
  inset: auto -40px -52px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(191, 63, 52, 0.08), transparent 70%);
}

.products-masthead__copy {
  position: relative;
  z-index: 1;
}

.products-masthead__copy h1 {
  margin: 0;
  max-width: 12ch;
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.4rem, 4.8vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.products-masthead__copy p:last-child {
  max-width: 56ch;
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.02rem;
}

.products-masthead__chips {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.products-masthead__chips span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(24, 33, 47, 0.08);
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
}

.collection-tools,
.product-catalogue {
  padding: 26px 0 10px;
}

.finder-grid--products {
  margin-top: 6px;
}

.product-grid--modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.product-grid--modern .card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 18px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76));
  border: 1px solid rgba(24, 33, 47, 0.08);
  box-shadow: var(--shadow-card);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  scroll-margin-top: 120px;
}

.product-grid--modern .card::before {
  content: '';
  position: absolute;
  inset: -46% auto auto 62%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.08), transparent 70%);
}

.product-grid--modern .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 42px rgba(17, 24, 39, 0.12);
  border-color: rgba(191, 63, 52, 0.18);
}

.product-grid--modern .card > img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 10px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(247, 242, 235, 0.92), rgba(255, 255, 255, 0.7));
  cursor: pointer;
}

.product-gallery {
  position: relative;
  z-index: 1;
}

.product-gallery--card {
  margin-bottom: 2px;
}

.product-gallery--detail {
  display: grid;
  gap: 14px;
}

.product-gallery__frame {
  position: relative;
}

.product-gallery__image {
  display: block;
  width: 100%;
}

.product-gallery__image--card {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 10px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(247, 242, 235, 0.92), rgba(255, 255, 255, 0.7));
  cursor: pointer;
}

.product-gallery__image--card:focus {
  outline: 3px solid rgba(15, 118, 110, 0.28);
  outline-offset: 4px;
}

.product-gallery__image--detail {
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.product-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(24, 33, 47, 0.7);
  color: #fff;
  font: inherit;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.product-gallery__nav:hover {
  background: rgba(24, 33, 47, 0.84);
}

.product-gallery__nav.is-prev {
  left: 12px;
}

.product-gallery__nav.is-next {
  right: 12px;
}

.product-gallery__nav--card {
  width: 34px;
  height: 34px;
}

.product-gallery__nav--detail {
  width: 42px;
  height: 42px;
}

.product-gallery__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.product-gallery__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(24, 33, 47, 0.18);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.product-gallery__dot.is-active {
  background: var(--brand);
  transform: scale(1.15);
}

.product-gallery__thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.product-gallery__thumb {
  flex: 0 0 82px;
  padding: 0;
  border: 1px solid rgba(24, 33, 47, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.product-gallery__thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  padding: 8px;
}

.product-gallery__thumb.is-active {
  border-color: rgba(191, 63, 52, 0.42);
  box-shadow: 0 10px 18px rgba(17, 24, 39, 0.1);
  transform: translateY(-2px);
}

.product-grid--modern .card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.product-grid--modern .card h3 {
  margin: 14px 0 0;
  font-family: 'Sora', sans-serif;
  font-size: 1.08rem;
  letter-spacing: -0.04em;
}

.product-grid--modern .card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.price {
  margin-top: 14px;
  color: var(--brand);
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
}

.actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 18px;
}

.button--alt {
  background: rgba(15, 118, 110, 0.12);
  color: var(--accent);
  border-color: rgba(15, 118, 110, 0.18);
  box-shadow: none;
}

.button--alt:hover {
  background: rgba(15, 118, 110, 0.18);
  transform: translateY(-2px);
}

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cart-badge {
  min-width: 21px;
  height: 21px;
  display: inline-grid;
  place-items: center;
  padding: 0 5px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), #e07354);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}

.search-results-main {
  padding: 34px 0 64px;
}

.search-results-hero {
  display: block;
}

.search-results-hero__copy,
.search-results-hero__panel,
.search-results-listing {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(24, 33, 47, 0.08);
  box-shadow: var(--shadow-soft);
}

.search-results-hero__copy {
  padding: 38px;
  background:
    radial-gradient(circle at top right, rgba(191, 63, 52, 0.14), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78));
}

.search-results-hero__copy h1 {
  margin: 0;
  max-width: 10ch;
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.search-results-hero__copy p:not(.eyebrow) {
  max-width: 54ch;
  color: var(--muted);
}

.search-query-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(24, 33, 47, 0.04);
  border: 1px solid rgba(24, 33, 47, 0.08);
}

.search-query-pill span {
  color: var(--muted);
  font-size: 0.92rem;
}

.search-query-pill strong {
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
}

.search-results-listing__head h2 {
  margin: 0;
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.04em;
}

.search-results-listing {
  margin-top: 28px;
  padding: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.56));
}

.search-results-listing__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 22px;
}

.search-results-listing__note {
  max-width: 30ch;
  margin: 0;
  color: var(--muted);
  text-align: right;
}

.search-results-page .cart-empty {
  margin-top: 24px;
  padding: 30px;
  border-radius: 28px;
  border: 1px solid rgba(24, 33, 47, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.72));
  box-shadow: var(--shadow-card);
}

.search-results-page .product-grid--modern .card {
  padding: 20px;
}

.search-results-page .product-grid--modern .card > img {
  padding: 18px;
}

.search-results-page .product-gallery__image--card {
  padding: 18px;
}

@media (max-width: 900px) {
  .search-results-listing__head {
    align-items: start;
    flex-direction: column;
  }

  .search-results-listing__note {
    max-width: none;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .search-results-main {
    padding-top: 22px;
  }

  .search-results-hero__copy,
  .search-results-listing {
    padding: 22px;
    border-radius: 24px;
  }

  .search-query-pill {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 1080px) {
  .trust-strip,
  .finder-grid,
  .journey-grid,
  .testimonial-grid,
  .cta-banner {
    grid-template-columns: 1fr 1fr;
  }

  .cta-banner__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .trust-strip,
  .finder-grid,
  .journey-grid,
  .testimonial-grid,
  .cta-banner {
    grid-template-columns: 1fr;
  }

  .mini-product {
    grid-template-columns: 72px 1fr;
  }

  .mini-product img {
    width: 72px;
    height: 72px;
  }

  .finder-card,
  .journey-step,
  .testimonial-card,
  .cta-banner {
    padding: 20px;
  }

  .products-masthead__shell {
    padding: 24px;
  }

  .product-grid--modern .card {
    padding: 16px;
  }

  .finder-summary {
    align-items: stretch;
  }

  .finder-summary .button {
    width: 100%;
  }
}


.product-detail-page .site-header,
.product-detail-page nav {
  background: rgba(243, 239, 232, 0.72);
}

.product-detail-page .nav-links a,
.product-detail-page .brand-mark,
.product-detail-page .brand-mark__text small {
  color: inherit;
}

.product-detail-main {
  padding: 32px 0 56px;
}

.product-detail-shell {
  display: grid;
  gap: 18px;
}

.detail-back {
  justify-self: start;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
  padding: 24px;
}

.product-detail__media {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(247, 242, 235, 0.92), rgba(255, 255, 255, 0.8));
  border: 1px solid rgba(24, 33, 47, 0.08);
}

.product-detail__media::before {
  content: '';
  position: absolute;
  inset: -30% auto auto 65%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(191, 63, 52, 0.1), transparent 72%);
}

.product-detail__media > img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.product-detail__media .product-gallery {
  position: relative;
  z-index: 1;
}

.product-detail__content {
  display: grid;
  gap: 16px;
  align-content: start;
}

.detail-badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.1);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail__content h1 {
  margin: 0;
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.product-detail__summary {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.detail-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-specs span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(24, 33, 47, 0.08);
  font-weight: 600;
}

.product-detail__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.product-detail__features li {
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(24, 33, 47, 0.08);
}

.product-detail__insights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.product-detail__insight-card {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(24, 33, 47, 0.08);
}

.product-detail__insight-card h2 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.03em;
}

.product-detail__insight-card p {
  margin: 0;
  color: var(--muted);
}

.product-detail__buybox {
  display: grid;
  gap: 16px;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82));
  border: 1px solid rgba(24, 33, 47, 0.08);
  box-shadow: var(--shadow-card);
}

.product-detail__price-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.product-detail__note {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.product-detail__option-group {
  display: grid;
  gap: 10px;
}

.product-detail__option-label,
.product-detail__option-current {
  margin: 0;
}

.product-detail__option-label {
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  letter-spacing: -0.03em;
}

.product-detail__option-current {
  color: var(--muted);
  font-size: 0.92rem;
}

.product-detail__swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-detail__color-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(24, 33, 47, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.product-detail__color-button:hover {
  transform: translateY(-1px);
  border-color: rgba(191, 63, 52, 0.28);
}

.product-detail__color-button.is-active {
  border-color: rgba(191, 63, 52, 0.4);
  background: rgba(191, 63, 52, 0.08);
  box-shadow: 0 10px 18px rgba(17, 24, 39, 0.08);
}

.product-detail__color-chip {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(24, 33, 47, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.product-detail__color-name {
  font-weight: 700;
  white-space: nowrap;
}

.product-detail__cart {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.product-detail__qty {
  width: 92px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(24, 33, 47, 0.12);
  background: #fff;
  font: inherit;
}

.product-detail__status {
  margin: 0;
  min-height: 1.4em;
  color: var(--accent);
  font-weight: 600;
}

.product-detail__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cart-main,
.checkout-main {
  padding: 32px 0 56px;
}

.cart-page,
.checkout-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.cart-page .cart-main,
.checkout-page .checkout-main {
  flex: 1;
}

.cart-hero {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.cart-hero h1 {
  margin: 0;
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.cart-hero p:last-child {
  margin: 0;
  color: var(--muted);
  max-width: 64ch;
}

.cart-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.8fr);
  gap: 22px;
  align-items: start;
}

.cart-items,
.cart-summary,
.checkout-form,
.checkout-summary,
.cart-empty {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(24, 33, 47, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

.cart-items,
.checkout-summary {
  padding: 18px;
}

.cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(24, 33, 47, 0.08);
}

.cart-item:first-child {
  padding-top: 0;
}

.cart-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.cart-item h3,
.cart-summary h2,
.checkout-summary h2 {
  margin: 0;
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.04em;
}

.cart-item p,
.checkout-empty {
  margin: 6px 0 0;
  color: var(--muted);
}

.cart-item__meta {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.cart-summary,
.checkout-form {
  padding: 22px;
}

.cart-summary__row,
.checkout-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.cart-summary__row {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(24, 33, 47, 0.08);
}

.cart-summary__actions {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.cart-empty {
  padding: 24px;
  text-align: center;
}

.checkout-form {
  display: grid;
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-weight: 700;
}

.checkout-form input,
.checkout-form textarea {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(24, 33, 47, 0.12);
  font: inherit;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
  outline: none;
  border-color: rgba(191, 63, 52, 0.45);
  box-shadow: 0 0 0 4px rgba(191, 63, 52, 0.12);
}

.checkout-summary__list {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.checkout-row {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(24, 33, 47, 0.08);
}

.checkout-row__info {
  display: grid;
  justify-items: start;
  gap: 8px;
}

.checkout-success {
  margin: 16px 0 0;
  color: var(--accent);
  font-weight: 700;
}

.checkout-success.is-error {
  color: var(--brand);
}

.checkout-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.contact-page--modern .site-header,
.contact-page--modern nav {
  background: rgba(243, 239, 232, 0.72);
}

.contact-page--modern .nav-links a,
.contact-page--modern .brand-mark,
.contact-page--modern .brand-mark__text small {
  color: inherit;
}

.contact-main {
  padding: 32px 0 56px;
}

.contact-toast {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  max-width: min(280px, calc(100vw - 32px));
  padding: 12px 16px;
  border-radius: 12px;
  background: #ffffff;
  color: #18212f;
  border: 1px solid rgba(24, 33, 47, 0.12);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.12);
  font-weight: 500;
}

.contact-toast__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.contact-toast__message {
  margin: 0;
  font-size: 0.95rem;
}

.contact-toast__close {
  border: 0;
  background: transparent;
  color: #18212f;
  font: inherit;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.contact-toast__bar {
  width: 100%;
  height: 4px;
  margin-top: 10px;
  border-radius: 999px;
  background: rgba(24, 33, 47, 0.08);
  overflow: hidden;
}

.contact-toast__progress {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: #18212f;
}

.contact-hero {
  display: grid;
  gap: 18px;
  padding: 28px 0 20px;
}

.contact-hero__copy h1 {
  margin: 0;
  max-width: 12ch;
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.contact-hero__copy p:last-child {
  max-width: 60ch;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.contact-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-hero__highlights span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(24, 33, 47, 0.08);
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
}

.contact-layout {
  padding-top: 8px;
}

.contact-card--modern {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 22px;
  padding: 24px;
}

.contact-card--modern .contact-card__form,
.contact-card--modern .contact-card__details {
  display: grid;
  gap: 16px;
  align-content: start;
}

.contact-card--modern .contact-card__form h2,
.contact-info-block h3 {
  margin: 0;
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.04em;
}

.contact-card__intro,
.contact-info-block p {
  margin: 0;
  color: var(--muted);
}

.contact-form__status {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-info-block {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78));
  border: 1px solid rgba(24, 33, 47, 0.08);
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}

.contact-note-box {
  background: linear-gradient(135deg, rgba(191, 63, 52, 0.08), rgba(15, 118, 110, 0.08));
}

.contact-note-box .button {
  margin-top: 6px;
  width: fit-content;
}

@media (max-width: 900px) {
  .product-detail {
    grid-template-columns: 1fr;
  }

  .cart-layout,
  .checkout-layout,
  .contact-card--modern {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .product-detail {
    padding: 18px;
  }

  .product-detail__media,
  .product-detail__buybox {
    padding: 18px;
  }

  .product-detail__insights {
    grid-template-columns: 1fr;
  }

  .product-detail__cart > * {
    width: 100%;
  }

  .detail-back {
    width: 100%;
  }

  .product-gallery__nav--detail {
    width: 38px;
    height: 38px;
  }

  .product-gallery__thumb {
    flex-basis: 72px;
  }
}
