/** Shopify CDN: Minification failed

Line 1080:23 The "+" operator only works if there is whitespace on both sides

**/
/* ── Slider shell ─────────────────────────────────────────── */
.hero-slider {
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* ── Swiper internals ─────────────────────────────────────── */
.hero-slider .swiper-wrapper,
.hero-slider .swiper-slide {
  width: 100%;
}

.hero-slider .swiper-slide {
  position: relative;
}

/* ── Images — natural size, full width ────────────────────── */
.hero-slide-img {
  display: block;
  width: 100%;
  height: auto;
}

/* ── Responsive image switching ──────────────────────────── */
.hero-slide-img--mobile  { display: none; }
.hero-slide-img--desktop { display: block; }

@media (max-width: 767px) {
  .hero-slide-img--mobile  { display: block; }
  .hero-slide-img--desktop { display: none;  }
}

/* ── Content overlay ──────────────────────────────────────── */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 2;
  width: 90%;
  pointer-events: none;
}

.hero-content a,
.hero-content button {
  pointer-events: auto;
}

.hero-content h2 {
  margin: 0 0 8px;
  font-size: 2rem;
  text-shadow: 0 2px 6px rgba(0,0,0,.45);
}

.hero-content p {
  margin: 0 0 12px;
  text-shadow: 0 1px 4px rgba(0,0,0,.40);
}

.hero-btn {
  display: inline-block;
  padding: 10px 24px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 2px;
  pointer-events: auto;
}

.hero-btn:hover {
  background: #333;
}

/* ── Pagination dots ──────────────────────────────────────── */
.hero-slider .swiper-pagination {
  position: absolute;
  bottom: 20px !important;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.hero-slider .swiper-pagination-bullet-active {
  background: #fff;
}

/* =============================================================
   PHN DRAWER – Mobile Menu Styles
   File: assets/phn-drawer.css
   Prefix: phn-  (avoids conflicts with Shopify Dawn theme)
   ============================================================= */

/* ── Hamburger / Close Icon Toggle ──────────────────────────── */

/* Close (X) icon: hidden when drawer is closed */
.dt-icon-menu_drawer_close {
  display: none;
}

/* Hamburger icon: visible when drawer is closed */
.dt-icon-menu-drawer_open {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* When the details element is open — swap icons */
details#Details-menu-drawer-container[open] .dt-icon-menu-drawer_open {
  display: none;
}

details#Details-menu-drawer-container[open] .dt-icon-menu_drawer_close {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Mobile Hamburger Container ──────────────────────────────── */
.dt-mobile_hamburger {
  display: flex;
  align-items: center;
  margin-left: 16px;
}

/* Hide hamburger wrapper on desktop (≥990px) when not drawer mode */
@media screen and (min-width: 990px) {
  .dt-mobile_hamburger {
    display: none;
  }
}

/* Ensure the summary button is properly sized and tappable */
.header__icon--summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}

