:root {
  --bg-main: #efebe4;
  --bg-soft: #f5f1ea;
  --paper: #f2eee7;
  --line: #d9d1c4;
  --text-main: #332c26;
  --text-soft: #5e554b;
  --olive: #596041;
  --olive-hover: #4c5237;
  --white-soft: #faf8f3;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background-color: var(--bg-main);
  background-image:
    radial-gradient(circle at top left, rgba(255,255,255,0.3), transparent 30%),
    radial-gradient(circle at bottom right, rgba(0,0,0,0.02), transparent 35%);
  color: var(--text-main);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.7;
}

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

a {
  text-decoration: none;
  transition: all 0.25s ease;
}

/* Breadcrumbs */
.product-breadcrumb a {
  color: var(--text-soft);
}

.product-breadcrumb a:hover {
  color: var(--olive);
}

/* Tabs */
.product-tabs a,
.product-tabs .nav-link {
  color: var(--text-main);
}

.product-tabs a:hover,
.product-tabs .nav-link:hover {
  color: var(--olive);
}

.product-tabs .nav-link.active {
  color: var(--text-main);
}

.container {
  max-width: 1200px;
}

/* Header */
.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(242, 238, 231, 0.88);
  backdrop-filter: blur(2px);
  overflow-x: clip;
}

.header-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 138px;
  gap: 20px;
}

.main-nav .nav-link {
  color: var(--text-main);
  font-size: 1.28rem;
  letter-spacing: 0.01em;
  padding: 0.5rem 1.1rem;
}

.main-nav .nav-link:hover {
  color: var(--olive);
}

.logo-link {
  display: inline-block;
}

.site-logo {
  height: 210px;
  width: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.header-icons a {
  color: var(--text-main);
  font-size: 1.15rem;
  margin-left: 0.85rem;
}

.header-icons a:hover {
  color: var(--olive);
}

.mobile-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 92px;
  width: 100%;
  min-width: 0;
  padding: 14px 0;
  overflow-x: clip;
}

.mobile-header .bi-list {
  font-size: 1.8rem;
  color: var(--text-main);
}

.mobile-header .navbar-toggler {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
}

.mobile-logo-link {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  max-width: calc(100% - 110px);
  text-align: center;
}

.mobile-logo {
  height: 92px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.mobile-header .header-icons {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.mobile-header .header-icons a {
  margin-left: 0.65rem;
}

.mobile-header .header-icons a:first-child {
  margin-left: 0;
}

/* Prevent mobile menu from showing on desktop */
#mobileNav {
  display: none;
}

#mobileNav.show {
  display: block;
}

#mobileNav .nav-link {
  color: var(--text-main);
  font-size: 1.1rem;
  padding: 0.55rem 0;
}

/* Sections */
.section-space {
  padding: 58px 0;
}

.section-divider-top {
  border-top: 1px solid var(--line);
}

.section-divider-box {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 2.5vw, 3rem);
  margin-bottom: 2.4rem;
  font-weight: 500;
  color: var(--text-main);
}

/* Hero */
.hero-section {
  padding: 0;
  border-top: 0;
}

.hero-wrap {
  min-height: 430px;
  padding: 58px 0 56px 46px;
  position: relative;
  overflow: hidden;
  background-color: transparent;
  background-image: url('../images/hero-banner.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  width: 100%;
}

.hero-content h1 {
  font-size: clamp(2.7rem, 4.2vw, 3.9rem);
  line-height: 1.04;
  margin-bottom: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.hero-content p {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 430px;
  margin-bottom: 2rem;
}

.hero-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(239, 235, 228, 0.88) 0%,
    rgba(239, 235, 228, 0.72) 22%,
    rgba(239, 235, 228, 0.40) 42%,
    rgba(239, 235, 228, 0.08) 60%,
    rgba(239, 235, 228, 0) 75%
  );
  z-index: 1;
}

