/** 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:contact-section (INDEX:21) */
.contact-section {
  background: #FFFFFF;
  padding: 64px 0;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-heading {
  font-size: 24px;
  font-weight: 700;
  color: var(--ct-title-color, #1A1A1A);
  margin: 0 0 10px;
}

.contact-subheading {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ct-text-color, #8a8a8a);
  margin: 0 0 28px;
}

.contact-subheading p {
  margin: 0;
}

.contact-photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin: 0 0 24px;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #F7F1FB 0%, #EBDCF7 100%);
}

.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-photo img.contact-photo-contain {
  object-fit: contain;
  object-position: center bottom;
}

.contact-photo-caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(255, 255, 255, 0.94);
  color: #1A1A1A;
  font-size: 12.5px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(20, 10, 40, 0.12);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--ct-border-color, #ECE6F5);
  border-radius: 12px;
  padding: 14px 18px;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ct-icon-bg, #F7F1FB);
  color: var(--ct-accent, #8941BB);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-info-icon svg {
  width: 18px;
  height: 18px;
}

.contact-info-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-info-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--ct-title-color, #1A1A1A);
}

.contact-info-subtitle {
  font-size: 12.5px;
  color: var(--ct-text-color, #9a9a9a);
}

.contact-social-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--ct-title-color, #1A1A1A);
  margin: 0 0 12px;
}

.contact-social-links {
  display: flex;
  gap: 10px;
}

.contact-social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--ct-border-color, #ECE6F5);
  color: var(--ct-accent, #8941BB);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  overflow: hidden;
}

.contact-social-icon svg {
  width: 15px;
  height: 15px;
}

.contact-social-icon img {
  width: 15px;
  height: 15px;
  object-fit: contain;
  display: block;
}

.contact-form-card {
  background: var(--ct-card-bg, #FFFFFF);
  border: 1px solid var(--ct-border-color, #ECE6F5);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(20, 10, 40, 0.06);
  padding: 32px;
}

.contact-form-heading {
  font-size: 19px;
  font-weight: 700;
  color: var(--ct-title-color, #1A1A1A);
  margin: 0 0 6px;
}

.contact-form-subheading {
  font-size: 13.5px;
  color: var(--ct-text-color, #8a8a8a);
  margin: 0 0 22px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form-field {
  margin-bottom: 18px;
}

.contact-form-field label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ct-title-color, #1A1A1A);
  margin-bottom: 6px;
}

.contact-form-field input,
.contact-form-field select,
.contact-form-field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--ct-border-color, #E2DCF0);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--ct-title-color, #1A1A1A);
  background: #FFFFFF;
}

.contact-form-field input:focus,
.contact-form-field select:focus,
.contact-form-field textarea:focus {
  outline: none;
  border-color: var(--ct-accent, #8941BB);
}

.contact-form-field textarea {
  resize: vertical;
}

.contact-form-submit {
  width: 100%;
  border: none;
  cursor: pointer;
  background: var(--ct-accent, #8941BB);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14.5px;
  border-radius: 12px;
  padding: 14px;
  transition: opacity 0.15s ease;
}

.contact-form-submit:hover {
  opacity: 0.88;
}

.contact-form-message {
  margin: 0 0 18px;
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 8px;
}

.contact-form-message--success {
  color: #1f7a44;
  background: #EAF7EF;
}

.contact-form-message--error {
  color: #b3261e;
  background: #FBEAEA;
}

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

@media screen and (max-width: 480px) {
  .contact-form-row {
    grid-template-columns: 1fr;
  }
}

#shopify-section-template--21624718721255__breadcrumb_trail_EhjhFM{padding-bottom:30px!important;}
/* END_SECTION:contact-section */
/* START_SECTION:faq-section (INDEX:29) */
.faq-section {
  background: var(--faq-bg, #F1ECFB);
  padding: 64px 0;
}

.faq-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-header {
  text-align: center;
  margin: 0 auto 36px;
}

.faq-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faq-accent, #7B3FE4);
  margin: 0 0 12px;
}

.faq-heading {
  font-size: 30px;
  font-weight: 700;
  color: var(--faq-title-color, #1A1A1A);
  margin: 0 0 12px;
  line-height: 1.25;
}

.faq-subheading {
  font-size: 15px;
  line-height: 1.6;
  color: var(--faq-text-color, #8a8a8a);
  margin: 0;
}

.faq-subheading p {
  margin: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--faq-card-bg, #FFFFFF);
  border: 1.5px solid var(--faq-border-color, #FFFFFF);
  border-radius: 12px;
  padding: 4px 22px;
  transition: border-color 0.15s ease;
}

.faq-item[open] {
  border-color: var(--faq-accent, #7B3FE4);
}

.faq-question {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--faq-title-color, #1A1A1A);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--faq-accent-soft, #ECE4FB);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--faq-accent, #7B3FE4);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, background 0.15s ease;
}

.faq-icon::before {
  width: 10px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 10px;
}

.faq-item[open] .faq-icon {
  background: var(--faq-accent, #7B3FE4);
}

.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after {
  background: #FFFFFF;
}

.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-icon::before {
  transform: translate(-50%, -50%) rotate(180deg);
}

.faq-answer {
  padding: 0 0 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--faq-text-color, #8a8a8a);
}

.faq-answer p {
  margin: 0;
}

.faq-cta {
  text-align: center;
  margin-top: 28px;
}

.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--faq-card-bg, #FFFFFF);
  color: var(--faq-accent, #7B3FE4);
  border: 1.5px solid var(--faq-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;
}

.faq-cta-btn:hover {
  background: var(--faq-accent, #7B3FE4);
  color: #FFFFFF;
}

@media screen and (max-width: 749px) {
  .faq-section {
    padding: 48px 0;
  }
  .faq-heading {
    font-size: 22px;
  }
  .faq-question {
    font-size: 14px;
  }
  .faq-cta-btn {
    width: 100%;
    justify-content: center;
  }
}
/* END_SECTION:faq-section */
/* 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 */