.header__icon--summary > span {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Prevent SVG icons from inheriting wrong display ─────────── */
.dt-icon-menu-drawer_open svg,
.dt-icon-menu_drawer_close svg {
  display: block;
  width: 20px;
  height: 20px;
}

/* ── Shop By Static Section ─────────────────────────────────── */
.phn-shop-by-section {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  background: #F2F2F2;
}

.phn-shop-by-header {
  padding: 10px 20px 0px 10px;
  background: #F2F2F2;
}

.phn-shop-by-title {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── Tab Container ───────────────────────────────────────────── */
.phn-tab-container {
  padding: 10px;
}

/* ── Tabs Navigation – Horizontal Scroll ────────────────────── */
.phn-tabs-nav {
  display: flex;
  gap: 8px;
  overflow-x: scroll;
  overflow-y: hidden;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  margin-bottom: 10px;
  padding: 5px 5px 15px 5px;
  scroll-snap-type: x proximity;
}

.phn-tabs-nav::-webkit-scrollbar        { height: 4px; }
.phn-tabs-nav::-webkit-scrollbar-track  { background: #f1f1f1; border-radius: 10px; }
.phn-tabs-nav::-webkit-scrollbar-thumb  { background: #ccc;    border-radius: 10px; }
.phn-tabs-nav::-webkit-scrollbar-thumb:hover { background: #999; }

/* ── Tab Button ──────────────────────────────────────────────── */
.phn-tab-btn {
  position: relative;
  flex-shrink: 0;
  padding: 10px 20px;
  background: #F5F5F5;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  touch-action: manipulation;
  scroll-snap-align: start;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0px 10px 6px -4px #10182814;
  opacity: 0.5;
}

.phn-tab-btn.active {
  background: #fff;
  color: #000;
  transform: scale(1.05);
  opacity: 1;
}

.phn-tab-btn span {
  position: absolute;
  bottom: -10px;
  left: 10px;
}

/* ── Tab Content Wrapper ─────────────────────────────────────── */
.phn-tabs-content {
  position: relative;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.phn-tabs-content::-webkit-scrollbar        { width: 4px; }
.phn-tabs-content::-webkit-scrollbar-track  { background: #f1f1f1; border-radius: 10px; }
.phn-tabs-content::-webkit-scrollbar-thumb  { background: #ccc;    border-radius: 10px; }
.phn-tabs-content::-webkit-scrollbar-thumb:hover { background: #999; }

/* ── Tab Panels ──────────────────────────────────────────────── */
.phn-tab-panel {
  display: none;
  opacity: 0;
  transform: translateX(20px);
}

.phn-tab-panel.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
  animation: phnSlideIn 0.4s ease;
}

@keyframes phnSlideIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Mobile Product Grid ─────────────────────────────────────── */
.phn-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.phn-product-card {
  display: flex;
  gap: 6px;
  padding: 6px;
  text-decoration: none;
  border: 1px solid #F0F0F0;
  transition: background 0.2s ease;
  box-shadow: 0px 0px 4px 0px #0000000F;
  border-radius: 6px;
  background: #ffffff;
}

.phn-product-card:last-child { border-bottom: none; }
.phn-product-card:active      { background: #F9F9F9; }

.phn-product-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}

.phn-product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.phn-product-info h3 {
  color: #000;
  margin: 0;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
}

.phn-product-info p {
  color: #666;
  margin: 0;
  font-weight: 400;
  font-size: 10px;
  line-height: 14px;
}

/* ── Mobile Concern Grid ─────────────────────────────────────── */
.phn-concern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.phn-concern-card {
  position: relative;
  display: block;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  transition: transform 0.2s ease;
}

.phn-concern-card:active { transform: scale(0.98); }

.phn-concern-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.phn-concern-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.phn-concern-overlay h3 {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}

.phn-concern-overlay span {
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media screen and (max-width: 480px) {
  .phn-product-card img {
    width: 50px;
    height: 50px;
  }

  .phn-tab-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}

/* =============================================================
   PHN MEGA MENU – Desktop Navigation Styles
   File: assets/phn-mega.css
   Prefix: phn-  (avoids conflicts with Shopify Dawn theme)
   ============================================================= */

/* ── Summary: hover-driven, no pointer cursor ────────────────── */
details.mega-menu > summary {
  cursor: default;
}

/* ── Mega Menu Layout ────────────────────────────────────────── */
.phn-mega-container {
  display: flex;
  gap: 30px;
  padding: 20px;
}

/* ── Sidebar ─────────────────────────────────────────────────── */
.phn-mega-sidebar {
  width: 170px;
}

.phn-mega-tab-link {
  display: block;
  padding: 10px !important;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0px;
  transition: background 0.2s ease;
}

.phn-mega-tab-link.active {
  font-weight: 600;
  background: #F5F5F5;
}

/* ── Tab Content Area ────────────────────────────────────────── */
.phn-mega-content {
  flex: 1;
}

.phn-mega-tab {
  display: none;
}

.phn-mega-tab.active {
  display: block;
}

/* ── Collection Flex Layout ──────────────────────────────────── */
.phn-collection-flex {
  display: flex;
  gap: 20px;
}

.phn-collection-col {
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}

.phn-col-sep {
  border-left: 0.5px solid #0000001A;
}

/* ── Product Card ────────────────────────────────────────────── */
.phn-prod-card {
  position: relative;
  background: #fff;
  border-radius: 0;
  padding: 6px;
  display: flex;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
}

.phn-prod-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10px;
  right: 10px;
  height: 1px;
  background: rgba(0,0,0,0.1);
  width: 80%;
  margin: auto;
}

.phn-prod-card.phn-last-item::after {
  content: none;
}

.phn-prod-details {
  display: flex;
  gap: 10px;
  pointer-events: none;
}

.phn-prod-img-wrap img {
  width: 80px;
  object-fit: contain;
  border-radius: 7px;
}

.phn-prod-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #000;
  margin: 0;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
  text-decoration-thickness: 0.5px;
}

.phn-prod-desc {
  font-size: 12px;
  color: #5c6873;
  margin: 0;
  line-height: 16px;
  font-weight: 300;
  overflow: hidden;
}

/* ── Concern Card ────────────────────────────────────────────── */
.phn-concern-card-desk {
  position: relative;
  display: block;
  text-decoration: none;
  background: #fff;
  padding: 0 0 7px 0;
  transition: all 0.3s ease;
  flex: 1;
  cursor: pointer;
}

.phn-concern-card-desk::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10px;
  right: 10px;
  height: 1px;
  background: rgba(0,0,0,0.1);
  width: 80%;
  margin: auto;
}

.phn-concern-card-desk.phn-last-item::after {
  content: none;
}

.phn-concern-card-desk:hover {
  background: #f9f9f9;
}

.phn-concern-details {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: none;
}

.phn-concern-img {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.phn-concern-caption {
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: 10px;
}

.phn-concern-caption h2 {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
  color: #fff;
  margin: 0;
  white-space: nowrap;
}

.phn-concern-caption span path {
  fill: #fff;
}

/* ── Banner Column ───────────────────────────────────────────── */
.phn-collection-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.phn-collection-right .phn-banner-img {
  width: 100%;
  height: auto;
}

.phn-banner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  min-height: 100%;
}

.phn-banner-img {
  width: 100%;
  height: auto;
}

.menu-drawer__navigation-container-banner img {
  width: 100%;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media screen and (max-width: 1024px) {
  .phn-collection-flex {
    flex-direction: column;
  }

  .phn-col-sep {
    display: none;
  }
}

/* ==========================================================
   Tab Featured Collection — shared base styles
   Namespace: .tabs-fc__*  (BEM, unique to this component)
   ========================================================== */
.tabs-fc__heading {
  margin-bottom: 1rem;
  text-align: center;
}
.tabs-fc__desc {
  margin-bottom: 1.5rem;
  text-align: center;
}

/* ── Tab nav ─────────────────────────────────────────────── */
.tabs-fc__nav {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-bottom: 2rem;
  scroll-behavior: smooth;
}
.tabs-fc__nav::-webkit-scrollbar {
  display: none;
}

.tabs-fc__btn {
  flex-shrink: 0;
  padding: 0px;
  border: none;
  border-bottom: 2px solid transparent;
  background: none;
  color: #616161;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.5;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease, font-size 0.25s ease;
  white-space: nowrap;
}
.tabs-fc__btn:focus-visible {
  outline: 2px solid #00a790;
  outline-offset: 2px;
  border-radius: 2px;
}
.tabs-fc__btn.is-active {
  border-bottom-color: #00a790;
  color: #00a790;
  font-size: 1.6rem;
}

/* ── Tab panels ──────────────────────────────────────────── */
.tabs-fc__panel {
  display: none;
}
.tabs-fc__panel.is-active {
  display: block;
}

/* ── Product grid ────────────────────────────────────────── */
.tabs-fc__grid {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ── Card sizing ─────────────────────────────────────────── */
.tabs-fc__item,
.tabs-fc__aside {
  display: flex;
  flex-direction: column;
}
.tabs-fc__item .card-wrapper,
.tabs-fc__aside .card-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  margin: auto;
  flex-direction: column;
}
.tabs-fc__item .card,
.tabs-fc__aside .card {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* ── Aside card — full-cover image, no stretching ────────── */
.tabs-fc__aside .card {
  position: relative;
  overflow: hidden;
  /* min-height: 220px; */
}
@media screen and (min-width: 750px) {
  .tabs-fc__aside .card { min-height: 280px; }
}
@media screen and (min-width: 990px) {
  .tabs-fc__aside .card { min-height: 340px; }
}
.tabs-fc__aside-link {
  position: absolute;
  inset: 0;
  display: block;
}
.tabs-fc__aside-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ─────────────────────────────────────────────
   DT Global Section Header  (dt-section-header)
   Customise per-section via CSS custom properties
   set as inline style on .dt-section-header
───────────────────────────────────────────────── */
.dt-section-header {
  text-align: center;
}

/* ── Main Heading ── */
.dt-section-heading {
  font-weight: 700;
  margin: 0 0 8px;
  font-size: clamp(20px, 5vw, var(--dt-heading-size, 32px));
  color: var(--dt-heading-color, #333);
}

/* Optional underline bar below heading */
.dt-section-heading--underline {
  position: relative;
  padding-bottom: 14px;
}
.dt-section-heading--underline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width:  var(--dt-underline-width,  80px);
  height: var(--dt-underline-height, 2px);
  background:    var(--dt-underline-color, #c16c2c);
  border-radius: 99px;
}

/* ── Sub-heading row ── */
.dt-section-subheading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  margin: 0;
  font-size: var(--dt-subheading-size, 16px);
}

/* Decorative lines on left & right */
.dt-section-subheading::before,
.dt-section-subheading::after {
  content: '';
  flex: 1;
  height:     var(--dt-line-height, 1.5px);
  background: var(--dt-line-color,  #c16c2c);
  border-radius: 99px;
}

.dt-sub-left  { color: var(--dt-sub-left-color,  #7d868c); white-space: nowrap; }
.dt-sub-right { color: var(--dt-sub-right-color, #c16c2c); white-space: nowrap; }

/* =============================================================
   DT FEATURED PRODUCT SECTION
   File: assets/dt-featured-product.css
   Scope: .dt-featureds-colection-section
   ============================================================= */

/* ── Section Header ──────────────────────────────────────────── */
.dt-featureds-colection-section .testimonial-essentials-header {
  margin-bottom: 3rem;
}

.dt-featureds-colection-section .testimonial-essentials-title {
  font-weight: 800;
  margin-bottom: 0.5rem;
  position: relative;
}

/* Title underline bar (toggled via section setting) */
.dt-featureds-colection-section .testimonial-essentials-title.has-underline::after {
  content: '';
  position: absolute;
  bottom: -10px;
  width: 80px;
  height: 4px;
  background: #00B798;
  border-radius: 2px;
}

/* Underline alignment variants */
.dt-featureds-colection-section .testimonial-essentials-header.text-left   .testimonial-essentials-title.has-underline::after { left: 40px; }
.dt-featureds-colection-section .testimonial-essentials-header.text-center  .testimonial-essentials-title.has-underline::after { left: 50%; transform: translateX(-50%); }
.dt-featureds-colection-section .testimonial-essentials-header.text-right   .testimonial-essentials-title.has-underline::after { right: 0; }

/* ── Mobile Slider Wrapper ───────────────────────────────────── */
.dt-mobile-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

/* ── Scrollable Track ────────────────────────────────────────── */
.dt-mobile-slider__track {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.dt-mobile-slider__track::-webkit-scrollbar {
  display: none;
}

/* ── Individual Slides ───────────────────────────────────────── */
.dt-mobile-slider__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.dt-mobile-slider__slide img,
.dt-mobile-slider__slide video {
  width: 100%;
  height: 100%;
  max-height: fit-content;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* ── Prev / Next Arrows ──────────────────────────────────────── */
.dt-mobile-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  color: #111;
  transition: background 0.2s ease;
  padding: 0;
  line-height: 0;
}

.dt-mobile-slider__arrow:hover {
  background: #fff;
}

.dt-mobile-slider__arrow--prev { left: 10px; }
.dt-mobile-slider__arrow--next { right: 10px; }

/* ── Dot Indicators ──────────────────────────────────────────── */
.dt-mobile-slider__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 0 2px;
}

.dt-mobile-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}

.dt-mobile-slider__dot.active {
  background: #00B798;
  transform: scale(1.4);
}

/* ── Desktop / Mobile Gallery Visibility ────────────────────── */
/* Default: desktop visible, mobile hidden */
[class*="dt-media-gallery-desktop--"] { display: block; }
[class*="dt-media-gallery-mobile--"]  { display: none;  }

@media (max-width: 749px) {
  [class*="dt-media-gallery-desktop--"] { display: none;  }
  [class*="dt-media-gallery-mobile--"]  { display: block; }

  /* Prevent the quantity-selector / buy-buttons stack from
     collapsing its spacing on narrow (iPhone-width) viewports */
  .dt-featureds-colection-section .product__info-container > * + * {
    margin-top: 1rem;
  }

  .dt-featureds-colection-section .product-form__quantity,
  .dt-featureds-colection-section .product-form__buttons {
    width: 100%;
  }
}
/* Global / Product Page / Card Styles (deduplicated & merged) */
/* .dt-product_info-mobile {
  display: none!important;
} */
.custom-product_title-desktop {
  margin: 0!important;
}
.page-width-dt .product__title h1 {
  letter-spacing: 0;
}
.custom-product_page button.slider-button.slider-button--next,
.custom-product_page button.slider-button.slider-button--prev {
  position: absolute;
  z-index: 0;
  background: #fff;
  border-radius: 50%;
  width: 26px;
  border: 1px solid #0000001A;
  box-shadow: 0 0 4px 0 #0000000D;
}
.custom-product_page button.slider-button.slider-button--next {
  right: 0;
}
button.thumbnail.global-media-settings.global-media-settings--no-shadow {
  outline: 0;
}
.product-badge {
  color: #060606;
  font-weight: 400;
  font-size: calc(10px + (14 - 10) * (100vw - 375px) / (1440 - 375));
  background: #e6e6e6;
  padding: 4px 10px;
  border-radius: 4px;
}
.dt-product_info-type {
  color: #00a790;
  font-size: calc(12px + (14 - 12) * (100vw - 375px) / (1440 - 375));
  line-height: 100%;
  font-weight: 100;
}
.dt-product_info-product-badge {
  max-width: 100px;
}
.custom-product_page .product__media-item {
  margin: 0!important;
}
@media only screen and (max-width: 750px) {
  .page-width-dt {
    padding: 0;
  }
  .product-media-container {
    width: 96%!important;
  }
  .dt-product_info-type, .product-badge {
    margin: 0;
  }
}
.dt-product-tag_badges {
  color: #060606;
  font-weight: 400;
  font-size: 12px;
  background: #e6e6e6;
  padding: 4px 10px;
  border-radius: 4px;
}
.product-card-wrapper .card__heading {
  font-weight: 433;
  font-size: calc(14px + (16 - 14) * (100vw - 375px) / (1440 - 375));
  letter-spacing: 0;
  color: #212121;
  text-decoration: none!important;
}
.card-wrapper .card__information span.price-item.price-item--sale.price-item--last {
  font-weight: 700;
  font-size: calc(14px + (18 - 14) * (100vw - 375px) / (1440 - 375));
  line-height: 28px;
  color: #376c00;
}
.card-wrapper .card__information .price__regular {
  font-weight: 700;
  font-size: calc(12px + (16 - 12) * (100vw - 375px) / (1440 - 375));
  line-height: 30.03px;
}
.card-information .price__container s.price-item.price-item--regular {
  font-weight: 300;
  font-size: calc(12px + (16 - 12) * (100vw - 375px) / (1440 - 375));
  line-height: 30.03px;
  color: #363a33;
}
.card-information .price__regular .price-item--regular {
  font-weight: 700;
  font-size: calc(16px + (18 - 16) * (100vw - 375px) / (1440 - 375));
  line-height: 28px;
}
.card-information .price {
  margin-top: 0!important;
  letter-spacing: -.6px!important;
}
.page-width-desktop {
  padding-right: 0;
}
.card__content .dt-card-product_info-type {
  font-size: calc(10px + (12 - 10) * (100vw - 375px) / (1440 - 375));
  margin-top: 4px;
  margin-bottom: 4px;
  text-decoration: underline;
  display: block;
  color: #555;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}
.quick-add__submit {
  font-weight: 600;
  font-size: calc(14px +(16 - 12) * (100vw - 375px) / (1440 - 375));
  color: #fff;
  letter-spacing: 0;
   min-height: auto;
}
.price__sale-product-discount {
  color: #f04438;
  font-weight: 433;
  font-size: calc(10px + (16 - 10) * (100vw - 375px) / (1440 - 375));
  line-height: 30.03px;
}
.dt-card_product-badge {
  color: #424242;
  font-weight: 400;
  font-size: calc(8px + (12 - 8) * (100vw - 375px) / (1440 - 375));
  background: #f5f5f5;
  padding: 2px 5px 1px;
  border-radius: 4px;
  margin: 2px 0;
  letter-spacing: 0;
}
.dt-card-product_info {
  width: 100%;
  margin: auto 0;
}
.card-wrapper .card__information .card-information {
  margin-bottom: calc(6px + (12 - 10) * (100vw - 375px) / (1440 - 375));
  padding-left: 0;
  padding-right: 0;
  border-bottom: 1px solid #e2e3e6;
}
.collection__title h2.title.inline-richtext.h2.scroll-trigger.animate--slide-in {
  font-weight: 700;
  font-size: 28px;
  line-height: 35px;
  margin: 0;
}
.card-wrapper .card.card--card.card--media.color-scheme-f8c3ca2d-73a8-4715-a2d8-22bc74197f7c.gradient {
  border-radius: 5px;
}
.quick-add-drawer .dt-variant-main {
  margin-bottom: 70px;
}
.product__media img {
  object-fit: contain;
}
.article-card {
  border-radius: 16px!important;
  border: 1px solid #0000001A;
}
.article-card__image-wrapper {
  border-radius: 16px 16px 0 0!important;
}
.dt-product-tabs_main .metafield-rich_text_field h4::after,
.nbdt-ingredient-name::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 30px;
  height: 2px;
  background: #00b798;
  border-radius: 2px;
}
.dt-product-tabs_main .metafield-rich_text_field p {
  padding-top: 10px;
}
.swiper-slide.hero-slide.swiper-slide-active {
  padding: 0;
}
.tabs-featured-collection .tab-panels .swiper-wrapper .card.card--card.card--media.color-scheme-1.gradient {
  border-radius: 12px;
}
.quick-add-modal__content {
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, .02) 0 1px 3px 0, rgba(27, 31, 35, .15) 0 0 0 1px;
}
.quick-add-modal__content .custom-product_title-desktop .h1 {
  font-size: 20px!important;
}
.quick-add-modal__content .dt-main-product-page {
  margin: 10px;
}
@media screen and (max-width: 749px) {
  .content-container--full-width-mobile {
    border-left: none;
    border-right: none;
    border-radius: 0;
  }
  .content-container--full-width-mobile:after {
    display: none;
  }
  .slider-buttons {
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 100px;
  }
  .facets-container .product-count {
    display: none!important;
  }
  .quick-add-drawer .dt-product_qty-adc {
    background: #fff;
    position: fixed;
    bottom: 36px;
  }
  .quick-add-modal__content .product-form__quantity {
    position: fixed;
    bottom: 0;
    background: #f3f3f3;
    padding: 12px;
    left: 0;
    z-index: 99;
  }
  .quick-add-modal__content .product__info-wrapper {
    margin-bottom: 80px;
  }
}
@media screen and (min-width: 749px) {
  .quick-add-modal .promo-banner-slider-wrapper {
    display: none;
  }
.product-form__buttons {
  width: 100% !important;
}
}
.featured-product .product__title {
  font-size: calc(20px + (30 - 20) * (100vw - 375px) / (1440 - 375));
  margin: 5px 0;
  letter-spacing: 0;
  font-weight: 600;
}
.dt-featureds-colection-section .shopify-payment-button__button {
  display: none;
}
.card.card--card.card--media.color-scheme-1.gradient {
  background: #fff;
}
.dt-judgeme-nb {
  display: flex!important;
  align-items: center;
  gap: 6px;
  position: absolute;
  right: 8px;
  bottom: 0;
  font-size: 10px;
  padding: 4px;
  border-radius: 6px;
  background: linear-gradient(159.57deg, rgba(245, 245, 245, .8) 7.27%, rgba(255, 255, 255, .8) 85.78%);
  border: .48px solid #fff;
  box-shadow: 0 2.9px 4.83px 0 #4c4C4C1A;
}
.card-wrapper .jdgm-widget.jdgm-widget {
  z-index: 1;
}
.jdgm-preview-badge .jdgm-star.jdgm-star {
  color: #4caf50;
  font-family: JudgemeStar!important;
}
.dt-judgeme-nb .jdgm-prev-badge__stars {
  display: inline-block!important;
}
.dt-judgeme-nb-star {
  color: #4caf50;
  display: none!important;
}
.quick-add-modal__content-info .product__title .h1 {
  line-height: 30px;
  font-size: 20px;
  letter-spacing: 0;
}
.quick-add-modal__content-info .dt-product_info {
  margin: 0 0 10px;
}
.quick-add-modal__content-info .mobile-pagination-dots {
  display: none;
}
.mobile-facets__arrow svg {
  width: 18px;
}
.mobile-facets__arrow path {
  fill: #4A5763;
  width: 18px;
}
.mobile-facets__close-button path {
  fill: #4A5763;
}
.facets-vertical-sort {
  margin: 10px 0;
}
.facet-filters__label svg {
  padding-top: 4px;
}
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 3em;
}
.dt-sticky-atc .price__sale-product-discount{
  display: none !important;
}
@media (max-width: 768px) {
  .dt-sticky-atc {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    background: #fff;
    display: none;
    box-shadow: 0 -4px 12px #00000026;
    padding: 10px!important;
    margin: 0!important;
  }
  .dt-sticky-atc.show {
    display: block;
  }
  .dt-sticky-atc.hide {
    display: none;
  }
}
.dt-variant_option_container {
  padding: 0 6px;
}
.dt-variant-price-wrapper {
  display: flex;
  margin: 0;
  gap: 8px;
  align-items: center;
}
.dt-variant_option .variant-discount {
  color: #e03131!important;
  margin: 4px 0;
  font-weight: 600;
  font-size: 10px;
}
.dt-variant_option .variant-compare s {
  color: #888!important;
}
.dt-variant-unit-discount {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin: 4px 0;
  justify-content: space-between;
}
.variant-badge-svg {
  position: absolute;
  top: -16px;
  right: 20px;
}
.variant-badge-svg_content {
  font-size: 8px;
  position: absolute;
  top: 16px;
  left: 16%;
  color: #fff;
}
.dt-buy-button_container {
  width: 100%;
}
body.popup-open,
html.popup-open {
  overflow: hidden;
  height: 100%;
}
.product-form__input {
  display: flex!important;
  align-items: flex-start;
  gap: 8px;
}
.dt-qty-adc {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.dt-qty-adc .product-form__quantity {
  flex: 0 0 auto;
}
.dt-qty-adc .product-form__buttons {
  flex: 1;
}
.dt-product_qty-adc_price {
  max-width: 160px;
  width: 33%;
}
.dt-product_qty-adc_price .dt-product_qty-adc_price-qty {
  width: 100%;
  background: #f8f8f8;
  display: flex;
  align-items: center;
}
.mobile-pagination-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 30%;
  margin: 5px auto;
  background: rgba(247, 247, 247, .8);
  padding: 5px;
  border-radius: 18px;
}
.mobile-pagination-dots .dot {
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background .3s;
}
.mobile-pagination-dots .dot.active {
  background: #46857c;
}
.featured-product .slider-buttons {
  gap: 4px;
}
.featured-product .slider-button {
  background: #fff;
  border-radius: 50px;
}
.page-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
}
.page-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color .3s, transform .3s;
}
.page-dots button.active {
  background-color: #ff4d4f;
  transform: scale(1.3);
}
@media screen and (max-width: 750px) {
  .custom-product_title-desktop {
    display: none!important;
    margin: 0!important;
  }
  .dt-product_info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 6px;
    align-items: center;
  }
  .dt-product_qty-adc .product-form__input {
    margin: 0 10px!important;
  }
  .dt-qty-adc .product-form__buttons {
  width: 33%;
}
}
@media screen and (min-width: 750px) {
  .search-modal__close-button {
    right: 1rem;
  }
  .search-modal__content {
    padding: 0 6rem;
  }
  .overflow-hidden-mobile {
    overflow: auto;
  }
  .rte table td {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  .mobile-pagination-dots {
    display: none!important;
  }
  .custom-product_title-mobile {
    display: none;
  }
  .dt-product_info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0!important;
  }
  .hxl {
    font-size: calc(var(--font-heading-scale) * 6.2rem);
  }
  .h0 {
    font-size: calc(var(--font-heading-scale) * 5.2rem);
  }
  .h1, h1 {
    font-size: calc(var(--font-heading-scale) * 4rem);
  }
  .h2, h2 {
    font-size: calc(var(--font-heading-scale) * 2.4rem);
  }
  .h3, h3 {
    font-size: calc(var(--font-heading-scale) * 1.8rem);
  }
  .h5, h5 {
    font-size: calc(var(--font-heading-scale) * 1.3rem);
  }
  .dt-product_info-mobile {
    display: none!important;
  }
  .custom-product_title-desktop {
    margin: 0!important;
  }
  .page-width-dt .product__title h1 {
    letter-spacing: 0;
  }
}
.product-form__input--pill input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.product-form__input--pill input[type=radio]:checked+label {
  background: #f7fff9!important;
}
.product-form__input--pill input[type=radio]:checked+label.dt-variant_option {
  border: 1px solid #088f7c!important;
  box-shadow: 0 4px 6px -1px #0000001A;
}
.product-form__input--pill .dt-option_value,
.product-form__input--pill input[type=radio]:checked+label .dt-option_value {
  padding: 8px 0;
  border-radius: 6px 6px 0 0;
  border-bottom: 1px dotted #d6cbcb;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  margin: 0;
}
.product-form__input--pill input[type=radio]:checked+label .dt-option_value {
  color: #374151;
}
.product-form__input--pill input[type=radio]:checked+label .variant-badge {
  background: #efefef!important;
}
.product-form__input--pill .dt-option_value {
  line-height: 16px;
}
.product-form__input--pill .dt-variant_option .variant-badge {
  text-align: center;
  border-radius: 0 0 10px 10px;
  background: #efefef;
  color: #374151;
  padding: 10px;
  font-size: 10px;
  font-weight: 400;
  margin: 0;
  width: 100%;
}
.dt-unit-price {
  margin: 0;
  text-align: left;
}
.dt-variant_option .variant-price {
  color: #376c00;
  font-weight: 800;
  font-size: 14px;
  text-align: left;
  margin: 4px 0;
  line-height: 1;
}
.dt-variant_option_discount-price {
  text-align: left;
  padding-left: 5px;
  font-size: 12px;
}
.dt-variant_option_discount-price .variant-compare {
  color: #727272;
}
.dt-variant_option_discount-price .variant-discount {
  color: #f04438;
}
.dt-variant_option .variant-bestseller {
  position: absolute;
  top: -10px;
  left: 6px;
  right: 6px;
  width: 74%;
  margin: 0 auto;
  border: 1px solid #0000001A;
  background: #bfe9e3;
  padding: 2.5px 6px;
  border-radius: 24px;
  color: #006859;
  font-weight: 500;
  font-size: 8px;
  text-transform: uppercase;
}
.product__info-wrapper .quantity__input {
  width: 20px;
}
.product__title h1 {
  font-weight: 700;
  margin: 6px 0;
  font-size: calc(18px + (38 - 18) * (100vw - 375px) / (1440 - 375));
}
.dt-option-form_label {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin: 0!important;
  display: none;
}
.header {
  padding: 10px!important;
  user-select: none;
}
.page-width-dt {
  padding: 0 2rem;
}
.page-width-dt .slider-button {
  position: absolute;
  background: #fff;
  z-index: 1;
  border-radius: 50%;
  border: 1px solid #0000001A;
  left: 10px;
}
.page-width-dt .slider-button .slider-button--prev {
  top: 80px;
}

/* 
  No header CSS here — all handled by the global dt-section-header snippet.
  Only section-specific layout styles below. */

  /* ── Section shell ── */
  .skin-section {
    position: relative;
    overflow: hidden;
  }
  .skin-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 20% 80%, rgba(255,255,255,0.3) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(255,255,255,0.2) 0%, transparent 50%);
    pointer-events: none;
  }
  .skin-container {
    position: relative;
    z-index: 1;
  }

  /* ── Layout ── */
  .skin-by-shop {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 30px;
  }
  .main-image-container { text-align: center; }
  .main-skin-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
  }

  /* ── Skin-type cards ── */
  .skin-types-slider {
    width: 100%;
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
  }
  .skin-type-box {
    background: white;
    border-radius: 15px;
    text-align: center;
    box-shadow: inset 0 0 0 1.5px #00000033;
    transition: transform 0.3s ease;
    position: relative;
    cursor: pointer;
    scroll-snap-align: start;
    will-change: transform;
  }
  .skin-type-box:hover { transform: translateY(-5px); }
  .skin-type-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
  }
  .skin-type-image {
    width: 100%;
    height: auto;
    border-radius: 14px 14px 0 0;
    object-fit: cover;
    opacity: 0.9;
  }
  .skin-type-title {
    font-size: 1.2rem;
    font-weight: 400;
    color: #333;
    letter-spacing: 1px;
    margin: 0;
    padding: 8px;
  }
  .skin-type-description {
    font-size: 0.85rem;
    color: #666;
    margin: 10px 0 15px;
    line-height: 1.4;
    padding: 0 15px 15px;
  }

  /* ── Mobile track ── */
  .skin-types-track {
    display: flex;
    gap: 20px;
    padding: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .skin-types-track::-webkit-scrollbar { display: none; }
  .skin-type-box { flex: 0 0 auto; width: 160px; }
  .skin-type-image { height: 70px; }

  /* ── Mobile/desktop image toggle ── */
  .skin-type-image.mobile-image  { display: block; }
  .skin-type-image.desktop-image { display: none;  }

  /* ── Desktop (≥750px) ── */
  @media (min-width: 750px) {
    .skin-by-shop {
      flex-direction: row;
      align-items: flex-end;
      gap: 30px;
    }
    .main-image-container { width: 32%; }
    .skin-types-slider {
      width: 68%;
      position: relative;
      bottom: auto;
      left: auto;
      right: auto;
    }
    .skin-types-track {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-auto-rows: auto;
      gap: 8px;
      padding: 0;
      overflow: visible;
      scroll-snap-type: none;
    }
    .main-skin-image { width: 100%; height: auto; }

    /* Row 1 */
    .skin-types-track .skin-type-box:nth-child(1) { grid-area: 1 / 1 / 2 / 2; }
    .skin-types-track .skin-type-box:nth-child(2) { grid-area: 1 / 2 / 2 / 3; }
    .skin-types-track .skin-type-box:nth-child(3) { grid-area: 1 / 3 / 2 / 4; }
    .skin-types-track .skin-type-box:nth-child(4) { grid-area: 1 / 4 / 2 / 5; }
    /* Row 2 — merged */
    .skin-types-track .skin-type-box:nth-child(5) { grid-area: 2 / 1 / 3 / 3; }
    .skin-types-track .skin-type-box:nth-child(6) { grid-area: 2 / 3 / 3 / 5; }
    /* Row 3 */
    .skin-types-track .skin-type-box:nth-child(7)  { grid-area: 3 / 1 / 4 / 2; }
    .skin-types-track .skin-type-box:nth-child(8)  { grid-area: 3 / 2 / 4 / 3; }
    .skin-types-track .skin-type-box:nth-child(9)  { grid-area: 3 / 3 / 4 / 4; }
    .skin-types-track .skin-type-box:nth-child(10) { grid-area: 3 / 4 / 4 / 5; }

    .skin-types-track .skin-type-box:nth-child(1),
    .skin-types-track .skin-type-box:nth-child(2),
    .skin-types-track .skin-type-box:nth-child(3),
    .skin-types-track .skin-type-box:nth-child(4) {
      min-height: 200px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .skin-type-box { flex: auto; width: 100%; }

    .skin-type-title {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      letter-spacing: 0;
      text-align: center;
      color: #fff;
      background: #372d2d2e;
    }
    .skin-type-image {
      width: 100%;
      height: 100%;
      border-radius: 14px 14px 0 0;
      object-fit: fill;
      opacity: 0.9;
    }

    .skin-type-image.mobile-image  { display: none;  }
    .skin-type-image.desktop-image { display: block; }
  }


  /* =============================================================================
   testimonials-essentials.css
   Scoped with tes__ prefix — zero risk of bleeding into other sections.
   All theme colours come from CSS custom properties set inline on .tes__section
   by Liquid. No Liquid syntax lives here.
   ============================================================================= */

/* ---------------------------------------------------------------------------
   Section wrapper
   --------------------------------------------------------------------------- */
.tes__section {
  /* intentionally unstyled at section level;
     padding / bg are controlled via theme settings if needed */
}

/* ---------------------------------------------------------------------------
   Header
   --------------------------------------------------------------------------- */
.tes__header {
  margin: 10px 0;
}

.tes__heading {
  color: var(--tes-heading-color);
  font-size: var(--tes-heading-size);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.tes__subheading {
  font-size: var(--tes-subheading-size);
  margin: 0;
}

.tes__sub-left  { color: var(--tes-sub-left-color); }
.tes__sub-right { color: var(--tes-sub-right-color); }

/* ---------------------------------------------------------------------------
   Swiper shell
   --------------------------------------------------------------------------- */
.tes__swiper {
  width: 100%;
  padding-bottom: 2rem;
}

.tes__swiper .swiper-slide {
  height: auto;
  display: flex;
}

.tes__swiper .swiper-slide .tes__card {
  width: 100%;
}

/* ---------------------------------------------------------------------------
   Card
   --------------------------------------------------------------------------- */
.tes__card {
  background: var(--tes-card-bg);
  border-radius: var(--tes-card-radius);
  padding: 1rem;
  box-shadow: 0px 4.36px 4.36px 0px var(--tes-card-shadow);
  border: 1px solid var(--tes-card-border);
  height: auto;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* ---------------------------------------------------------------------------
   Profile row
   --------------------------------------------------------------------------- */
.tes__profile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e6e8ec;
  padding-bottom: 10px;
}

.tes__user {
  display: flex;
  align-items: center;
}

/* Avatar */
.tes__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
  border: 3px solid var(--tes-accent);
  flex-shrink: 0;
}

.tes__avatar--placeholder {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--tes-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

/* User meta */
.tes__user-info h3 {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  margin: 0;
  color: #23262f;
}

.tes__location {
  font-weight: 400;
  font-size: 10px;
  line-height: 100%;
  letter-spacing: 0;
  color: #777e90;
  margin: 3px 0;
}

/* Rating block */
.tes__rating-wrap {
  text-align: end;
}

.tes__quote {
  text-align: end;
}

.tes__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tes__stars {
  display: flex;
  gap: 2px;
}

.tes__star {
  color: #d1d5db;
  font-size: 12px;
  transition: color 0.2s ease;
}

.tes__star--active {
  color: var(--tes-star);
}

.tes__score {
  font-weight: 600;
  font-size: 12px;
  color: var(--tes-text);
}

/* ---------------------------------------------------------------------------
   Review text
   --------------------------------------------------------------------------- */
.tes__content {
  flex-grow: 1;
}

.tes__text {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: #23262f;
}

/* ---------------------------------------------------------------------------
   Product row
   --------------------------------------------------------------------------- */
.tes__product {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  /* background: #dadada; */
  /* padding: 10px; */
  border-radius: 6px;
}

.tes__product-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tes__product-img {
  height: 80px;
  object-fit: cover;
}

/* Recommendation badge */
.tes__recommendation {
  width: 60%;
  display: flex;
  align-items: center;
}

.tes__check-icon {
  width: 26px;
  height: 22px;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.tes__rec-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0;
  color: var(--tes-text);
}

/* ---------------------------------------------------------------------------
   Shop button
   --------------------------------------------------------------------------- */
.tes__shop-btn {
  background: #00a790;
  color: var(--tes-btn-text);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}

.tes__shop-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  color: var(--tes-btn-text);
  text-decoration: none;
}

.tes__shop-btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ---------------------------------------------------------------------------
   Navigation arrows
   --------------------------------------------------------------------------- */
.tes__nav {
  display: none; /* hidden by default on mobile; shown on ≥768 or via modifier */
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.tes__nav--mobile-visible {
  display: flex; /* merchant opted in to mobile nav */
}

.tes__nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--tes-card-bg);
  border: 2px solid var(--tes-card-border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  color: var(--tes-text);
  user-select: none;
}

.tes__nav-btn:hover {
  background: var(--tes-accent);
  color: #fff;
  border-color: var(--tes-accent);
}

.tes__nav-btn.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ---------------------------------------------------------------------------
   Pagination dots
   --------------------------------------------------------------------------- */
.tes__pagination {
  display: flex !important;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.tes__pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--tes-card-border);
  border-radius: 50%;
  opacity: 1;
  transition: background 0.3s ease, transform 0.3s ease;
}

.tes__pagination .swiper-pagination-bullet-active {
  background: var(--tes-accent);
  transform: scale(1.2);
}

/* ---------------------------------------------------------------------------
   Responsive
   --------------------------------------------------------------------------- */
@media (min-width: 768px) {
  .tes__nav {
    display: flex; /* always visible on tablet+ */
  }
}

@media (max-width: 768px) {
  .tes__card {
    padding: 1rem;
  }

  .tes__shop-btn {
    text-align: center;
  }

  .tes__product-img {
    height: 80px;
  }

  .tes__recommendation {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .tes__heading {
    font-size: 1.8rem;
  }

  .tes__card {
    padding: 1.25rem;
  }
}

/* ============================================================
   Marketplace Marquee — marketplace-marquee.css
   Place in: assets/marketplace-marquee.css
   ============================================================ */

/* ── Box / wrapper ─────────────────────────────────────────── */
.marketplace-marquee {
  overflow: hidden;
}

.mm-box {
  background-color: var(--mm-bg, #ffffff);
  padding-top:      var(--mm-padding-top, 40px);
  padding-bottom:   var(--mm-padding-bottom, 40px);
}

/* ── Header ─────────────────────────────────────────────────── */
.mm-header {
  text-align:    var(--mm-text-align, left);
  margin-bottom: 2rem;
}

.mm-title {
  font-size:   clamp(1.5rem, 4vw, 1.75rem); /* matches original ~24 px cap */
  font-weight: 800;
  color:       var(--mm-text-color, #000000);
  margin:      0;
}

/* Underline accent */
.mm-title--underline {
  position: relative;
  display:  inline-block; /* keeps pseudo-element width to text */
}

.mm-title--underline::after {
  content:          '';
  position:         absolute;
  bottom:           -4px;
  left:             0;
  width:            80px;
  height:           4px;
  background:       #00B798;
  border-radius:    2px;
}

/* Centre / right overrides driven by the custom property */
.mm-header[style*="center"] .mm-title--underline::after,
:root:has(.mm-header) .mm-title--underline::after {
  /* Fallback — alignment handled via text-align on .mm-header */
}

/* Use a data attribute strategy so we don't need Liquid inside CSS */
.mm-header--center .mm-title--underline::after {
  left:      50%;
  transform: translateX(-50%);
}

.mm-header--right .mm-title--underline::after {
  left:  auto;
  right: 0;
}

.mm-description {
  font-size:  1.1rem;
  margin-top: 1rem;
  opacity:    0.8;
  color:      var(--mm-text-color, #000000);
}

/* ── Marquee track ──────────────────────────────────────────── */
.mm-marquee-wrapper {
  overflow:        hidden;
  display:         flex;
  justify-content: center;
  position:        relative;
}

.mm-marquee-track {
  display: flex;
  width:   max-content;
}

/* Desktop animation */
@media (min-width: 768px) {
  .mm-marquee-track.is-animated-desktop {
    animation: mm-scroll 25s linear infinite;
  }
}

/* Mobile animation */
@media (max-width: 767px) {
  .mm-marquee-track.is-animated-mobile {
    animation: mm-scroll 20s linear infinite;
  }
}

/* Pause on hover / focus for accessibility */
.mm-marquee-wrapper:hover  .mm-marquee-track,
.mm-marquee-wrapper:focus-within .mm-marquee-track {
  animation-play-state: paused;
}

/* ── Individual items ───────────────────────────────────────── */
.mm-item {
  flex:   0 0 auto;
  margin: 0 30px;
}

.mm-item img {
  max-height: 30px;
  width:      auto;
  display:    block;
}

/* ── Keyframe ───────────────────────────────────────────────── */
@keyframes mm-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Reduced-motion preference ──────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .mm-marquee-track {
    animation: none !important;
  }
}

/* ============================================================
   section-podcast-videos.css
   Place in: assets/section-podcast-videos.css
   ============================================================ */

/* ── Section shell ── */
.pv-section {
  position: relative;
  overflow: hidden;
}

/* ── Header ── */
.testimonial-essentials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonial-essentials-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  position: relative;
}

.testimonial-essentials-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #00B798;
  border-radius: 2px;
}

.pv-container .testimonial-essentials-description {
  font-size: 1.1rem;
  margin-top: 1rem;
  opacity: 0.8;
}

/* ── Layout ── */
.pv-featured {
  border-radius: 12px;
  z-index: 0;
}

.pv-featured-media {
  position: relative;
  background: #000;
}

/* ── Thumbnail ── */
.pv-thumbnail-wrap {
  position: relative;
  width: 100%;
}

.pv-thumbnail-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.pv-placeholder {
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.pv-placeholder svg {
  width: 80px;
  height: 80px;
  opacity: 0.5;
  color: #fff;
}

/* ── Play buttons ── */
.pv-play-btn,
.pv-sidebar-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #00B798CC;
  transition: transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.pv-play-btn {
  width: 80px;
  height: 80px;
}

.pv-play-btn svg {
  width: 36px;
  height: 36px;
  margin-left: 4px;
}

.pv-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: #00B798;
}

.pv-sidebar-play-btn {
  width: 60px;
  height: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  z-index: 3;
}

.pv-sidebar-play-btn svg {
  width: 28px;
  height: 28px;
  margin-left: 3px;
}

.pv-sidebar-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: #00B798;
}

/* ── Video players ── */
.pv-video-player,
.pv-sidebar-video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 5;
}

.pv-video-iframe {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
}

.pv-video-iframe iframe,
.pv-video-iframe video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.pv-sidebar-video-iframe {
  position: relative;
  width: 100%;
  height: 100%;
}

.pv-sidebar-video-iframe iframe,
.pv-sidebar-video-iframe video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: contain;
}

/* ── Close buttons ── */
.pv-close-btn,
.pv-sidebar-close-btn {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid #fff;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
  z-index: 10;
}

.pv-close-btn {
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
}

.pv-close-btn svg {
  width: 22px;
  height: 22px;
}

.pv-sidebar-close-btn {
  top: 8px;
  right: 8px;
  width: 36px;
  height: 36px;
}

.pv-sidebar-close-btn svg {
  width: 18px;
  height: 18px;
}

.pv-close-btn:hover,
.pv-sidebar-close-btn:hover {
  background: rgba(0, 0, 0, 0.95);
  transform: scale(1.1);
}

/* ── Badges ── */
.pv-badge,
.pv-sidebar-badge {
  position: absolute;
  border-radius: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.pv-badge {
  top: 16px;
  left: 16px;
  padding: 8px 16px;
  font-size: 11px;
  letter-spacing: 0.8px;
}

.pv-sidebar-badge {
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  font-size: 10px;
  letter-spacing: 0.6px;
}

/* ── Featured content ── */
.pv-featured-content {
  padding: 28px;
}

.pv-featured-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 12px;
}

.pv-featured-desc {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}

/* ── Sidebar items ── */
.pv-sidebar-item {
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a1a;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pv-sidebar-item:hover {
  transform: translateX(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.pv-sidebar-item.pv-active {
  box-shadow: 0 0 0 3px rgba(0, 183, 152, 0.5);
}

.pv-sidebar-media {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.pv-sidebar-thumbnail {
  position: relative;
  width: 100%;
  height: 100%;
}

.pv-sidebar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.pv-sidebar-item:hover .pv-sidebar-img {
  transform: scale(1.05);
}

.pv-sidebar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.pv-sidebar-placeholder svg {
  width: 50px;
  height: 50px;
  opacity: 0.5;
  color: #fff;
}

.pv-sidebar-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pv-sidebar-item:hover .pv-sidebar-overlay {
  opacity: 1;
}

.pv-sidebar-overlay svg {
  width: 48px;
  height: 48px;
}

.pv-sidebar-content {
  padding: 16px;
}

.pv-sidebar-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pv-sidebar-desc {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
  opacity: 0.8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================================
   Desktop layout  (≥ 769px)
   ============================================================ */
@media (min-width: 769px) {
  .pv-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 24px;
    align-items: start;
  }

  .pv-sidebar {
    position: sticky;
    top: 20px;
  }

  .pv-sidebar-scroll {
    max-height: 630px;
    overflow-y: scroll;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding-right: 12px;

    /* Firefox */
    scrollbar-width: thin;
    scrollbar-color: #00B798 rgba(255, 255, 255, 0.1);
  }

  /* WebKit scrollbar */
  .pv-sidebar-scroll::-webkit-scrollbar       { width: 10px; }
  .pv-sidebar-scroll::-webkit-scrollbar-track { background: rgba(255,255,255,0.1); border-radius: 10px; margin: 4px 0; }
  .pv-sidebar-scroll::-webkit-scrollbar-thumb { background: #00B798; border-radius: 10px; border: 2px solid rgba(26,26,26,0.5); background-clip: padding-box; }
  .pv-sidebar-scroll::-webkit-scrollbar-thumb:hover { background: #009a80; background-clip: padding-box; }

  .pv-sidebar-item {
    margin-bottom: 16px;
  }

  .pv-sidebar-item:last-child {
    margin-bottom: 0;
  }
}

/* ============================================================
   Mobile layout  (≤ 768px) — horizontal slider
   ============================================================ */
@media (max-width: 768px) {
  .pv-layout {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 10px;
  }

  .pv-layout::-webkit-scrollbar { display: none; }

  .pv-featured,
  .pv-sidebar { flex-shrink: 0; }

  .pv-featured { width: 85vw; max-width: 400px; }

  /* Flatten sidebar so cards sit in the same flex row */
  .pv-sidebar,
  .pv-sidebar-scroll { display: contents; }

  .pv-sidebar-item {
    width: 85vw;
    max-width: 400px;
    margin-bottom: 0;
  }

  .pv-featured-media,
  .pv-sidebar-media { height: 200px; }

  .pv-featured-content { padding: 20px; }
  .pv-featured-title   { font-size: 20px; }

  .pv-featured-desc,
  .pv-sidebar-desc { font-size: 14px; }

  /* Always show play button; hide hover-only overlay */
  .pv-sidebar-play-btn { display: flex; }
  .pv-sidebar-overlay  { display: none; }
}

/* =============================================================================
   Related Products Slider
   section-related-products-slider.css
   ============================================================================= */

.related-products-slider {
  position: relative;
}

.related-products-slider .grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1rem;
  padding: 1rem 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin: 0;
}

.related-products-slider .grid::-webkit-scrollbar {
  display: none;
}

/* ---------------------------------------------------------------------------
   Grid Items
   --------------------------------------------------------------------------- */
.related-products-slider .grid__item {
  flex: 0 0 calc(50% - 0.5rem);
  min-width: calc(50% - 0.5rem);
  scroll-snap-align: start;
}

@media screen and (min-width: 750px) {
  .related-products-slider .grid__item {
    flex: 0 0 calc(25% - 0.75rem);
    min-width: calc(25% - 0.75rem);
  }
}

/* ---------------------------------------------------------------------------
   Navigation Buttons
   --------------------------------------------------------------------------- */
.related-products-slider .slider-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s ease;
}

.related-products-slider .slider-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.related-products-slider .slider-button--prev {
  left: -22px;
}

.related-products-slider .slider-button--next {
  right: -22px;
}

.related-products-slider .slider-button svg {
  width: 20px;
  height: 20px;
}

/* ---------------------------------------------------------------------------
   Mobile overrides
   --------------------------------------------------------------------------- */
@media screen and (max-width: 749px) {
  .related-products-slider .slider-button {
    display: none;
  }

  .related-products-slider .grid {
    scroll-snap-type: x mandatory;
  }
}

/* ---------------------------------------------------------------------------
   Quick View Modal (ensure it layers above slider)
   --------------------------------------------------------------------------- */
.quick-view-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
}

.quick-view-modal[open] {
  display: block;
}

/* ============================================================
   Product Bundle Section
   assets/section-product-bundle.css
   ============================================================ */

/* --- Layout --- */
.bundle-wrapper {
  background: linear-gradient(135deg, #f8fffe 0%, #ffffff 100%);
  border: 2px solid #e0f4f1;
  border-radius: 24px;
  padding: 2rem;
  max-width: 1100px;
  margin: auto;
  position: relative;
  overflow: hidden;
}

.bundle-wrapper_inside {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}

/* --- Title --- */
.bundle-section .bundle-title {
  font-weight: 700;
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 0 0 2rem;
  text-align: center;
  color: #1a1a1a;
}

/* --- Product List --- */
.bundle-products {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 1rem;
}

/* ── Bundle Item ─────────────────────────────────────────── */
.bundle-item {
  text-align: center;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.bundle-item.sold-out .bundle-product-image {
  opacity: 0.6;
  border-color: #ccc;
}

.bundle-item.sold-out .bundle-product-title,
.bundle-item.sold-out .bundle-product-price {
  opacity: 0.6;
}

/* ── Checkbox ──────────────────────────────────────────────── */
.bundle-checkbox-label {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  background: #fff;
  border: 1.5px solid #b2e6df;
  border-radius: 20px;
  padding: 4px 10px 4px 6px;
  transition: background 0.2s ease, border-color 0.2s ease;
  user-select: none;
}

.bundle-checkbox-label:hover:not(.disabled) {
  background: #e0f5f2;
  border-color: #02af9a;
}

.bundle-checkbox-label.disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

/* Hide the native checkbox but keep it accessible */
.bundle-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Custom checkmark box */
.bundle-checkmark {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 2px solid #b2e6df;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
  color: transparent;
}

.bundle-checkmark svg {
  width: 10px;
  height: 10px;
}

/* Checked state */
.bundle-checkbox:checked + .bundle-checkmark {
  background: #02af9a;
  border-color: #02af9a;
  color: #fff;
}

/* Label text */
.bundle-checkbox-text {
  font-size: 12px;
  font-weight: 600;
  color: #02af9a;
  letter-spacing: 0.02em;
  line-height: 1;
}

/* When unchecked, grey the label text */
.bundle-checkbox-label:has(.bundle-checkbox:not(:checked)) .bundle-checkbox-text {
  color: #999;
}

/* When unchecked, grey the label border */
.bundle-checkbox-label:has(.bundle-checkbox:not(:checked)) {
  border-color: #d9d9d9;
}

/* --- Product Card --- */
.bundle-product-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.bundle-product-image {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: white;
  padding: 1.25rem;
  padding-top: 2.5rem; /* extra top space so pill label doesn't overlap content */
  border-radius: 16px;
  border: 1px solid #e0f4f1;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease;
  will-change: transform;
}

.bundle-product-link:hover .bundle-product-image {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(2, 175, 154, 0.12), 0 4px 8px rgba(0, 0, 0, 0.06);
  border-color: #02af9a;
}

/* --- Image Wrapper --- */
.bundle-image-wrapper {
  flex-shrink: 0;
  position: relative;
  width: 100px;
  height: 100px;
  background: #f8fffe;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bundle-product-image img,
.bundle-product-image svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.bundle-product-link:hover img {
  transform: scale(1.1);
}

.sold-out-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 12px;
  z-index: 2;
}

/* --- Product Info --- */
.bundle-product-info {
  text-align: left;
  flex: 1;
  min-width: 0;
}

.bundle-product-title {
  font-weight: 400;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bundle-product-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.bundle-product-price .price-compare {
  font-weight: 500;
  font-size: clamp(13px, 1.8vw, 14px);
  color: #999;
  text-decoration: line-through;
}

/* Original (undiscounted) price */
.bundle-product-price .price {
  font-weight: 500;
  font-size: clamp(13px, 1.8vw, 14px);
  color: #999;
  text-decoration: line-through;
}

.bundle-product-price .price.unavailable {
  color: #999;
}

/* Bundle-discounted final price */
.bundle-product-price .price-bundle-final {
  font-weight: 700;
  font-size: clamp(15px, 2vw, 16px);
  color: #00a790;
}

/* --- Plus Separator --- */
.bundle-plus {
  padding: 0 0.5rem;
  display: flex;
  align-items: center;
  color: #02af9a;
  opacity: 0.7;
}

.bundle-plus svg {
  width: 24px;
  height: 24px;
}

/* --- Totals & CTA --- */
.bundle-total {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.dt-bundle-total {
  text-align: center;
}

.bundle-savings {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.bundle-discounted-price {
  font-weight: 700;
  font-size: clamp(20px, 5vw, 32px);
  line-height: 1;
  color: #376c00;
}

.savings-text {
  font-size: 13px;
  font-weight: 600;
  color: #02af9a;
  margin: 0;
}

/* "Select at least one" message */
.bundle-none-selected {
  font-size: 13px;
  font-weight: 600;
  color: #e04040;
  margin: 0;
}

.bundle-none-selected.hidden {
  display: none;
}

.bundle-action {
  text-align: center;
  width: 100%;
}

/* --- Add to Cart Button --- */
.bundle-add-button {
  position: relative;
  width: 100%;
  margin: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
  padding: 0 1.8rem;
  cursor: pointer;
  font: inherit;
  font-size: 1.6rem;
  text-decoration: none;
  color: rgb(var(--color-button-text));
  -webkit-appearance: none;
  appearance: none;
  background-color: #00a790;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bundle-add-button:hover:not(:disabled) {
  transform: translateY(-2px);
}

.bundle-add-button:active:not(:disabled) {
  transform: translateY(0);
}

.bundle-add-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #999;
  box-shadow: none;
}

/* --- Spinner --- */
.bundle-add-button .loading-overlay__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bundle-add-button .spinner {
  width: 2rem;
  height: 2rem;
}

.bundle-add-button .spinner .path {
  stroke: currentColor;
  animation: bundle-spinner 2s linear infinite;
}

@keyframes bundle-spinner {
  0%   { stroke-dasharray: 1, 200;  stroke-dashoffset: 0; }
  50%  { stroke-dasharray: 90, 200; stroke-dashoffset: -35; }
  100% { stroke-dasharray: 90, 200; stroke-dashoffset: -124; }
}

/* ============================================================
   Responsive
   ============================================================ */

/* Tablet */
@media screen and (max-width: 989px) {
  .bundle-wrapper {
    padding: 1rem;
  }

  .bundle-wrapper_inside {
    flex-direction: column;
    gap: 1.5rem;
  }

  .bundle-products {
    flex-wrap: wrap;
  }

  .bundle-item {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 200px;
  }

  .bundle-plus {
    display: none;
  }

  .bundle-total {
    width: 100%;
  }
}

/* Mobile */
@media screen and (max-width: 749px) {
  .bundle-wrapper {
    padding: 1rem;
    border-radius: 16px;
  }

  .bundle-products {
    flex-direction: column;
    gap: 1rem;
  }

  .bundle-item {
    width: 100%;
    flex: 1 1 100%;
  }

  .bundle-product-image {
    width: 100%;
    padding: 1rem;
    padding-top: 2.5rem;
  }

  .bundle-image-wrapper {
    width: 70px;
    height: 70px;
  }

  .bundle-total {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    min-width: auto;
  }

  .bundle-section .bundle-title {
    text-align: left;
    margin-bottom: 1.5rem;
  }

  .bundle-add-button {
    min-height: 36px;
    font-size: 14px;
  }
}

/* Small mobile */
@media screen and (max-width: 480px) {
  .bundle-product-image {
    padding: 0.75rem;
    padding-top: 2.5rem;
    gap: 0.75rem;
  }

  .bundle-image-wrapper {
    width: 100px;
    height: 100px;
  }
}

/* Card benefit box */
.ps-card_benefit{
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 8px;
  margin-top: 8px;
}

.ps-head{
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
}

.ps-bene-grid{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 10px;
}

.ps-bene-item{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--text);
}

.ps-tick{
  width: 20px;
  height: 20px;
  min-width: 20px;
  /* border-radius: 50%;
  background: #16a34a; */
  color: #00a790;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.ps-hr{
  border-top: 1px solid #e8e8e8;
  margin: 8px 0;
}


/* assets/nbdt-product-tabs.css */

/* ── Design tokens ─────────────────────────────── */
:root {
  --nbdt-brand:      #00A790;
  --nbdt-brand-dark: #007a68;
  --nbdt-bg-tab:     #00A7900D;
  --nbdt-border:     #D8DADF;
  --nbdt-radius:     8px;
  --nbdt-text:       #1E1F24;
  --nbdt-muted:      #666;
  --nbdt-white:      #fff;
  --nbdt-collapse-h: 120px;   /* visible height before "Read more" */
  --nbdt-fade-h:     60px;    /* gradient fade height               */
}

/* ── Section wrapper ───────────────────────────── */

.nbdt__badge {
  padding: 12px 10px;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.45;
  text-transform: capitalize;
  color: var(--nbdt-text);
}

/* ── Tab container ─────────────────────────────── */
.nbdt__wrap {
  border: 1px solid #ddd;
  border-radius: var(--nbdt-radius);
  overflow: visible;
  margin-top: 20px;
  font-family: inherit;
  position: relative;
}

/* ── Tab navigation ────────────────────────────── */
.nbdt__nav {
  display: flex;
  border-radius: var(--nbdt-radius) var(--nbdt-radius) 0 0;
  position: relative;
}

.nbdt__tab {
  flex: 1;
  background: var(--nbdt-bg-tab);
  color: var(--nbdt-text);
  border: none;
  text-align: center;
  padding: 12px 8px;
  cursor: pointer;
  font-weight: 300;
  font-family: inherit;
  font-size: inherit;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
  z-index: 1;
}

.nbdt__tab:first-child { border-radius: var(--nbdt-radius) 0 0 0; }
.nbdt__tab:last-child  { border-radius: 0 var(--nbdt-radius) 0 0; }

/* Vertical dividers between tabs */
.nbdt__tab::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 20%;
  height: 60%;
  width: 1px;
  background: #ddd;
}
.nbdt__tab:last-child::after,
.nbdt__tab.is-active::after { display: none; }

/* Active tab "raised" effect */
.nbdt__tab.is-active {
  background: var(--nbdt-white);
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--nbdt-border);
  border-bottom-color: var(--nbdt-white);
  border-radius: 16px 16px 0 0;
  transform: translateY(-12px) scaleX(0.966) scaleY(1.18);
  margin: -4px -6px;
  z-index: 2;
}

.nbdt__tab-label {
  display: block;
  font-size: 14px;
  line-height: 1.3;
}

/* ── Tab content area ──────────────────────────── */
.nbdt__content {
  padding: 0 12px;
  background: var(--nbdt-white);
  border-radius: 0 0 var(--nbdt-radius) var(--nbdt-radius);
  position: relative;
  z-index: 1;
  margin-top: -1px;
}

.nbdt__panel {
  display: none;
  animation: nbdt-fadeUp 0.35s ease;
}
.nbdt__panel.is-active { display: block; }

@keyframes nbdt-fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* ── Ingredients list ──────────────────────────── */
.nbdt__ing-list {
  list-style: none;
  margin: 0;
  padding: 10px 0;
}

.nbdt__ing-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 10px 0;
}

.nbdt__ing-img {
  flex-shrink: 0;
  display: flex;
}
.nbdt__ing-img img {
  border-radius: 50px;
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.nbdt__ing-body { flex: 1; }

.nbdt__ing-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--nbdt-text);
  margin: 0 0 6px;
  line-height: 1.3;
}

.nbdt__ing-desc,
.nbdt__ing-desc p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--nbdt-muted);
  margin: 0 0 8px;
}
.nbdt__ing-desc p:last-child { margin-bottom: 0; }

/* ── Read-more block ───────────────────────────── */
.nbdt__readmore--bordered { border-top: 1px solid #f0f0f0; }

.nbdt__rm-body {
  overflow: hidden;
  max-height: var(--nbdt-collapse-h);
  transition: max-height 0.4s ease;
  font-size: 14px;
  line-height: 1.6;
  color: var(--nbdt-muted);
  position: relative;
}

/* Gradient fade while collapsed */
.nbdt__rm-body::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--nbdt-fade-h);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--nbdt-white));
  transition: opacity 0.3s;
  pointer-events: none;
}