/* Buttons */
.btn-ritual {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--olive);
  color: var(--white-soft);
  font-size: 1.08rem;
  line-height: 1;
  border: 0;
}

.btn-ritual:hover {
  background: var(--olive-hover);
  color: var(--white-soft);
}

.btn-sm-ritual {
  min-width: 168px;
  height: 48px;
  font-size: 1rem;
}

.btn-ritual-square {
  border: 0;
  background: var(--olive);
  color: var(--white-soft);
  padding: 0 28px;
  font-size: 1.05rem;
}

.btn-ritual-square:hover {
  background: var(--olive-hover);
  color: var(--white-soft);
}

.btn-outline-ritual,
.btn-outline-ritual:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  border: 1px solid var(--olive);
  color: var(--olive);
  background: transparent;
  font-size: 1.05rem;
  transition: all 0.25s ease;
}

.btn-outline-ritual:hover,
.btn-outline-ritual:focus,
.btn-outline-ritual:active {
  background: var(--olive);
  color: var(--white-soft) !important;
  border-color: var(--olive);
}

/* Ceremony CTA */
.cta-ceremony {
  padding: 40px 0 30px;
}

.btn-lg-ritual {
  min-width: 240px;
  height: 64px;
  font-size: 1.2rem;
}

/* Ornament */
.ornament-wrap {
  text-align: center;
  margin-bottom: 22px;
  overflow: hidden;
}

.ornament {
  display: inline-block;
  width: 56px;
  height: 12px;
  position: relative;
}

.ornament::before,
.ornament::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 95px;
  height: 1px;
  background: var(--line);
  transform: translateY(-50%);
}

.ornament::before {
  right: 100%;
  margin-right: 16px;
}

.ornament::after {
  left: 100%;
  margin-left: 16px;
}

.ornament {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  opacity: 0.85;
}

/* Categories */
.category-strip {
  padding: 18px 0 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.category-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 0;
}

.category-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 16px;
  color: var(--text-main);
  position: relative;
  min-height: 74px;
  min-width: 0;
}

.category-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18px;
  width: 1px;
  height: calc(100% - 36px);
  background: var(--line);
}

.category-item img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  opacity: 0.9;
  flex: 0 0 auto;
}

.category-item span {
  font-size: 1.4rem;
  min-width: 0;
}

.category-item:hover {
  color: var(--olive);
}

/* Products */
.product-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(170, 158, 144, 0.28);
  height: 100%;
}

.product-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.product-body {
  text-align: center;
  padding: 20px 18px 22px;
}

.product-body h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  min-height: 58px;
}

