/*
  main.css
  First-pass split from storefront.css.
  Contains global basics plus styles used by the uploaded common files:
  header.php, footer.php, index.php, about.php, contact.php,
  where-to-buy.php, privacy-policy.php, and contact-submit.php.
*/

*,
*::before,
*::after {
box-sizing: border-box;
}

html {
font-size: 16px;
    scroll-padding-top: 80px;
}

body {
margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #2f2f2f;
  background: #faf8f6;
}

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

a {
color: inherit;
}

.site-header {
position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 248, 246, 0.96);
  border-bottom: 1px solid #e7e1da;
  backdrop-filter: blur(8px);
}

.site-header__inner {
max-width: 1200px;
  margin: 0 auto;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-brand {
text-decoration: none;
}

.site-brand__name {
display: inline-block;
  vertical-align: super;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #4a3f52;
}

.site-brand__logo {
max-width: 48px;
  height: auto;
  padding-right: 0.5rem;
  display: inline-block
}

.site-nav ul {
list-style: none;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin: 0;
  padding: 0;
}

.site-nav a {
text-decoration: none;
  font-size: 0.96rem;
  color: #4b4b4b;
}

.site-nav a[aria-current="page"] {
text-decoration: underline;
    text-underline-offset: 4px;
}

.site-nav a:hover {
color: #7b5f8f;
}

.hero-slider {
position: relative;
  min-height: 500px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.hero-slide {
position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
opacity: 1;
  z-index: 1;
}

.nav-toggle {
display: none;
  background: transparent;
  border: 0;
  padding: 0.35rem;
  cursor: pointer;
}

.nav-toggle span {
display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: #4a3f52;
  border-radius: 2px;
}

.site-footer {
margin-top: 3rem;
  background: #f1ece7;
  border-top: 1px solid #e1d8d0;
}

.site-footer__inner {
max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1rem 1.5rem;
}

.site-footer__top {
display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
}

.site-footer__brand h2,
.site-footer__links h3 {
margin-top: 0;
  color: #4a3f52;
}

.site-footer__brand p,
.site-footer__links a,
.site-footer__bottom p {
color: #5a5856;
  line-height: 1.7;
}

.site-footer__links {
display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.site-footer__links ul {
list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__links li + li {
margin-top: 0.55rem;
}

.site-footer__links a {
text-decoration: none;
}

.site-footer__links a:hover {
color: #7b5f8f;
}

.site-footer__bottom {
margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #ddd2c8;
}

.site-footer__bottom span {
font-size: 0.7rem;
    vertical-align: super;
    color: #4a3f52;
}

@media (max-width: 900px) {
  .site-header__inner {
  flex-wrap: wrap;
  }
  
    .nav-toggle {
  display: block;
      margin-left: auto;
  }
  
    .site-nav {
  display: none;
      width: 100%;
  }
  
    .site-nav.is-open {
  display: block;
  }
  
    .site-nav ul {
  flex-direction: column;
      align-items: flex-start;
      gap: 0.8rem;
      padding-top: 0.75rem;
  }
  
    .site-footer__top {
  grid-template-columns: 1fr;
  }
}

.eyebrow {
margin: 0 0 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #666;
}

.home-hero__prompt {
margin: 1.25rem 0 0.75rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #4b2f5f;
}

.home-hero__actions {
display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.25rem;
}

.btn {
display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.85rem 1.25rem;
    border-radius: 999px;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus {
transform: translateY(-2px);
    text-decoration: none;
}

.btn-primary {
background: #6f3fa0;
    color: #ffffff;
    border: 2px solid #6f3fa0;
    box-shadow: 0 8px 18px rgba(111, 63, 160, 0.25);
}

.btn-primary:hover,
.btn-primary:focus {
background: #5c3288;
    color: #ffffff;
    border-color: #5c3288;
}

.btn-secondary {
background: #ffffff;
    color: #6f3fa0;
    border: 2px solid #bcaec8;
}

.btn-secondary:hover,
.btn-secondary:focus {
background: #f5eefb;
    color: #5c3288;
    border-color: #6f3fa0;
}

.btn-tertiary {
background: #f5eefb;
    color: #7c4fac;
    border: 2px solid #d5cbdf;
}

.btn-tertiary:hover,
.btn-tertiary:focus {
background: #f5f0fa;
    color: #6f4a9b;
    border-color: #a47fc5;
    box-shadow: 0 6px 14px rgba(111, 63, 160, 0.14);
}

.home-trust-bar {
max-width: 1180px;
    margin: 0 auto;
    padding: 0.95rem 1.25rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: #f7f1fb;
    border-top: 1px solid rgba(111, 63, 160, 0.16);
    border-bottom: 1px solid rgba(111, 63, 160, 0.16);
}

.home-trust-bar span {
display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.35rem 1rem;
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.35;
    color: #4b2f5f;
    text-align: center;
}

.home-trust-bar span + span {
border-left: 1px solid rgba(111, 63, 160, 0.18);
}

.quick-paths {
max-width: 1180px;
    margin: 2.25rem auto;
    padding: 0 1.25rem;
}

.quick-paths__heading {
max-width: 760px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.quick-paths__heading h2 {
margin: 0 0 0.5rem;
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    line-height: 1.15;
    color: #33213f;
}

.quick-paths__heading p {
margin: 0;
    font-size: 1.05rem;
    color: #66586f;
    line-height: 1.6;
}

.quick-paths__grid {
display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.quick-path-card {
display: block;
    min-height: 190px;
    padding: 1.35rem;
    background: #ffffff;
    border: 1px solid rgba(111, 63, 160, 0.16);
    border-radius: 22px;
    box-shadow: 0 8px 22px rgba(55, 35, 72, 0.08);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.quick-path-card:hover,
.quick-path-card:focus {
transform: translateY(-4px);
    border-color: rgba(111, 63, 160, 0.38);
    box-shadow: 0 14px 30px rgba(55, 35, 72, 0.14);
    text-decoration: none;
}

.quick-path-card h3 {
margin: 0 0 0.65rem;
    font-size: 1.15rem;
    line-height: 1.25;
    color: #4b2f5f;
}

.quick-path-card p {
margin: 0;
    font-size: 0.96rem;
    line-height: 1.55;
    color: #66586f;
}

.hero-slide-caption {
position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.hero-slide-caption p {
margin: 0 0 0.35rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: #66586f;
}

.hero-slide-caption a {
font-size: 0.98rem;
    font-weight: 800;
    color: #6f3fa0;
    text-decoration: none;
}

.hero-slide-caption a:hover,
.hero-slide-caption a:focus {
text-decoration: underline;
}

@media (max-width: 980px) {
  .home-trust-bar {
  grid-template-columns: 1fr;
          padding: 0.75rem 1rem;
  }
  
    .home-trust-bar span {
  justify-content: center;
          text-align: center;
          min-height: auto;
          padding: 0.65rem 0.25rem;
  }
  
    .home-trust-bar span + span {
  border-left: 0;
          border-top: 1px solid rgba(111, 63, 160, 0.16);
  }
}

@media (max-width: 640px) {
  .home-hero__actions {
  flex-direction: column;
  }
  
    .home-hero__actions .btn {
  width: 100%;
  }
  
    .quick-paths {
  margin: 1.75rem auto;
          padding: 0 1rem;
  }
  
    .quick-paths__heading {
  text-align: left;
  }
  
    .quick-paths__grid {
  grid-template-columns: 1fr;
  }
  
    .quick-path-card {
  min-height: auto;
          padding: 1.15rem;
          border-radius: 18px;
  }
  
    .home-trust-bar {
  margin-top: 0;
  }
}

.trust-point {
gap: 0.35rem;
}

.trust-info-link {
display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    margin-left: 0.25rem;
    border-radius: 50%;
    border: 1px solid rgba(111, 63, 160, 0.45);
    color: #6f3fa0;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    opacity: 0.75;
    flex: 0 0 auto;
}

.trust-info-link:hover,
.trust-info-link:focus {
opacity: 1;
    background: #f5eefb;
    color: #5c3288;
    text-decoration: none;
}

.collection-intro {
line-height: 1.7;
  max-width: 760px;
}

.product-grid {
display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.product-card {
border: 1px solid #e2e2e2;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.product-card a {
display: block;
  text-decoration: none;
  color: inherit;
}

.product-card img {
width: 100%;
  height: auto;
  display: block;
}

.product-card__content {
padding: 1rem;
}

.product-card__content h3 {
margin-top: 0;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.product-card__content p {
margin: 0;
  line-height: 1.6;
  color: #444;
}

@media (max-width: 900px) {
  .product-grid {
  grid-template-columns: 1fr;
  }
}

.home-page {
overflow: hidden;
}

.home-hero {
padding: 2rem 1rem 3rem;
  background: linear-gradient(180deg, #faf8f6 0%, #f5f0eb 100%);
}

.home-hero__inner {
max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.home-hero__content h1 {
margin-top: 0;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.15;
  color: #3f3348;
}

.home-hero__text {
font-size: 1.05rem;
  line-height: 1.75;
  max-width: 720px;
  color: #4f4b48;
}

.home-hero__actions {
display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.home-hero__image img {
width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.home-section {
max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.section-heading {
margin-bottom: 1.5rem;
  max-width: 760px;
}

.section-heading h2 {
margin: 0 0 0.8rem;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #3f3348;
}

.section-heading p {
/* creating lack of p spacing  changed margin from 0 */
  /* margin: 0; */
  line-height: 1.7;
  color: #5a5856;
}

.collection-grid {
display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.collection-card {
border: 1px solid #e2ddd7;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.collection-card:hover {
transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
}

.collection-card a {
display: block;
  text-decoration: none;
  color: inherit;
}

.collection-card img {
width: 100%;
  height: auto;
  display: block;
}

.collection-card__content {
padding: 1rem;
}

.collection-card__content h3 {
margin: 0 0 0.7rem;
  line-height: 1.3;
}

.collection-card__content p {
margin: 0;
  line-height: 1.65;
  color: #4e4a47;
}

.home-story {
padding: 3rem 1rem 4rem;
}

.home-story__inner {
max-width: 1000px;
  margin: 0 auto;
  background: #f4ede7;
  border: 1px solid #e1d8d0;
  border-radius: 20px;
  padding: 2rem;
}

.home-story__content {
max-width: 760px;
}

.home-story__content h2 {
margin-top: 0;
  margin-bottom: 1rem;
  color: #3f3348;
}

.home-story__content p {
line-height: 1.8;
  color: #4f4b48;
  margin-bottom: 1.25rem;
}

@media (max-width: 900px) {
  .home-hero__inner,
  .collection-grid {
  grid-template-columns: 1fr;
  }
}

.simple-page {
min-height: 60vh;
}

.simple-hero {
padding: 2.5rem 1rem 1.5rem;
  background: linear-gradient(180deg, #faf8f6 0%, #f4ede7 100%);
  border-bottom: 1px solid #e7ddd4;
}

.simple-hero__inner {
max-width: 1100px;
  margin: 0 auto;
}

.simple-hero__inner h1 {
margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.15;
  color: #3f3348;
  max-width: 900px;
}

.simple-hero__inner p:last-child {
max-width: 760px;
  margin: 0;
  line-height: 1.75;
  color: #57524e;
}

.simple-content {
max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1rem 3rem;
}

.simple-content__stack {
display: grid;
  gap: 1.5rem;
}

.simple-content__grid {
display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.content-panel {
background: #fff;
  border: 1px solid #e2ddd7;
  border-radius: 16px;
  padding: 1.5rem;
}

.content-panel h2 {
margin-top: 0;
  margin-bottom: 0.9rem;
  color: #3f3348;
}

.content-panel p {
line-height: 1.75;
  color: #4f4b48;
}

.contact-details {
margin-top: 1rem;
}

.contact-details p {
margin: 0 0 0.6rem;
}

.contact-form {
display: grid;
  gap: 1rem;
}

.form-field {
display: grid;
  gap: 0.45rem;
}

.form-field label {
font-weight: 700;
  color: #4a3f52;
}

.form-field input,
.form-field textarea {
width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid #d9d1c8;
  border-radius: 12px;
  background: #fff;
  color: #2f2f2f;
  font: inherit;
}

.form-field input:focus,
.form-field textarea:focus {
outline: none;
  border-color: #a78fba;
  box-shadow: 0 0 0 3px rgba(167, 143, 186, 0.15);
}

.soft-note {
margin-top: 1rem;
  font-size: 0.95rem;
  color: #6a6662;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .simple-content__grid {
  grid-template-columns: 1fr;
  }
}

.form-alert {
margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  font-weight: 600;
  line-height: 1.5;
}

.form-alert--success {
background: #edf8ef;
  border: 1px solid #b9dfc0;
  color: #275d33;
}

.form-alert--error {
background: #fff1f1;
  border: 1px solid #e5bcbc;
  color: #8a2f2f;
}

.honeypot-field {
position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.product-card h3,
.product-card p {
margin-left: 1em;
  margin-right: 1em;
}

.product-card p a.text-link {
font-weight: 800;
  font-style:italic;
}


/* Where to Buy page */

.where-to-buy-page {
    overflow: hidden;
}

.buy-hero {
    padding: 3rem 1rem;
    background: linear-gradient(135deg, #faf8f6 0%, #f4edf8 55%, #efe6dd 100%);
    border-bottom: 1px solid #e4d8cd;
}

.buy-hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: center;
}

.buy-hero__content h1 {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.12;
    color: #33213f;
}

.buy-hero__content p {
    max-width: 720px;
    font-size: 1.08rem;
    line-height: 1.75;
    color: #4f4b48;
}

.buy-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.4rem;
}

.buy-hero__visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    align-items: center;
}

.buy-hero__visual img {
    width: 100%;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(111, 63, 160, 0.14);
    box-shadow: 0 14px 34px rgba(55, 35, 72, 0.12);
}

.buy-hero__visual img:first-child {
    grid-row: span 2;
}

.buy-hero__visual--single {
    display: block;
}

.buy-hero__visual--single img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(111, 63, 160, 0.14);
    box-shadow: 0 14px 34px rgba(55, 35, 72, 0.12);
}

.buy-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.buy-intro-strip {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.buy-intro-strip__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.15rem;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(111, 63, 160, 0.16);
    box-shadow: 0 8px 24px rgba(55, 35, 72, 0.08);
}

.buy-intro-strip__inner div {
    padding: 0.85rem 1rem;
    border-radius: 16px;
    background: #faf7fc;
}

.buy-intro-strip__inner strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #4b2f5f;
    font-size: 1rem;
}

.buy-intro-strip__inner span {
    display: block;
    color: #66586f;
    line-height: 1.55;
}

.retailer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.retailer-card {
    display: grid;
    grid-template-rows: auto 1fr;
    background: #ffffff;
    border: 1px solid #e2ddd7;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(55, 35, 72, 0.08);
}

.retailer-card__logo {
    min-height: 110px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f1fb;
    border-bottom: 1px solid rgba(111, 63, 160, 0.12);
}

.retailer-card__logo img {
    max-height: 54px;
    width: auto;
}

.retailer-card__logo span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: #ffffff;
    color: #4b2f5f;
    font-size: 1.15rem;
    font-weight: 800;
    box-shadow: 0 6px 16px rgba(55, 35, 72, 0.08);
}

.retailer-card__content {
    padding: 1.15rem;
}

.retailer-card__content h3 {
    margin: 0 0 0.55rem;
    color: #33213f;
}

.retailer-card__content p {
    margin: 0 0 0.9rem;
    color: #5a5856;
    line-height: 1.6;
    font-size: 0.95rem;
}

.text-link {
    color: #6f3fa0;
    font-weight: 800;
    text-decoration: none;
}

.text-link:hover,
.text-link:focus {
    text-decoration: underline;
}

.buy-note-panel {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.buy-note-panel__content {
    padding: 2rem;
    border-radius: 24px;
    background: #f4ede7;
    border: 1px solid #e1d8d0;
}

.buy-note-panel__content h2 {
    margin: 0 0 1rem;
    color: #33213f;
    font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.buy-note-panel__content p {
    max-width: 860px;
    color: #4f4b48;
    line-height: 1.75;
}

.buy-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.buy-product-card {
    border: 1px solid #e2ddd7;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(55, 35, 72, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.buy-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(55, 35, 72, 0.14);
}

.buy-product-card a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.buy-product-card img {
    width: 100%;
    height: auto;
    display: block;
}

.buy-product-card__content {
    padding: 1.15rem;
}

.buy-product-card__content h3 {
    margin: 0 0 0.65rem;
    color: #33213f;
}

.buy-product-card__content p {
    margin: 0 0 0.9rem;
    color: #4f4b48;
    line-height: 1.65;
}

.wholesale-callout {
    padding-top: 1rem;
}

.wholesale-callout__content {
    padding: 2rem;
    border-radius: 24px;
    background: linear-gradient(135deg, #f7f1fb 0%, #ffffff 100%);
    border: 1px solid rgba(111, 63, 160, 0.18);
    box-shadow: 0 10px 28px rgba(55, 35, 72, 0.08);
}

.wholesale-callout__content h2 {
    margin: 0 0 1rem;
    color: #33213f;
    font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.wholesale-callout__content p {
    max-width: 780px;
    line-height: 1.75;
    color: #4f4b48;
}

.buy-final-cta {
    padding-top: 1rem;
}

.buy-final-cta__inner {
    padding: 2rem;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #e2ddd7;
    text-align: center;
}

.buy-final-cta__inner h2 {
    margin: 0 0 0.75rem;
    color: #33213f;
}

.buy-final-cta__inner p {
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.75;
    color: #4f4b48;
}

.buy-final-cta .buy-hero__actions {
    justify-content: center;
}

@media (max-width: 1050px) {
    .retailer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .buy-hero__inner,
    .buy-intro-strip__inner,
    .buy-product-grid {
        grid-template-columns: 1fr;
    }

    .buy-hero__visual {
        max-width: 620px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .buy-hero {
        padding: 2.25rem 1rem;
    }

    .buy-hero__actions,
    .buy-final-cta .buy-hero__actions {
        flex-direction: column;
    }

    .buy-hero__actions .btn {
        width: 100%;
    }

    .buy-hero__visual {
        grid-template-columns: 1fr;
    }

    .buy-hero__visual img:first-child {
        grid-row: auto;
    }

    .retailer-grid {
        grid-template-columns: 1fr;
    }

    .buy-note-panel__content,
    .wholesale-callout__content,
    .buy-final-cta__inner {
        padding: 1.35rem;
        border-radius: 20px;
    }
}

.buy-process-panel {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.buy-process-panel__inner {
    padding: 2rem;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(111, 63, 160, 0.16);
    box-shadow: 0 8px 24px rgba(55, 35, 72, 0.08);
}

.buy-process-panel__inner h2 {
    margin: 0 0 1rem;
    color: #33213f;
    font-size: clamp(1.45rem, 3vw, 2.15rem);
}

.buy-process-panel__inner p {
    max-width: 860px;
    color: #4f4b48;
    line-height: 1.75;
}

@media (max-width: 640px) {
    .buy-process-panel__inner {
        padding: 1.35rem;
        border-radius: 20px;
    }
}

/* PayPal return page */

.paypal-return-page {
    overflow: hidden;
}

.paypal-return-hero {
    background: linear-gradient(135deg, #faf8f6 0%, #f4edf8 55%, #efe6dd 100%);
}

.paypal-return-panel h2 {
    color: #33213f;
}

.paypal-return-reminder {
    background: #f4ede7;
    border-color: #e1d8d0;
}

.paypal-return-reminder p:last-child {
    font-weight: 700;
    color: #4b2f5f;
}


.paypal-confirmation-panel {
    border-color: rgba(111, 63, 160, 0.22);
    box-shadow: 0 8px 24px rgba(55, 35, 72, 0.08);
}

.paypal-return-details {
    display: grid;
    grid-template-columns: minmax(160px, 220px) 1fr;
    gap: 0.55rem 1rem;
    margin: 1.25rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid #e2ddd7;
}

.paypal-return-details dt {
    font-weight: 700;
    color: #4b2f5f;
}

.paypal-return-details dd {
    margin: 0;
    color: #4f4b48;
    overflow-wrap: anywhere;
}

@media (max-width: 640px) {
    .paypal-return-details {
        grid-template-columns: 1fr;
    }

    .paypal-return-details dd {
        margin-bottom: 0.75rem;
    }
}

/* Sales & Shipping Policy page */

.sales-shipping-policy-page {
    overflow: hidden;
}

.policy-hero {
    background: linear-gradient(135deg, #faf8f6 0%, #f4edf8 55%, #efe6dd 100%);
}

.policy-hero__inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
}

.policy-hero__image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(111, 63, 160, 0.14);
    box-shadow: 0 14px 34px rgba(55, 35, 72, 0.12);
}

.policy-media-block {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 1.5rem;
    align-items: center;
}

.policy-media-block--reverse {
    grid-template-columns: 1fr 280px;
}

.policy-media-block--reverse .policy-media-block__image {
    order: 2;
}

.policy-media-block--reverse .policy-media-block__content {
    order: 1;
}

.policy-media-block__image img,
.policy-card-image img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    border: 1px solid #e2ddd7;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.policy-card-image {
    margin-bottom: 1rem;
}

.policy-button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

@media (max-width: 900px) {
    .policy-hero__inner,
    .policy-media-block,
    .policy-media-block--reverse {
        grid-template-columns: 1fr;
    }

    .policy-media-block--reverse .policy-media-block__image,
    .policy-media-block--reverse .policy-media-block__content {
        order: initial;
    }
}

@media (max-width: 640px) {
    .policy-button-row {
        flex-direction: column;
    }

    .policy-button-row .btn {
        width: 100%;
    }
}

/* Privacy Policy page */

.privacy-policy-page {
overflow: hidden;
}

.privacy-hero {
background: linear-gradient(135deg, #faf8f6 0%, #f4edf8 55%, #efe6dd 100%);
}

.privacy-hero__inner {
display: grid;
grid-template-columns: 1.05fr 0.95fr;
gap: 2rem;
align-items: center;
}

.privacy-hero__content p {
max-width: 760px;
line-height: 1.75;
color: #57524e;
}

.privacy-hero__image img {
width: 100%;
height: auto;
border-radius: 20px;
background: #ffffff;
border: 1px solid rgba(111, 63, 160, 0.14);
box-shadow: 0 14px 34px rgba(55, 35, 72, 0.12);
}

.privacy-intro-panel {
background: linear-gradient(135deg, #ffffff 0%, #faf7fc 100%);
border-color: rgba(111, 63, 160, 0.18);
box-shadow: 0 8px 24px rgba(55, 35, 72, 0.08);
}

.privacy-media-block {
display: grid;
grid-template-columns: 280px 1fr;
gap: 1.5rem;
align-items: center;
}

.privacy-media-block__image img,
.privacy-card-image img {
width: 100%;
height: auto;
border-radius: 18px;
border: 1px solid #e2ddd7;
background: #ffffff;
box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.privacy-media-block__content ul,
.content-panel ul {
line-height: 1.75;
color: #4f4b48;
}

.privacy-card-image {
margin-bottom: 1rem;
}

@media (max-width: 900px) {
  .privacy-hero__inner,
  .privacy-media-block {
  grid-template-columns: 1fr;
  }

  .privacy-hero__image {
      max-width: 620px;
  }

}

/* About page refresh */

.about-refresh-page {
overflow: hidden;
}

.about-refresh-hero {
background: linear-gradient(135deg, #faf8f6 0%, #f4edf8 55%, #efe6dd 100%);
}

.about-refresh-hero__inner {
display: grid;
grid-template-columns: 1.05fr 0.95fr;
gap: 2rem;
align-items: center;
}

.about-refresh-hero__content p {
max-width: 760px;
line-height: 1.75;
color: #57524e;
}

.about-refresh-hero__actions {
display: flex;
flex-wrap: wrap;
gap: 0.85rem;
margin-top: 1.35rem;
}

.about-refresh-hero__image img,
.about-media-block__image img,
.about-image-panel img {
width: 100%;
height: auto;
border-radius: 20px;
background: #ffffff;
border: 1px solid rgba(111, 63, 160, 0.14);
box-shadow: 0 14px 34px rgba(55, 35, 72, 0.12);
}

.about-intro-panel {
background: linear-gradient(135deg, #ffffff 0%, #faf7fc 100%);
border-color: rgba(111, 63, 160, 0.18);
box-shadow: 0 8px 24px rgba(55, 35, 72, 0.08);
}

.about-media-block {
display: grid;
grid-template-columns: 300px 1fr;
gap: 1.5rem;
align-items: center;
}

.about-media-block--reverse {
grid-template-columns: 1fr 300px;
}

.about-media-block--reverse .about-media-block__image {
order: 2;
}

.about-media-block--reverse .about-media-block__content {
order: 1;
}

.about-image-panel img {
margin-bottom: 1rem;
}

.about-quote-panel {
background: #f4ede7;
border-color: #e1d8d0;
text-align: center;
}

.about-quote-panel h2 {
max-width: 800px;
margin-left: auto;
margin-right: auto;
}

.about-quote-panel p {
max-width: 820px;
margin-left: auto;
margin-right: auto;
}

.about-quote-panel__line {
font-size: 1.2rem;
font-weight: 800;
color: #4b2f5f;
}

@media (max-width: 900px) {
  .about-refresh-hero__inner,
  .about-media-block,
  .about-media-block--reverse {
  grid-template-columns: 1fr;
  }


  .about-media-block--reverse .about-media-block__image,
  .about-media-block--reverse .about-media-block__content {
      order: initial;
  }

  .about-refresh-hero__image {
      max-width: 620px;
  }


}

@media (max-width: 640px) {
.about-refresh-hero__actions {
flex-direction: column;
}


.about-refresh-hero__actions .btn {
    width: 100%;
}


}

/* Book support / soft next-step note */
.book-support-note {
    border: 1px solid rgba(108, 79, 137, 0.22);
    border-radius: 18px;
    background: linear-gradient(135deg, #fffaf3 0%, #f7f0ff 100%);
    box-shadow: 0 16px 34px rgba(58, 42, 78, 0.08);
    padding: 2rem 1rem;
}

.book-support-note__inner {
    max-width: 780px;
    margin: 0 auto;
}

.book-support-note__eyebrow {
    margin: 0 0 0.35rem;
    color: #7b5a99;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.book-support-note h2 {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.book-support-note p {
    margin-bottom: 1rem;
}

.book-support-note__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-top: 1.1rem;
}

.book-support-note__actions .btn {
    margin: 0;
}

.book-support-note .btn-marketplace {
    text-decoration: none;
}

@media (max-width: 640px) {
    .book-support-note__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .book-support-note__actions .btn,
    .book-support-note__actions .btn-marketplace {
        width: 100%;
        text-align: center;
    }
}
 @view-transition{
    navigation: auto;
 }

 ::view-transition-group(root){
    animation-duration: 0.8s;
 }