/* When expanded */
.nbdt__rm-body.is-expanded {
  max-height: 2000px;
}
.nbdt__rm-body.is-expanded::after { opacity: 0; }

/* Headings inside rich-text */
.nbdt__rm-body h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--nbdt-text);
  margin: 16px 0 8px;
}
.nbdt__rm-body h3:first-child { margin-top: 0; }
.nbdt__rm-body p { margin: 12px 0; }

/* Read more button */
.nbdt__rm-btn {
  display: none; /* shown via JS only when content overflows */
  background: none;
  border: none;
  color: var(--nbdt-brand);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  padding: 4px 0 8px;
  transition: color 0.2s;
}
.nbdt__rm-btn:hover { color: var(--nbdt-brand-dark); }

/* ── Certificate ────────────────────────────────── */
.nbdt__cert { padding: 20px 0; text-align: center; }
.nbdt__cert-img {
  max-width: 100%;
  height: auto;
  border: 1px solid #ddd;
  border-radius: var(--nbdt-radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  .nbdt__tab.is-active {
    transform: translateY(-10px) scaleX(0.97) scaleY(1.12);
    margin: -4px -2px;
  }
  .nbdt__ing-item { gap: 12px; }
}

@media (max-width: 768px) {
  .nbdt__tab { padding: 10px 4px; }
  .nbdt__tab-label { font-size: 12px; }
  .nbdt__tab.is-active {
    transform: translateY(-8px) scaleX(1) scaleY(1.08);
    margin: -4px -1px;
  }
  .nbdt__wrap    { margin-top: 10px; }
  .nbdt__content { padding: 0 10px; }
  .nbdt__ing-name { font-size: 14px; }
  .nbdt__ing-desc { font-size: 13px; }
}

@media (max-width: 480px) {
  .nbdt__tab.is-active {
    transform: translateY(-6px) scaleX(1) scaleY(1.05);
  }
  .nbdt__ing-item { gap: 8px; }
}

/* assets/know-before-you-glow.css */

/* ── Design tokens ─────────────────────────────── */
:root {
  --dt-acc-brand:       #46857C;
  --dt-acc-brand-light: #B2E1DB;
  --dt-acc-white:       #fff;
  --dt-acc-text:        #000;
  --dt-acc-body-text:   #1A1A1A;
  --dt-acc-border:      rgba(0, 0, 0, 0.1);
  --dt-acc-radius:      8px;
  --dt-acc-speed:       0.3s;
}

/* ── Section ───────────────────────────────────── */
.dt-accordion-section {
  background: linear-gradient(214.09deg, var(--dt-acc-white) -10.91%, var(--dt-acc-brand-light) 100.63%);
  border-radius: 12px;
}

/* ── Heading ───────────────────────────────────── */
.dt-accordion-section__heading {
  margin-bottom: 25px;
  font-weight: 600;
  font-size: clamp(24px, calc(24px + (28 - 24) * (100vw - 375px) / 1065), 28px);
  text-align: center;
  color: var(--dt-acc-brand);
}

/* ── Accordion item ────────────────────────────── */
.dt-accordion-section__item {
  border: 1px solid var(--dt-acc-border);
  border-radius: var(--dt-acc-radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--dt-acc-white);
}

/* ── Header button ─────────────────────────────── */
.dt-accordion-section__header {
  background: var(--dt-acc-white);
  color: var(--dt-acc-text);
  padding: 15px 12px;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  cursor: pointer;
  border: none;
  text-align: left;
  font-family: inherit;
}

.dt-accordion-section__item.is-active .dt-accordion-section__header {
  border-bottom: 0.5px solid var(--dt-acc-brand-light);
}

/* ── Collapsible content ───────────────────────── */
.dt-accordion-section__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dt-acc-speed) ease;
}