.price {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.browse-link {
  margin-top: 18px;
}

.browse-link a:not(.btn-outline-ritual) {
  color: var(--text-main);
  font-size: 1.25rem;
}

.browse-link a:not(.btn-outline-ritual):hover {
  color: var(--olive);
}

/* Fix Bootstrap row overflow in custom sections */
.featured-products .row,
.honoring-tools .row,
.footer-top .row,
.included-section .row,
.testimonials-section .row {
  margin-left: 0;
  margin-right: 0;
}

.featured-products .row > *,
.honoring-tools .row > *,
.footer-top .row > *,
.included-section .row > *,
.testimonials-section .row > * {
  padding-left: 12px;
  padding-right: 12px;
}

/* Text and feature image */
.text-block h2,
.newsletter-box h2 {
  font-size: clamp(2rem, 2.7vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.policy-page .text-block h2 {
  font-size: clamp(2rem, 2.4vw, 2.6rem);
  line-height: 1.15;
}

.text-block p,
.newsletter-box p,
.footer-brand p,
.footer-text,
.included-intro,
.included-card p,
.included-note p,
.philosophy-support,
.testimonial-text {
  color: var(--text-soft);
  font-size: 1.25rem;
  line-height: 1.8;
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-image-blend,
.product-story-image {
  position: relative;
  overflow: hidden;
  background: transparent;
  border-radius: 26px 18px 28px 20px;
}

.feature-image-blend img,
.product-story-image img {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  object-fit: unset;
  display: block;
  filter: saturate(95%) contrast(98%) brightness(100%);
  border-radius: 0;
}

.feature-image-blend::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: 26px 18px 28px 20px;
  background:
    radial-gradient(circle at 7% 14%,
      rgba(239, 235, 228, 0.58) 0%,
      rgba(239, 235, 228, 0.28) 8%,
      rgba(239, 235, 228, 0.08) 15%,
      rgba(239, 235, 228, 0) 24%),

    radial-gradient(circle at 93% 12%,
      rgba(239, 235, 228, 0.50) 0%,
      rgba(239, 235, 228, 0.24) 8%,
      rgba(239, 235, 228, 0.06) 15%,
      rgba(239, 235, 228, 0) 24%),

    radial-gradient(circle at 10% 88%,
      rgba(239, 235, 228, 0.56) 0%,
      rgba(239, 235, 228, 0.26) 9%,
      rgba(239, 235, 228, 0.08) 16%,
      rgba(239, 235, 228, 0) 26%),

    radial-gradient(circle at 92% 90%,
      rgba(239, 235, 228, 0.52) 0%,
      rgba(239, 235, 228, 0.24) 9%,
      rgba(239, 235, 228, 0.07) 16%,
      rgba(239, 235, 228, 0) 26%),

    radial-gradient(ellipse at 50% 0%,
      rgba(239, 235, 228, 0.14) 0%,
      rgba(239, 235, 228, 0.05) 12%,
      rgba(239, 235, 228, 0) 22%),

    radial-gradient(ellipse at 50% 100%,
      rgba(239, 235, 228, 0.12) 0%,
      rgba(239, 235, 228, 0.04) 12%,
      rgba(239, 235, 228, 0) 22%),

    radial-gradient(ellipse at 0% 50%,
      rgba(239, 235, 228, 0.12) 0%,
      rgba(239, 235, 228, 0.04) 12%,
      rgba(239, 235, 228, 0) 22%),

    radial-gradient(ellipse at 100% 50%,
      rgba(239, 235, 228, 0.10) 0%,
      rgba(239, 235, 228, 0.04) 12%,
      rgba(239, 235, 228, 0) 22%);
}

/* Newsletter */
.newsletter-box {
  max-width: 920px;
  margin: 0 auto;
}

.newsletter-form {
  max-width: 680px;
  margin-top: 26px;
}

.newsletter-form .input-group {
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.35);
}

.newsletter-form .form-control {
  height: 62px;
  border: 0;
  background: transparent;
  padding-left: 28px;
  font-size: 1.05rem;
  box-shadow: none !important;
  color: var(--text-main);
}

.newsletter-form .form-control::placeholder {
  color: #857a6e;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 20px;
  padding-top: 50px;
  padding-bottom: 26px;
  background: rgba(240, 235, 226, 0.7);
}

.footer-top {
  padding-bottom: 26px;
}

.footer-logo {
  width: 250px;
  max-width: 100%;
  margin-bottom: 14px;
}

.site-footer h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

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

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a,
.footer-text,
.footer-bottom p {
  color: var(--text-soft);
  font-size: 1.25rem;
  line-height: 1.8;
}

.footer-links a:hover {
  color: var(--olive);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  margin-right: 0;
  color: var(--text-main);
  font-size: 1rem;
}

.footer-social a:hover {
  background: var(--olive);
  color: var(--white-soft);
  border-color: var(--olive);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  text-align: center;
}

.footer-disclosure {
  max-width: 1000px;
  margin: 0 auto 10px;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.9;
}

/* Included Section */
.included-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(245, 241, 234, 0.35);
}

.included-intro {
  max-width: 900px;
  margin: 0 auto;
}

.included-card {
  height: 100%;
  padding: 30px 26px;
  border: 1px solid rgba(170, 158, 144, 0.28);
  background: rgba(255,255,255,0.18);
  text-align: center;
}

.included-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--olive);
  background: rgba(255,255,255,0.28);
  font-size: 1.7rem;
}

