/** Shopify CDN: Minification failed

Line 17:19 Unexpected "{"
Line 17:28 Expected ":"
Line 17:35 Unexpected "{"
Line 18:10 Expected identifier but found whitespace
Line 18:12 Unexpected "{"
Line 18:21 Expected ":"
Line 18:48 Unexpected "0"
Line 18:51 Unexpected "{"
Line 18:60 Expected ":"
Line 18:89 Expected ":"
... and 22 more hidden warnings

**/
/* START_SECTION:breadcrumb-trail (INDEX:3) */
.breadcrumb-trail-{{ section.id }} {
  padding: {{ section.settings.padding_top }}px 0 {{ section.settings.padding_bottom }}px;
}
.breadcrumb-trail-{{ section.id }} .wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 50px 24px 0px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: {{ section.settings.font_size }}px;
}
.breadcrumb-trail-{{ section.id }} a,
.breadcrumb-trail-{{ section.id }} .current {
  color: {{ section.settings.text_color }};
}
.breadcrumb-trail-{{ section.id }} a {
  text-decoration: none;
}
.breadcrumb-trail-{{ section.id }} a:hover {
  text-decoration: underline;
}
.breadcrumb-trail-{{ section.id }} .sep {
  color: {{ section.settings.text_color }};
  opacity: 0.6;
}
/* END_SECTION:breadcrumb-trail */
/* START_SECTION:newsletter-section (INDEX:84) */
.newsletter-section {
  background: var(--nl-bg, #8B3FC9);
  padding: 64px 24px;
}

.newsletter-container {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-heading {
  font-size: 32px;
  font-weight: 800;
  color: var(--nl-title-color, #FFFFFF);
  margin: 0 0 16px;
  line-height: 1.25;
}

.newsletter-subheading {
  font-size: 16px;
  line-height: 1.6;
  color: var(--nl-text-color, #EAD9F7);
  margin: 0 0 32px;
}

.newsletter-subheading p {
  margin: 0;
}

.newsletter-form {
  margin: 0;
}

.newsletter-field {
  display: flex;
  align-items: center;
  background: var(--nl-input-bg, #FFFFFF);
  border-radius: 999px;
  padding: 6px 6px 6px 24px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  color: var(--nl-input-text, #1A1A1A);
  padding: 12px 8px;
}

.newsletter-input::placeholder {
  color: #9a9a9a;
}

.newsletter-button {
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  background: var(--nl-button-bg, #1E1E1E);
  color: var(--nl-button-text, #FFFFFF);
  font-weight: 700;
  font-size: 14.5px;
  border-radius: 999px;
  padding: 14px 26px;
  transition: opacity 0.15s ease;
}

.newsletter-button:hover {
  opacity: 0.85;
}

.newsletter-message {
  margin: 16px 0 0;
  font-size: 14px;
  font-weight: 600;
}

.newsletter-message--success {
  color: #FFFFFF;
}

.newsletter-message--error {
  color: #FFD9D9;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media screen and (max-width: 749px) {
  .newsletter-section {
    padding: 48px 20px;
  }
  .newsletter-heading {
    font-size: 24px;
  }
  .newsletter-field {
    flex-direction: column;
    border-radius: 20px;
    padding: 16px;
    gap: 10px;
  }
  .newsletter-input {
    width: 100%;
    text-align: center;
    padding: 8px;
  }
  .newsletter-button {
    width: 100%;
  }
}
/* END_SECTION:newsletter-section */
/* START_SECTION:page-hero-section (INDEX:88) */
.page-hero-section {
  background: var(--hero-bg, #F1ECFB);
  padding: 56px 24px;
}

.page-hero-section--banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--hero-min-height, 320px);
  padding: 64px 24px;
  overflow: hidden;
  isolation: isolate;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.page-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(26,26,26,calc(var(--hero-overlay) * 0.55)) 0%, rgba(26,26,26,var(--hero-overlay)) 100%);
}

.page-hero-container {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.page-hero-heading {
  font-size: 42px;
  font-weight: 800;
  color: var(--hero-title-color, #1A1A1A);
  margin: 0 0 16px;
  line-height: 1.2;
}

.page-hero-section--banner .page-hero-heading {
  text-shadow: 0 2px 18px rgba(0,0,0,0.28);
}

.page-hero-subheading {
  font-size: 16px;
  line-height: 1.6;
  color: var(--hero-text-color, #7A7A7A);
  margin: 0;
}

.page-hero-section--banner .page-hero-subheading {
  text-shadow: 0 1px 12px rgba(0,0,0,0.3);
}

.page-hero-subheading p {
  margin: 0;
}

@media screen and (max-width: 749px) {
  .page-hero-section {
    padding: 40px 20px;
  }
  .page-hero-section--banner {
    min-height: 240px;
    padding: 48px 20px;
  }
  .page-hero-heading {
    font-size: 30px;
  }
  .page-hero-subheading {
    font-size: 15px;
  }
}
/* END_SECTION:page-hero-section */
/* START_SECTION:section-botanicals (INDEX:118) */
.botanicals-section {
  background: var(--bot-bg, #FFFFFF);
  padding: 64px 0;
}

.botanicals-container {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 24px;
}

.botanicals-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 40px;
}

.botanicals-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bot-accent, #7B3FE4);
  margin: 0 0 12px;
}

.botanicals-heading {
  font-size: 30px;
  font-weight: 700;
  color: var(--bot-title-color, #1A1A1A);
  margin: 0 0 14px;
  line-height: 1.25;
}

.botanicals-subheading {
  font-size: 15px;
  line-height: 1.6;
  color: var(--bot-text-color, #7A7A7A);
  margin: 0;
}

.botanicals-subheading p {
  margin: 0;
}

.botanicals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 28px;
}

.botanical-card {
  display: flex;
  flex-direction: column;
   background: var(--bot-card-bg, #FFFFFF);
   border:1px solid #e2e7eb;
border-radius:15px;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.botanical-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 44px rgb(242, 248, 255);
}

.botanical-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
border-radius:15px 15px 0px 0px;  overflow: hidden;
  background: #eee;
  margin-bottom: 16px;
}

.botanical-image img,
.botanical-image .placeholder-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.botanical-badge {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: var(--bot-badge-bg, rgba(20, 20, 20, 0.55));
  color: var(--bot-badge-color, #FFFFFF);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(2px);
}

.botanical-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--bot-title-color, #1A1A1A);
  margin: 0 0 2px;
}

.botanical-latin {
  font-size: 13px;
  font-style: italic;
  color: var(--bot-text-color, #9a9a9a);
  margin: 0 0 12px;
}

.botanical-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.botanical-benefits li {
  position: relative;
  padding-left: 20px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--bot-text-color, #6b6b6b);
}

.botanical-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--bot-accent, #7B3FE4);
  border-bottom: 2px solid var(--bot-accent, #7B3FE4);
  transform: rotate(-45deg);
}

.botanical-found-in {
  margin: 14px 0 0;
  font-size: 12.5px;
  color: var(--bot-text-color, #9a9a9a);
}

.botanical-found-in a,
.botanical-found-in span {
  color: var(--bot-accent, #7B3FE4);
  font-weight: 700;
  text-decoration: none;
}

.botanical-found-in a:hover {
  text-decoration: underline;
}

.botanicals-cta {
  text-align: center;
  margin: 0 0 40px;
}

.botanicals-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bot-card-bg, #FFFFFF);
  color: var(--bot-accent, #7B3FE4);
  border: 1.5px solid var(--bot-accent, #7B3FE4);
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.botanicals-cta-btn:hover {
  background: var(--bot-accent, #7B3FE4);
  color: #FFFFFF;
}

.botanicals-inci {
  margin: 0 auto;
  border: 1px solid #e5e0f0;
  border-radius: 10px;
  overflow: hidden;
}

.botanicals-inci-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--bot-title-color, #1A1A1A);
}

.botanicals-inci-summary::-webkit-details-marker {
  display: none;
}

.botanicals-inci-icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.botanicals-inci-icon::before,
.botanicals-inci-icon::after {
  content: "";
  position: absolute;
  background: var(--bot-accent, #7B3FE4);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.botanicals-inci-icon::before {
  width: 14px;
  height: 2px;
}

.botanicals-inci-icon::after {
  width: 2px;
  height: 14px;
  transition: transform 0.2s ease;
}

.botanicals-inci[open] .botanicals-inci-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.botanical-content{padding:0px 20px 20px 20px;}


.botanicals-inci-content {
  padding: 0 24px 22px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--bot-text-color, #6b6b6b);
}

.botanicals-inci-content p {
  margin: 0 0 10px;
}

@media screen and (max-width: 989px) {
  .botanicals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 749px) {
  .botanicals-section {
    padding: 48px 0;
  }
  .botanicals-heading {
    font-size: 24px;
  }
  .botanicals-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .botanicals-cta-btn {
    width: 100%;
    justify-content: center;
  }
}
/* END_SECTION:section-botanicals */
/* START_SECTION:standard-section (INDEX:127) */
.standard-section {
  background: var(--std-bg, #F1ECFB);
  padding: 64px 0;
}

.standard-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.standard-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 40px;
}

.standard-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--std-accent, #7B3FE4);
  margin: 0 0 12px;
}

.standard-heading {
  font-size: 32px;
  font-weight: 800;
  color: var(--std-title-color, #1A1A1A);
  margin: 0 0 14px;
  line-height: 1.25;
}

.standard-subheading {
  font-size: 15px;
  line-height: 1.6;
  color: var(--std-text-color, #7A7A7A);
  margin: 0;
}

.standard-subheading p {
  margin: 0;
}

.standard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.standard-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.standard-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--std-icon-bg, #E7DDF7);
  color: var(--std-accent, #7B3FE4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

/* Force outline-only rendering regardless of any theme-level svg styles */
.standard-icon-svg,
.standard-icon-svg * {
  fill: none !important;
  stroke: currentColor !important;
}

.standard-icon-svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

.standard-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.standard-title {
  font-weight: 700;
  font-size: 15.5px;
  color: var(--std-title-color, #1A1A1A);
  margin: 0 0 6px;
}

.standard-subtitle {
  font-size: 13.5px;
  color: var(--std-text-color, #8a8a8a);
  margin: 0;
}

@media screen and (max-width: 749px) {
  .standard-section {
    padding: 48px 0;
  }
  .standard-heading {
    font-size: 24px;
  }
  .standard-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
  }
}
/* END_SECTION:standard-section */