/* ── Inner body ────────────────────────────────── */
.dt-accordion-section__inner {
  padding: 10px 16px;
  font-size: clamp(12px, calc(12px + (16 - 12) * (100vw - 375px) / 1065), 16px);
  line-height: 1.5;
  color: var(--dt-acc-body-text);
  font-weight: 300;
}

.dt-accordion-section__inner .metafield-rich_text_field p,
.dt-accordion-section__inner p {
  margin: 0;
}

/* ── Icon toggle ───────────────────────────────── */
.dt-accordion-section__icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dt-accordion-section__icon .icon-up  { display: none; }
.dt-accordion-section__icon .icon-down { display: inline-flex; }

.dt-accordion-section__item.is-active .dt-accordion-section__icon .icon-up  { display: inline-flex; }
.dt-accordion-section__item.is-active .dt-accordion-section__icon .icon-down { display: none; }

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 768px) {
  .dt-accordion-section { padding: 16px; }
}

/* assets/faq-metaobject.css */

/* ── Design tokens ─────────────────────────────── */
:root {
  --faq-brand:       #00A790;
  --faq-border:      #e5e7eb;
  --faq-border-open: rgba(0, 0, 0, 0.1);
  --faq-text:        #000;
  --faq-body-text:   #1A1A1A;
  --faq-muted:       #4b5563;
  --faq-white:       #fff;
  --faq-radius:      12px;
  --faq-speed:       0.35s;
}