.included-icon i {
  font-weight: 700;
  transform: scale(1.15);
}

.included-card h3 {
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.85rem;
  color: var(--text-main);
}

.included-card p {
  margin: 0;
}

.included-note {
  margin-top: 32px;
}

.included-note p {
  margin: 0 auto;
  max-width: 780px;
}

/* Testimonials / Trust */
.testimonials-section {
  background: transparent;
}

.testimonial-card {
  height: 100%;
  padding: 32px 26px 28px;
  border: 1px solid rgba(170, 158, 144, 0.28);
  background: rgba(255,255,255,0.14);
}

.testimonial-text {
  margin-bottom: 18px;
}

.testimonial-name {
  color: var(--text-soft);
  font-size: 1.1rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
  margin-top: 34px;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid rgba(89, 96, 65, 0.38);
  background: rgba(255,255,255,0.22);
  color: var(--text-main);
  font-size: 1.05rem;
  line-height: 1.4;
  min-height: 50px;
}

.trust-item i {
  color: var(--olive);
  font-size: 1.05rem;
}

.trust-item:hover {
  background: rgba(89, 96, 65, 0.08);
  border-color: rgba(89, 96, 65, 0.65);
  color: var(--text-main);
}

/* Philosophy Section */
.philosophy-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(245, 241, 234, 0.22);
}

.philosophy-box {
  max-width: 980px;
  margin: 0 auto;
}

.philosophy-box h2 {
  font-size: clamp(2rem, 2.7vw, 3.1rem);
  line-height: 1.15;
  margin-bottom: 1.4rem;
  font-weight: 500;
  color: var(--text-main);
}

.philosophy-lead {
  max-width: 880px;
  margin: 0 auto 1.2rem;
  color: var(--text-main);
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
  line-height: 1.75;
}

.philosophy-support {
  max-width: 860px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 1199.98px) {
  .site-logo {
    height: 115px;
    width: auto;
  }

  .main-nav .nav-link {
    padding: 0.5rem 0.7rem;
    font-size: 1rem;
  }

  .category-item span {
    font-size: 1.2rem;
  }
}

@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 0;
  }

  .hero-wrap {
    min-height: 360px;
    padding: 42px 24px;
    background-position: center center;
    background-size: cover;
  }

  .hero-content {
    max-width: 420px;
  }

  .feature-image img {
    height: auto;
  }

  .category-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-item:nth-child(2n)::after {
    display: none;
  }

  .category-item:last-child {
    grid-column: 1 / -1;
  }

  .section-space {
    padding: 48px 0;
  }

  .product-image img {
    height: 240px;
  }

  .included-card,
  .testimonial-card {
    padding: 26px 22px;
  }
}