/* ── Section wrapper ───────────────────────────── */
@media (max-width: 768px) {
  .faq-section { padding: 0 1rem; }
}

/* ── Header ────────────────────────────────────── */
.faq-section__header {
  margin-bottom: 1.5rem;
}

.faq-section__title {
  font-weight: 700;
  font-size: clamp(20px, 4vw, 24px);
  line-height: 1.45;
  margin: 0 0 10px;
  text-align: left;
}

.faq-section__subtitle {
  font-size: 1.125rem;
  opacity: 0.85;
  margin: 0;
}

/* ── FAQ item ──────────────────────────────────── */
.faq-section__item {
  border: 1px solid var(--faq-border);
  border-radius: var(--faq-radius);
  margin-bottom: 10px;
  padding: 0 12px;
  background: var(--faq-white);
  overflow: hidden;
}

/* ── Question button ───────────────────────────── */
.faq-section__question {
  width: 100%;
  padding: 1rem 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: clamp(14px, calc(14px + (18 - 14) * (100vw - 375px) / 1065), 18px);
  line-height: 1.5;
  color: var(--faq-text);
  font-weight: 500;
  font-family: inherit;
}

.faq-section__item.is-active .faq-section__question {
  border-bottom: 0.5px solid var(--faq-border-open);
}