@media (max-width: 767.98px) {
  .mobile-logo {
    height: 84px;
    max-width: 100%;
  }

  .mobile-logo-link {
    width: 210px;
    max-width: calc(100% - 96px);
  }

  .mobile-header {
    min-height: 86px;
    padding: 12px 0;
  }

  .hero-section .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .hero-wrap {
    min-height: 320px;
    padding: 28px 24px;
    background-position: center center;
    background-size: cover;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-wrap::before {
    background: linear-gradient(
      to right,
      rgba(239, 235, 228, 0.92) 0%,
      rgba(239, 235, 228, 0.82) 35%,
      rgba(239, 235, 228, 0.45) 60%,
      rgba(239, 235, 228, 0.10) 80%,
      rgba(239, 235, 228, 0) 100%
    );
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p,
  .text-block p,
  .newsletter-box p,
  .included-intro,
  .included-card p,
  .included-note p,
  .philosophy-support,
  .testimonial-text {
    font-size: 1.08rem;
    line-height: 1.75;
  }

  .category-row {
    grid-template-columns: 1fr;
  }

  .category-item::after {
    display: none !important;
  }

  .category-item {
    justify-content: flex-start;
    border-bottom: 1px solid rgba(217, 209, 196, 0.6);
  }

  .category-item:last-child {
    border-bottom: 0;
  }

  .product-body h3 {
    min-height: auto;
  }

  .newsletter-form .input-group {
    border-radius: 20px;
  }

  .newsletter-form .form-control,
  .btn-ritual-square {
    height: 56px;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-logo {
    width: 220px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 18px;
  }

  .footer-brand p {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .included-card h3 {
    font-size: 1.2rem;
  }

  .testimonial-name,
  .trust-item {
    font-size: 1rem;
  }

  .included-icon {
    width: 64px;
    height: 64px;
    font-size: 1.45rem;
  }

  .trust-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .trust-item {
    justify-content: center;
  }

  .row {
    margin-left: 0;
    margin-right: 0;
  }

  .row > * {
    padding-left: 10px;
    padding-right: 10px;
  }

  .feature-image,
  .feature-image-blend {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .feature-image img,
  .feature-image-blend img {
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  #mobileNav {
    display: none !important;
  }
}

/* Testimonial Carousel */
.testimonial-carousel {
  position: relative;
  padding: 0 52px 54px;
}

.testimonial-carousel .carousel-inner {
  overflow: hidden;
}

.testimonial-carousel .carousel-item {
  padding: 2px 0;
}

.testimonial-control {
  width: 42px;
  height: 42px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(170, 158, 144, 0.28);
  border-radius: 50%;
  opacity: 1;
}

.testimonial-control.carousel-control-prev {
  left: 0;
}

.testimonial-control.carousel-control-next {
  right: 0;
}

.testimonial-control .carousel-control-prev-icon,
.testimonial-control .carousel-control-next-icon {
  width: 18px;
  height: 18px;
  background-size: 18px 18px;
  filter: brightness(0) saturate(100%) invert(35%) sepia(12%) saturate(740%) hue-rotate(29deg) brightness(90%) contrast(88%);
}

.testimonial-control:hover {
  background: var(--olive);
  border-color: var(--olive);
}

.testimonial-control:hover .carousel-control-prev-icon,
.testimonial-control:hover .carousel-control-next-icon {
  filter: brightness(0) saturate(100%) invert(98%) sepia(9%) saturate(268%) hue-rotate(308deg) brightness(103%) contrast(96%);
}

.testimonial-indicators {
  position: static;
  margin: 24px 0 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.testimonial-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(89, 96, 65, 0.28);
  opacity: 1;
  margin: 0;
}

.testimonial-indicators .active {
  background: var(--olive);
}

@media (max-width: 991.98px) {
  .testimonial-carousel {
    padding: 0 44px 50px;
  }
}

@media (max-width: 767.98px) {
  .testimonial-carousel {
    padding: 0 36px 46px;
  }

  .testimonial-control {
    width: 36px;
    height: 36px;
  }

  .testimonial-control .carousel-control-prev-icon,
  .testimonial-control .carousel-control-next-icon {
    width: 14px;
    height: 14px;
    background-size: 14px 14px;
  }
}

.contact-form-wrap {
  padding: 38px 34px;
  border: 1px solid rgba(170, 158, 144, 0.28);
  background: rgba(255,255,255,0.16);
}

.form-label {
  color: var(--text-main);
  font-size: 1rem;
  margin-bottom: 0.55rem;
}

.ritual-input {
  min-height: 58px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.35);
  color: var(--text-main);
  font-size: 1.05rem;
  border-radius: 0;
  box-shadow: none !important;
  padding: 14px 16px;
}

.ritual-input:focus {
  border-color: rgba(89, 96, 65, 0.45);
  background: rgba(255,255,255,0.5);
}

.ritual-textarea {
  min-height: 220px;
  resize: vertical;
}

@media (max-width: 767.98px) {
  .contact-form-wrap {
    padding: 28px 20px;
  }
}

.ritual-select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--text-soft) 50%), linear-gradient(135deg, var(--text-soft) 50%, transparent 50%);
  background-position: calc(100% - 22px) calc(50% - 3px), calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

/* Sample Product Page */
.sample-product-section,
.product-story-section,
.product-features-section {
  background: transparent;
}

.product-image-wrap {
  position: relative;
  overflow: visible;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(170, 158, 144, 0.22);
  padding: 16px;
}

.product-main-image {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  display: block;
}

.product-info-wrap {
  padding-top: 4px;
}

.product-breadcrumb {
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.product-breadcrumb a {
  color: var(--text-soft);
}

.product-breadcrumb a:hover {
  color: var(--olive);
}

.product-breadcrumb span {
  margin: 0 6px;
}

.product-title {
  font-size: clamp(2.2rem, 2.9vw, 3.3rem);
  line-height: 1.08;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 0.8rem;
}

.product-price {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.1;
  color: var(--olive);
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.product-short-description,
.product-tab-content p,
.product-tab-list li,
.section-subtitle {
  color: var(--text-soft);
  font-size: 1.2rem;
  line-height: 1.8;
}

.product-short-description {
  margin-bottom: 1.5rem;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 2.4rem;
}

.product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0;
}

.product-tabs .nav-item {
  margin: 0;
}

.product-tabs .nav-link {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text-main);
  font-size: 1.22rem;
  line-height: 1.3;
  padding: 12px 0;
  margin-right: 32px;
  position: relative;
  font-family: Georgia, "Times New Roman", serif;
  opacity: 1;
}

.product-tabs .nav-link:hover,
.product-tabs .nav-link:focus {
  color: var(--olive);
}

.product-tabs .nav-link.active {
  color: var(--text-main);
  background: transparent;
  font-weight: 500;
}

.product-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: var(--olive);
}

.product-tab-content {
  padding-top: 24px;
  min-height: 210px;
}

.product-tab-list {
  padding-left: 1.2rem;
  margin: 0;
}

.product-tab-list li {
  margin-bottom: 0.55rem;
}

.product-story-text h2 {
  text-align: left;
  margin-bottom: 1.25rem;
}



.feature-box {
  height: 100%;
  padding: 30px 26px;
  border: 1px solid rgba(170, 158, 144, 0.28);
  background: rgba(255,255,255,0.16);
  text-align: center;
}

.feature-box h3 {
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.85rem;
  color: var(--text-main);
}

.feature-box p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.15rem;
  line-height: 1.8;
}

.section-subtitle {
  max-width: 780px;
  margin: 0 auto;
}

@media (max-width: 991.98px) {
  .product-main-image {
    min-height: 420px;
  }

  .product-tab-content {
    min-height: auto;
  }
}

@media (max-width: 767.98px) {
  .product-main-image {
    min-height: 0;
  }

  .product-title {
    font-size: 2.3rem;
  }

  .product-price {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 1.1rem;
  }

  .product-short-description,
  .product-tab-content p,
  .product-tab-list li,
  .section-subtitle {
    font-size: 1.08rem;
    line-height: 1.75;
  }

  .product-tabs .nav-link {
    margin-right: 20px;
    font-size: 1.05rem;
    font-weight: bold;
    padding: 10px 0;
  }

  .product-image-wrap {
    padding: 12px;
    height: auto;
  }

  .feature-box {
    padding: 26px 22px;
  }

  .product-actions {
    margin-bottom: 2rem;
  }
}

.product-section-cta {
  width: 100%;
  margin-top: 1.8rem;
}

.product-section-cta-center {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#purchase-anchor {
  display: block;
  position: relative;
  top: -140px;
  visibility: hidden;
}

.newsletter-form-unified {
  max-width: 980px;
  margin: 0 auto;
}

.newsletter-unified-wrap {
  display: flex;
  align-items: stretch;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white-soft);
  overflow: hidden;
}