/* ── Answer panel ──────────────────────────────── */
.faq-section__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--faq-speed) ease;
}

.faq-section__answer-inner {
  color: var(--faq-muted);
  line-height: 1.6;
  padding: 0 0 1rem;
}

.faq-section__answer-inner p {
  margin: 5px 0;
  font-size: clamp(12px, calc(12px + (16 - 12) * (100vw - 375px) / 1065), 16px);
  line-height: 1.5;
  color: var(--faq-body-text);
  font-weight: 300;
}

/* ── Icon toggle ───────────────────────────────── */
.faq-section__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.faq-section__icon .icon-minus { display: none; }
.faq-section__icon .icon-plus  { display: flex; }

.faq-section__item.is-active .faq-section__icon .icon-plus  { display: none; }
.faq-section__item.is-active .faq-section__icon .icon-minus { display: flex; }

/* ── Read more button ──────────────────────────── */
.faq-section__readmore-wrap { margin-top: 1rem; }

.faq-section__readmore-btn {
  border: none;
  background: none;
  color: var(--faq-brand);
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.15;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  font-family: inherit;
  transition: opacity 0.2s;
}
.faq-section__readmore-btn:hover { opacity: 0.75; }

/* ── Hidden items (before Read More clicked) ───── */
.faq-section__item[hidden] { display: none; }


/* -----simple bannner .liquid------- */

    .simple-banner {
    width: 100%;
    overflow: hidden;
  }

  .simple-banner__link {
    display: block;
    text-decoration: none;
  }

  .simple-banner__wrapper {
    width: 100%;
  }

  .simple-banner__image {
    width: 100%;
    height: auto;   
    display: block;
  }

@media (max-width: 768px) {
  /* --------sticky atc--------- */
  .dt-main-product-page .dt-buy-button_container, .dt-main-product-page .price-template--20204367118487__main, .dt-main-product-page .dt-buy-button_container{
      width: 28%;
  }
  .dt-main-product-page .dt-sticky-atc{
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }
  .dt-main-product-page .dt-buy-button_container{
    width: 30%;
  }
  .product-form__buttons button{
    margin-bottom: 0 !important;
    padding: 0 !important;
  }
}

@media (min-width: 768px) {
.dt-sticky-atc #price-template--20204367118487__main{
  display: none;
}
}