.newsletter-segment {
  display: flex;
  align-items: center;
  min-width: 0;
}

.newsletter-email-segment {
  flex: 1 1 0;
  min-width: 220px;
}

.newsletter-captcha-segment {
  flex: 0 1 360px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1rem;
  border-left: 1px solid var(--line);
  background: var(--white-soft);
  min-width: 300px;
}

.newsletter-button-segment {
  flex: 0 0 140px;
}

.newsletter-unified-input {
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  height: 54px;
  padding: 0 1.2rem;
  font-size: 1rem;
  min-width: 0;
}

.newsletter-email-segment .newsletter-unified-input {
  width: 100%;
}

.newsletter-captcha-label {
  font-size: 0.92rem;
  color: var(--text-soft);
  white-space: nowrap;
  flex: 0 0 auto;
  margin: 0;
}

.newsletter-captcha-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex: 1 1 auto;
  min-width: 0;
}

.newsletter-captcha-image {
  display: block;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  padding: 2px;
  flex: 0 0 auto;
}

.newsletter-captcha-input {
  flex: 1 1 auto;
  min-width: 110px;
  height: 54px;
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0 0.6rem !important;
  font-size: 1rem;
}

.newsletter-submit-btn {
  width: 100%;
  height: 100%;
  min-width: 0;
  border-radius: 0 !important;
  border: 0 !important;
  white-space: nowrap;
}

/* MOBILE FIX */
@media (max-width: 991.98px) {
  .newsletter-unified-wrap {
    flex-wrap: wrap;
    border: 0;
    border-radius: 0;
    background: transparent;
    overflow: visible;
    gap: 1rem;
  }

  .newsletter-email-segment,
  .newsletter-captcha-segment,
  .newsletter-button-segment {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .newsletter-email-segment,
  .newsletter-captcha-segment {
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white-soft);
    min-height: 58px;
  }

  .newsletter-email-segment {
    padding: 0;
  }

  .newsletter-captcha-segment {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    border-left: 1px solid var(--line);
    padding: 0.75rem 1rem;
    gap: 0.75rem;
    min-width: 0;
  }

  .newsletter-email-segment .newsletter-unified-input {
    height: 56px;
    width: 100%;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 1rem;
  }

  .newsletter-captcha-label {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.15rem;
    text-align: left;
  }

  .newsletter-captcha-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
  }

  .newsletter-captcha-image {
    margin-right: 0;
    flex: 0 0 auto;
  }

  .newsletter-captcha-input {
    width: 100%;
    height: 48px;
    min-width: 0;
    border: 1px solid var(--line) !important;
    border-radius: 6px;
    background: var(--white-soft) !important;
    box-shadow: none !important;
    padding: 0 0.8rem !important;
    font-size: 0.95rem;
  }

  .newsletter-button-segment {
    border: 0;
  }

  .newsletter-submit-btn {
    height: 56px;
    width: 100%;
    border-radius: 10px !important;
  }
}

/* Shop Landing Page */
.shop-hero-section {
  background: transparent;
}

.shop-hero-intro {
  max-width: 920px;
  margin: 0 auto;
}

.shop-hero-text {
  color: var(--text-soft);
  font-size: 1.25rem;
  line-height: 1.85;
  max-width: 860px;
  margin: 0 auto;
}

.shop-products-section {
  padding-top: 10px;
}

.shop-product-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(170, 158, 144, 0.28);
  height: 100%;
}

.shop-product-image-frame {
  padding: 14px;
  background: rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(170, 158, 144, 0.18);
}

.shop-product-image-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  display: block;
}

@media (max-width: 991.98px) {
  .shop-hero-text {
    font-size: 1.12rem;
    line-height: 1.8;
  }
}

@media (max-width: 767.98px) {
  .shop-product-image-frame {
    padding: 12px;
  }

  .shop-product-image-frame img {
    border-radius: 14px;
  }
}