/** Shopify CDN: Minification failed

Line 1336:18 Unexpected "{"
Line 1336:27 Expected ":"
Line 1360:18 Unexpected "{"
Line 1360:27 Expected ":"
Line 1369:18 Unexpected "{"
Line 1369:27 Expected ":"
Line 1380:18 Unexpected "{"
Line 1380:27 Expected ":"
Line 1388:18 Unexpected "{"
Line 1388:27 Expected ":"
... and 126 more hidden warnings

**/
/* ==== GLOBAL FONT ==== */
.dj-lp-hero,
.dj-lp-hero * {
  font-family: 'Poppins', sans-serif !important;
}

/* ==== HERO SECTION ==== */
.dj-lp-hero {
  --dj-teal: #06BDB2;
  --dj-blue: #4F90EA;
  --dj-pink: #FE76C2;
  --dj-magenta: #FF1568;
  --dj-gold: #FFBA06;
  --dj-purple: #C496FF;
  --dj-navy: #3B2A59;
  --dj-gray: #E6E7E8;
  --dj-white: #FFFFFF;
  --dj-text: #241933;
  --dj-text-light: #5B5468;
  --dj-radius-small: 14px;
  --dj-radius-medium: 20px;
  --dj-radius-large: 28px;
  --dj-radius-pill: 999px;
  width: 100%;
  display: block;
  padding: 32px 0 40px;
  background: linear-gradient(180deg, #FFF6FB 0%, #FFFFFF 100%);
  box-sizing: border-box;
}

/* ==== CONTAINER ==== */
.dj-lp-hero__container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 60px;
  box-sizing: border-box;
}

/* ==== CONTENT ==== */
.dj-lp-hero__content {
  width: 100%;
  min-width: 0;
}

/* ==== KICKER ==== */
.dj-lp-hero__kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 18px;
  padding: 7px 15px;
  border-radius: var(--dj-radius-pill);
  background: rgba(255, 21, 104, 0.08);
  color: var(--dj-magenta);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-sizing: border-box;
}

/* ==== HEADING ==== */
.dj-lp-hero__heading {
  display: block;
  width: 100%;
  max-width: 650px;
  margin: 0 0 22px;
  padding: 0;
  color: var(--dj-navy);
  font-size: clamp(38px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-align: left;
  word-break: normal;
  overflow-wrap: normal;
  box-sizing: border-box;
}

/* ==== HEADING ACCENT ==== */
.dj-lp-hero__heading-accent {
  display: inline;
  color: var(--dj-magenta);
  font-weight: 700;
}

/* ==== SUBHEADING ==== */
.dj-lp-hero__subheading {
  display: block;
  width: 100%;
  max-width: 560px;
  margin: 0 0 24px;
  padding: 0;
  color: var(--dj-text-light);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  box-sizing: border-box;
}

/* ==== TRUST ==== */
.dj-lp-hero__trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 28px;
}

/* ==== AVATARS ==== */
.dj-lp-hero__avatars {
  display: flex;
  align-items: center;
}

.dj-lp-hero__avatars span {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  margin-left: -8px;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  background: var(--dj-purple);
  box-sizing: border-box;
}

.dj-lp-hero__avatars span:first-child {
  margin-left: 0;
}

/* ==== RATING ==== */
.dj-lp-hero__rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--dj-text-light);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.dj-lp-hero__rating strong {
  color: var(--dj-text);
  font-weight: 700;
}

.dj-lp-hero__stars {
  color: var(--dj-gold);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1;
  white-space: nowrap;
}

/* ==== BUTTON WRAPPER ==== */
.dj-lp-hero__buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
}

/* ==== BUTTON ==== */
.dj-lp-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 28px;
  border-radius: var(--dj-radius-pill);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  box-sizing: border-box;
}

.dj-lp-hero__button:hover {
  transform: translateY(-2px);
}

/* ==== PRIMARY BUTTON ==== */
.dj-lp-hero__button--primary {
  color: var(--dj-white);
  background: var(--dj-magenta);
  box-shadow: 0 10px 24px rgba(255, 21, 104, 0.25);
  font-weight: 700;
}

.dj-lp-hero__button--primary:hover {
  opacity: 0.92;
}

/* ==== SECONDARY BUTTON ==== */
.dj-lp-hero__button--secondary {
  color: var(--dj-navy);
  background: var(--dj-white);
  border: 2px solid var(--dj-navy);
  font-weight: 700;
}

/* ==== PRESS / STOCKIST ==== */
.dj-lp-hero__press {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

/* ==== PRESS ITEM ==== */
.dj-lp-hero__press-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: var(--dj-radius-small);
  color: var(--dj-navy);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-sizing: border-box;
}

/* ==== NORDSTROM — NO BORDER ==== */
.dj-lp-hero__press-item--nordstrom {
  min-height: auto;
  padding: 6px 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--dj-navy);
  text-transform: none;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ==== PRESS LOGO ==== */
.dj-lp-hero__press-item img {
  display: block;
  width: auto;
  max-width: 120px;
  max-height: 24px;
  object-fit: contain;
}

/* ==== HERO MEDIA ==== */
.dj-lp-hero__media {
  position: relative;
  width: 100%;
  min-width: 0;
}

/* ==== IMAGE WRAPPER ==== */
.dj-lp-hero__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 4;
  padding: 20px;
  overflow: hidden;
  border-radius: var(--dj-radius-large);
  background: #F5F3F7;
  box-shadow: 0 14px 40px rgba(59, 42, 89, 0.18);
  box-sizing: border-box;
}

/* ==== IMAGE / VIDEO ==== */
.dj-lp-hero__image-wrapper img,
.dj-lp-hero__image-wrapper video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 18px;
}

/* ==== IMAGE PLACEHOLDER ==== */
.dj-lp-hero__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--dj-text-light);
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}

/* ==== FLOATING REVIEW ==== */
.dj-lp-hero__review {
  position: absolute;
  left: -18px;
  bottom: -20px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: 250px;
  padding: 13px 17px;
  background: var(--dj-white);
  border-radius: var(--dj-radius-medium);
  box-shadow: 0 8px 24px rgba(59, 42, 89, 0.12);
  box-sizing: border-box;
}

/* ==== REVIEW STARS ==== */
.dj-lp-hero__review-stars {
  flex: 0 0 auto;
  color: var(--dj-gold);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* ==== REVIEW TEXT ==== */
.dj-lp-hero__review p {
  margin: 0;
  color: var(--dj-text);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

/* ==== TABLET ==== */
@media screen and (max-width: 989px) {
  .dj-lp-hero {
    padding: 45px 0 60px;
  }

  .dj-lp-hero__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dj-lp-hero__heading {
    max-width: 700px;
    font-size: clamp(38px, 6vw, 54px);
  }

  .dj-lp-hero__subheading {
    max-width: 650px;
  }

  .dj-lp-hero__media {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
  }
}

/* ==== MOBILE ==== */
@media screen and (max-width: 749px) {
  .dj-lp-hero {
    padding: 32px 0 50px;
  }

  .dj-lp-hero__container {
    padding: 0 16px;
    gap: 32px;
  }

  .dj-lp-hero__kicker {
    margin-bottom: 14px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 700;
  }

  .dj-lp-hero__heading {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.02em;
  }

  .dj-lp-hero__subheading {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.55;
  }

  .dj-lp-hero__trust {
    gap: 9px;
    margin-bottom: 22px;
  }

  .dj-lp-hero__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .dj-lp-hero__button {
    width: 100%;
    min-height: 52px;
  }

  .dj-lp-hero__press {
    margin-top: 24px;
  }

  .dj-lp-hero__image-wrapper {
    aspect-ratio: 4 / 3;
    padding: 12px;
    border-radius: 22px;
  }

  .dj-lp-hero__review {
    left: 8px;
    bottom: -14px;
    max-width: calc(100% - 16px);
    padding: 10px 13px;
  }

  .dj-lp-hero__review p {
    font-size: 11px;
  }

  .dj-lp-hero__press-item--nordstrom {
    padding: 5px 0;
  }
}

/* ==== SMALL MOBILE ==== */
@media screen and (max-width: 425px) {
  .dj-lp-hero__heading {
    font-size: 33px;
  }

  .dj-lp-hero__rating {
    font-size: 13px;
  }

  .dj-lp-hero__press-item {
    padding: 5px 9px;
    font-size: 12.5px;
  }

  .dj-lp-hero__press-item--nordstrom {
    padding: 5px 0;
  }
}

/*2nd section best seller landing css*/
/*
============================================================
UGC VIDEO SECTION
============================================================
*/

#video.lp-ugc-video {
  --lp-teal: #06BDB2;
  --lp-blue: #4F90EA;
  --lp-pink: #FE76C2;
  --lp-magenta: #FF1568;
  --lp-gold: #FFBA06;
  --lp-purple-light: #C496FF;
  --lp-navy: #3B2A59;
  --lp-gray: #E6E7E8;
  --lp-white: #FFFFFF;
  --lp-ink: #241933;
  --lp-ink-soft: #5B5468;
  --lp-radius-sm: 14px;
  --lp-radius-md: 20px;
  --lp-radius-lg: 28px;
  --lp-radius-pill: 999px;
  --lp-shadow-card: 0 8px 24px rgba(59, 42, 89, 0.10);
  --lp-font-bold: var(--font-heading-family, 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif);
  --lp-font-book: var(--font-body-family, 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif);
  background: var(--lp-white);
  padding: 48px 0 20px;
  overflow: hidden;
}

/*
============================================================
CONTAINER
============================================================
*/

#video.lp-ugc-video .lp-ugc-video__container {
  max-width: 650px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/*
============================================================
SECTION HEADING
============================================================
*/

#video.lp-ugc-video .lp-ugc-video__section-head {
  margin: 0 0 28px;
}

#video.lp-ugc-video .lp-ugc-video__kicker {
  display: inline-block;
  margin: 0 0 12px;
  font-family: var(--lp-font-bold);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--lp-magenta);
  background: rgba(255, 21, 104, .08);
  padding: 6px 14px;
  border-radius: var(--lp-radius-pill);
}

#video.lp-ugc-video .lp-ugc-video__heading {
  margin: 0 0 12px;
  font-family: var(--lp-font-bold);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--lp-navy);
}

#video.lp-ugc-video .lp-ugc-video__description {
  max-width: 620px;
  margin: 0;
  font-family: var(--lp-font-book);
  font-size: 16px;
  line-height: 1.5;
  color: var(--lp-ink-soft);
}

/*
============================================================
VIDEO SCROLLER
============================================================
*/

#video.lp-ugc-video .lp-ugc-video__scroller {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 20px 10px;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

#video.lp-ugc-video .lp-ugc-video__scroller::-webkit-scrollbar {
  display: none;
}

/*
============================================================
VIDEO CARD
============================================================
*/

#video.lp-ugc-video .lp-ugc-video__card {
  position: relative;
  flex: 0 0 78%;
  max-width: 320px;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  scroll-snap-align: center;
  background: #000;
  border-radius: var(--lp-radius-lg);
  box-shadow: var(--lp-shadow-card);
}

/*
============================================================
VIDEO / POSTER
============================================================
*/

#video.lp-ugc-video .lp-ugc-video__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#video.lp-ugc-video .lp-ugc-video__poster-only {
  object-position: center;
}

/*
============================================================
EMPTY VIDEO PLACEHOLDER
============================================================
*/

#video.lp-ugc-video .lp-ugc-video__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #F5F3F7;
  color: var(--lp-ink-soft);
  text-align: center;
  font-family: var(--lp-font-bold);
  font-size: 14px;
}

/*
============================================================
UGC TAG
============================================================
*/

#video.lp-ugc-video .lp-ugc-video__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .92);
  color: var(--lp-navy);
  font-family: var(--lp-font-bold);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  padding: 5px 10px;
  border-radius: var(--lp-radius-pill);
}

/*
============================================================
SOUND ICON
============================================================
*/

#video.lp-ugc-video .lp-ugc-video__sound {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .90);
  border-radius: 50%;
  font-size: 14px;
  line-height: 1;
}

/*
============================================================
CAPTION
============================================================
*/

#video.lp-ugc-video .lp-ugc-video__caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  padding-right: 44px;
  color: #fff;
  font-family: var(--lp-font-book);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
}

/*
============================================================
DESKTOP / TABLET
============================================================
*/

@media screen and (min-width: 720px) {
  #video.lp-ugc-video .lp-ugc-video__scroller {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    overflow: visible;
    padding: 6px 20px 10px;
    margin: 0 auto;
  }

  #video.lp-ugc-video .lp-ugc-video__card {
    flex: none;
    width: 100%;
    max-width: none;
    scroll-snap-align: none;
  }
}

/*
============================================================
MOBILE
============================================================
*/

@media screen and (max-width: 719px) {
  #video.lp-ugc-video {
    padding: 40px 0 20px;
  }

  #video.lp-ugc-video .lp-ugc-video__heading {
    font-size: 30px;
  }

  #video.lp-ugc-video .lp-ugc-video__description {
    font-size: 15px;
  }
}

.lp-ugc-video__scroller {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 20px 10px;
  margin: 0 -20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

/* ============================================================
   DOMINO & JULIETTE — UGC VIDEO SECTION
============================================================ */

.lp-ugc-video {
  --lp-teal: #06BDB2;
  --lp-blue: #4F90EA;
  --lp-pink: #FE76C2;
  --lp-magenta: #FF1568;
  --lp-gold: #FFBA06;
  --lp-purple-light: #C496FF;
  --lp-navy: #3B2A59;
  --lp-gray: #E6E7E8;
  --lp-white: #FFFFFF;
  --lp-ink: #241933;
  --lp-ink-soft: #5B5468;
  --lp-radius-sm: 14px;
  --lp-radius-md: 20px;
  --lp-radius-lg: 28px;
  --lp-radius-pill: 999px;
  --lp-shadow-card: 0 8px 24px rgba(59, 42, 89, 0.10);
  width: 100%;
  display: block;
  padding: 48px 0 56px;
  background: var(--lp-white);
  overflow: hidden;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif !important;
}

/* ============================================================
   ALL ELEMENTS
============================================================ */

.lp-ugc-video,
.lp-ugc-video * {
  box-sizing: border-box;
}

/* ============================================================
   SECTION CONTAINER
============================================================ */

.lp-ugc-video__container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* ============================================================
   SECTION HEADER
   IMPORTANT: THIS CENTERS THE WHOLE HEADER
============================================================ */

.lp-ugc-video__section-head {
  display: block;
  width: 100%;
  max-width: 640px;
  margin: 0 auto 36px;
  padding: 0;
  text-align: center !important;
}

/* ============================================================
   KICKER
============================================================ */

.lp-ugc-video__kicker {
  display: table;
  margin: 0 auto 14px;
  padding: 7px 15px;
  border-radius: var(--lp-radius-pill);
  background: rgba(255, 21, 104, 0.08);
  color: var(--lp-magenta);
  font-family: 'Poppins', sans-serif !important;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center !important;
}

/* ============================================================
   HEADING
============================================================ */

.lp-ugc-video__heading {
  display: block;
  width: 100%;
  max-width: 640px;
  margin: 0 auto 14px !important;
  padding: 0;
  color: var(--lp-navy);
  font-family: 'Poppins', sans-serif !important;
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-align: center !important;
}

/* ============================================================
   DESCRIPTION
============================================================ */

.lp-ugc-video__description {
  display: block;
  width: 100%;
  max-width: 620px;
  margin: 0 auto !important;
  padding: 0;
  color: var(--lp-ink-soft);
  font-family: 'Poppins', sans-serif !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center !important;
}

/* ============================================================
   VIDEO SCROLLER
============================================================ */

.lp-ugc-video__scroller {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 6px 20px 10px;
  overflow: visible;
  box-sizing: border-box;
}

/* ============================================================
   HIDE SCROLLBAR
============================================================ */

.lp-ugc-video__scroller::-webkit-scrollbar {
  display: none;
}

/* ============================================================
   VIDEO CARD
============================================================ */

.lp-ugc-video__card {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #000000;
  border-radius: var(--lp-radius-lg);
  box-shadow: var(--lp-shadow-card);
  box-sizing: border-box;
}

/* ============================================================
   VIDEO / IMAGE
============================================================ */

.lp-ugc-video__video {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  object-fit: cover;
  object-position: center;
  border: 0;
  background: #000000;
}

/* ============================================================
   POSTER IMAGE
============================================================ */

.lp-ugc-video__poster-only {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* ============================================================
   PLACEHOLDER
============================================================ */

.lp-ugc-video__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 20px;
  background: #F5F3F7;
  color: var(--lp-ink-soft);
  font-family: 'Poppins', sans-serif !important;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

/* ============================================================
   UGC TAG
============================================================ */

.lp-ugc-video__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 5px 10px;
  border-radius: var(--lp-radius-pill);
  background: rgba(255, 255, 255, 0.92);
  color: var(--lp-navy);
  font-family: 'Poppins', sans-serif !important;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

/* ============================================================
   SOUND ICON
============================================================ */

.lp-ugc-video__sound {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.90);
  border-radius: 50%;
  font-size: 14px;
  line-height: 1;
}

/* ============================================================
   CAPTION
============================================================ */

.lp-ugc-video__caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 4;
  display: block;
  padding-right: 44px;
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif !important;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* ============================================================
   DESKTOP
============================================================ */

@media screen and (min-width: 720px) {
  .lp-ugc-video {
    padding: 56px 0 64px;
  }

  /* HEADER CENTER */

  .lp-ugc-video__section-head {
    width: 100%;
    max-width: 640px;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .lp-ugc-video__kicker {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .lp-ugc-video__heading {
    width: 100%;
    max-width: 640px;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .lp-ugc-video__description {
    width: 100%;
    max-width: 620px;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  /* VIDEO GRID */

  .lp-ugc-video__scroller {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    overflow: visible;
  }

  .lp-ugc-video__card {
    width: 100%;
    max-width: none;
    flex: none;
  }
}

/* ============================================================
   LARGE DESKTOP
============================================================ */

@media screen and (min-width: 1200px) {
  .lp-ugc-video__scroller {
    padding-left: 0;
    padding-right: 0;
    gap: 16px;
  }
}

/* ============================================================
   TABLET
============================================================ */

@media screen and (min-width: 720px)
and (max-width: 989px) {
  .lp-ugc-video {
    padding: 48px 0 56px;
  }

  .lp-ugc-video__container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .lp-ugc-video__section-head {
    width: 100%;
    max-width: 640px;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .lp-ugc-video__heading {
    font-size: 36px;
    text-align: center !important;
  }

  .lp-ugc-video__description {
    text-align: center !important;
  }

  .lp-ugc-video__scroller {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ============================================================
   MOBILE
============================================================ */

@media screen and (max-width: 719px) {
  .lp-ugc-video {
    padding: 40px 0 48px;
  }

  .lp-ugc-video__container {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    margin-left: auto;
    margin-right: auto;
  }

  /* CENTER MOBILE HEADER */

  .lp-ugc-video__section-head {
    width: 100%;
    max-width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .lp-ugc-video__kicker {
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 12px;
    text-align: center !important;
  }

  .lp-ugc-video__heading {
    width: 100%;
    max-width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 30px;
    line-height: 1.15;
    text-align: center !important;
  }

  .lp-ugc-video__description {
    width: 100%;
    max-width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 15px;
    line-height: 1.5;
    text-align: center !important;
  }

  /* MOBILE HORIZONTAL SCROLL */

  .lp-ugc-video__scroller {
    display: flex;
    width: 100%;
    gap: 16px;
    margin: 0;
    padding: 6px 16px 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .lp-ugc-video__card {
    flex: 0 0 78%;
    width: 78%;
    max-width: 320px;
    aspect-ratio: 9 / 16;
    scroll-snap-align: center;
  }

  .lp-ugc-video__tag {
    top: 12px;
    left: 12px;
    font-size: 10px;
  }

  .lp-ugc-video__sound {
    right: 12px;
    bottom: 12px;
    width: 32px;
    height: 32px;
  }

  .lp-ugc-video__caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding-right: 40px;
    font-size: 12px;
  }
}

/* ============================================================
   SMALL MOBILE — 425px
============================================================ */

@media screen and (max-width: 425px) {
  .lp-ugc-video {
    padding-top: 36px;
  }

  .lp-ugc-video__container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .lp-ugc-video__section-head {
    width: 100%;
    max-width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .lp-ugc-video__heading {
    width: 100%;
    max-width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 29px;
    line-height: 1.12;
    text-align: center !important;
  }

  .lp-ugc-video__description {
    width: 100%;
    max-width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 14px;
    text-align: center !important;
  }

  .lp-ugc-video__scroller {
    padding-left: 14px;
    padding-right: 14px;
    gap: 12px;
  }

  .lp-ugc-video__card {
    flex-basis: 82%;
    max-width: 320px;
  }
}

/* ============================================================
   FINAL CENTERING OVERRIDE
   Protects against Shopify/Dawn theme CSS
============================================================ */

.lp-ugc-video .lp-ugc-video__section-head {
  display: block !important;
  width: 100% !important;
  max-width: 640px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.lp-ugc-video .lp-ugc-video__kicker {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.lp-ugc-video .lp-ugc-video__heading {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.lp-ugc-video .lp-ugc-video__description {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}
/*landing page best-seller grid*/
/* ============================================================
   BEST SELLERS SECTION
============================================================ */

#lp-best-sellers-{{ section.id }}.lp-best-sellers {
  --lp-navy: #3B2A59;
  --lp-ink: #241933;
  --lp-ink-soft: #5B5468;
  --lp-purple: #3B2A59;
  --lp-magenta: #FF1568;
  --lp-pink-light: #FFF0F6;
  --lp-teal: #06BDB2;
  --lp-gold: #FFBA06;
  --lp-border: #E2E2E5;
  --lp-card-bg: #F7F5F8;
  --lp-white: #FFFFFF;
  --lp-radius-card: 22px;
  --lp-radius-pill: 999px;
  --lp-shadow: 0 10px 30px rgba(59, 42, 89, 0.08);
  width: 100%;
  display: block;
  padding: 70px 0 80px;
  background: #FFFFFF;
  overflow: hidden;
  box-sizing: border-box;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

#lp-best-sellers-{{ section.id }}.lp-best-sellers * {
  box-sizing: border-box;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

/* ============================================================
   CONTAINER
============================================================ */

#lp-best-sellers-{{ section.id }} .lp-best-sellers__container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   SECTION HEADER
============================================================ */

#lp-best-sellers-{{ section.id }} .lp-best-sellers__section-head {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 42px;
  padding: 0;
  text-align: center;
}

#lp-best-sellers-{{ section.id }} .lp-best-sellers__kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  padding: 8px 16px;
  border-radius: var(--lp-radius-pill);
  background: var(--lp-pink-light);
  color: var(--lp-magenta);
  font-size: 13GGGGGpx;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}

#lp-best-sellers-{{ section.id }} .lp-best-sellers__heading {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 18px;
  padding: 0;
  color: var(--lp-navy);
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-align: center;
}

#lp-best-sellers-{{ section.id }} .lp-best-sellers__description {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  padding: 0;
  color: var(--lp-ink-soft);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  text-align: center;
}

/* ============================================================
   FILTERS
============================================================ */

#lp-best-sellers-{{ section.id }} .lp-best-sellers__filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  margin: 0 auto 36px;
}

#lp-best-sellers-{{ section.id }} .lp-best-sellers__filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 22px;
  border: 2px solid var(--lp-border);
  border-radius: var(--lp-radius-pill);
  background: #FFFFFF;
  color: var(--lp-navy);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

#lp-best-sellers-{{ section.id }} .lp-best-sellers__filter:hover {
  transform: translateY(-1px);
  border-color: var(--lp-navy);
}

#lp-best-sellers-{{ section.id }} .lp-best-sellers__filter.is-active {
  border-color: var(--lp-navy);
  background: var(--lp-navy);
  color: #FFFFFF;
}

/* ============================================================
   PRODUCT GRID
============================================================ */

#lp-best-sellers-{{ section.id }} .lp-best-sellers__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  width: 100%;
  align-items: stretch;
}

/* ============================================================
   PRODUCT CARD
============================================================ */

#lp-best-sellers-{{ section.id }} .lp-best-sellers__card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #FFFFFF;
  border-radius: var(--lp-radius-card);
  box-shadow: var(--lp-shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}

#lp-best-sellers-{{ section.id }} .lp-best-sellers__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(59, 42, 89, 0.12);
}

#lp-best-sellers-{{ section.id }} .lp-best-sellers__card.is-hidden {
  display: none;
}

/* ============================================================
   IMAGE
============================================================ */

#lp-best-sellers-{{ section.id }} .lp-best-sellers__image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--lp-card-bg);
}

#lp-best-sellers-{{ section.id }} .lp-best-sellers__image-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

#lp-best-sellers-{{ section.id }} .lp-best-sellers__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform .3s ease;
}

#lp-best-sellers-{{ section.id }} .lp-best-sellers__card:hover .lp-best-sellers__image {
  transform: scale(1.025);
}

#lp-best-sellers-{{ section.id }} .lp-best-sellers__image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--lp-ink-soft);
  font-size: 13px;
}

/* ============================================================
   CONTENT
============================================================ */

#lp-best-sellers-{{ section.id }} .lp-best-sellers__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 330px;
  padding: 18px 16px 20px;
}

#lp-best-sellers-{{ section.id }} .lp-best-sellers__category {
  display: block;
  height: 15px;
  margin-bottom: 7px;
  color: var(--lp-teal);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .06em;
  text-transform: uppercase;
  flex-shrink: 0;
}

#lp-best-sellers-{{ section.id }} .lp-best-sellers__title {
  display: -webkit-box;
  height: 38px;
  min-height: 38px;
  margin: 0 0 8px;
  padding: 0;
  color: var(--lp-navy);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  flex-shrink: 0;
}

#lp-best-sellers-{{ section.id }} .lp-best-sellers__title a {
  color: inherit;
  text-decoration: none;
}

/* ============================================================
   DESCRIPTION
============================================================ */

#lp-best-sellers-{{ section.id }} .lp-best-sellers__description-wrap {
  height: 57px;
  min-height: 57px;
  margin: 0 0 10px;
  overflow: hidden;
  flex-shrink: 0;
}

#lp-best-sellers-{{ section.id }} .lp-best-sellers__product-description {
  display: -webkit-box;
  height: 57px;
  margin: 0;
  color: var(--lp-ink-soft);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* ============================================================
   RATING
============================================================ */

#lp-best-sellers-{{ section.id }} .lp-best-sellers__rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  height: 20px;
  min-height: 20px;
  margin: 0 0 10px;
  flex-shrink: 0;
}

#lp-best-sellers-{{ section.id }} .lp-best-sellers__stars {
  color: var(--lp-gold);
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1;
}

#lp-best-sellers-{{ section.id }} .lp-best-sellers__rating-value {
  color: var(--lp-ink);
  font-size: 12px;
  font-weight: 600;
}

#lp-best-sellers-{{ section.id }} .lp-best-sellers__review-count {
  color: var(--lp-ink-soft);
  font-size: 12px;
}

/* ============================================================
   PRICE
============================================================ */

#lp-best-sellers-{{ section.id }} .lp-best-sellers__price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  min-height: 25px;
  margin: 0 0 12px;
  flex-shrink: 0;
}

#lp-best-sellers-{{ section.id }} .lp-best-sellers__price {
  color: var(--lp-navy);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
}

#lp-best-sellers-{{ section.id }} .lp-best-sellers__compare-price {
  color: #77727F;
  font-size: 12px;
  line-height: 1.2;
}

#lp-best-sellers-{{ section.id }} .lp-best-sellers__saving {
  color: #009A72;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
}

/* ============================================================
   QUICK ADD
============================================================ */

#lp-best-sellers-{{ section.id }} .lp-best-sellers__quick-add {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  min-height: 44px;
  margin-top: auto;
  padding: 11px 18px;
  border: 0;
  border-radius: var(--lp-radius-pill);
  background: var(--lp-navy);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s ease, transform .2s ease, opacity .2s ease;
}

#lp-best-sellers-{{ section.id }} .lp-best-sellers__quick-add:hover {
  background: #FF1568;
  transform: translateY(-1px);
}

#lp-best-sellers-{{ section.id }} .lp-best-sellers__quick-add:disabled {
  opacity: .55;
  cursor: not-allowed;
  transform: none;
}

#lp-best-sellers-{{ section.id }} .lp-best-sellers__quick-add.is-loading {
  opacity: .65;
  cursor: wait;
}

#lp-best-sellers-{{ section.id }} .lp-best-sellers__quick-add.is-added {
  background: var(--lp-teal);
}

/* ============================================================
   EMPTY
============================================================ */

#lp-best-sellers-{{ section.id }} .lp-best-sellers__empty {
  grid-column: 1 / -1;
  padding: 40px 20px;
  color: var(--lp-ink-soft);
  font-size: 14px;
  text-align: center;
}

/* ============================================================
   TABLET
============================================================ */

@media screen and (max-width: 989px) {
  #lp-best-sellers-{{ section.id }} .lp-best-sellers__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  #lp-best-sellers-{{ section.id }} .lp-best-sellers__content {
    min-height: 325px;
  }
}

/* ============================================================
   MOBILE
============================================================ */

@media screen and (max-width: 749px) {
  #lp-best-sellers-{{ section.id }}.lp-best-sellers {
    padding: 48px 0 56px;
  }

  #lp-best-sellers-{{ section.id }} .lp-best-sellers__container {
    padding: 0 16px;
  }

  #lp-best-sellers-{{ section.id }} .lp-best-sellers__section-head {
    margin-bottom: 30px;
  }

  #lp-best-sellers-{{ section.id }} .lp-best-sellers__heading {
    font-size: 30px;
    line-height: 1.12;
  }

  #lp-best-sellers-{{ section.id }} .lp-best-sellers__description {
    font-size: 14px;
  }

  #lp-best-sellers-{{ section.id }} .lp-best-sellers__filters {
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
    padding: 0 16px 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
  }

  #lp-best-sellers-{{ section.id }} .lp-best-sellers__filters::-webkit-scrollbar {
    display: none;
  }

  #lp-best-sellers-{{ section.id }} .lp-best-sellers__filter {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 10px 17px;
    font-size: 12px;
  }

  #lp-best-sellers-{{ section.id }} .lp-best-sellers__grid {
    display: flex;
    gap: 14px;
    width: calc(100% + 32px);
    margin-left: -16px;
    padding: 6px 16px 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  #lp-best-sellers-{{ section.id }} .lp-best-sellers__grid::-webkit-scrollbar {
    display: none;
  }

  #lp-best-sellers-{{ section.id }} .lp-best-sellers__card {
    flex: 0 0 78%;
    width: 78%;
    max-width: 320px;
    scroll-snap-align: center;
  }

  #lp-best-sellers-{{ section.id }} .lp-best-sellers__card.is-hidden {
    display: none;
  }

  #lp-best-sellers-{{ section.id }} .lp-best-sellers__content {
    min-height: 325px;
  }
}

/* ============================================================
   SMALL MOBILE
============================================================ */

@media screen and (max-width: 425px) {
  #lp-best-sellers-{{ section.id }} .lp-best-sellers__heading {
    font-size: 29px;
  }

  #lp-best-sellers-{{ section.id }} .lp-best-sellers__card {
    flex-basis: 82%;
    width: 82%;
  }

  #lp-best-sellers-{{ section.id }} .lp-best-sellers__content {
    min-height: 325px;
    padding: 16px 14px 18px;
  }

  #lp-best-sellers-{{ section.id }} .lp-best-sellers__title {
    font-size: 15px;
  }
}
/*LP PRESS BRAND LOGO*/
.lp-press-band {
  --lp-navy: #3B2A59;
  --lp-magenta: #FF1568;
  --lp-gold: #FFBA06;
  --lp-gray: #E6E7E8;
  --lp-white: #FFFFFF;
  --lp-ink: #241933;
  --lp-ink-soft: #5B5468;
  --lp-radius-sm: 14px;
  --lp-radius-pill: 999px;
  width: 100%;
  display: block;
  margin: 0;
  padding: 56px 20px 60px;
  background: #F5F4F7;
  box-sizing: border-box;
  text-align: center;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.lp-press-band * {
  box-sizing: border-box;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.lp-press-band__container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.lp-press-band__quote {
  display: block;
  width: 100%;
  max-width: 650px;
  margin: 0 auto 24px;
  padding: 0;
  border: 0;
  color: var(--lp-navy);
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  text-align: center;
  font-style: normal;
}

.lp-press-band__quote-mark {
  color: var(--lp-navy);
  font-style: normal;
  font-weight: 700;
}

.lp-press-band__quote-before {
  color: var(--lp-navy);
  font-style: normal;
  font-weight: 700;
}

.lp-press-band__quote-highlight {
  color: var(--lp-magenta);
  font-style: normal;
  font-weight: 700;
}

.lp-press-band__quote-after {
  color: var(--lp-navy);
  font-style: normal;
  font-weight: 700;
}

.lp-press-band__source {
  display: block;
  width: 100%;
  max-width: 850px;
  margin: 0 auto 28px;
  padding: 0;
  color: var(--lp-ink-soft);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  font-style: normal;
}

.lp-press-band__source-name {
  color: var(--lp-ink-soft);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
}

.lp-press-band__article-title {
  color: var(--lp-ink-soft);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
}

.lp-press-band__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  margin: 0 auto 27px;
  padding: 0;
  color: var(--lp-ink-soft);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
}

.lp-press-band__stars {
  display: inline-block;
  color: var(--lp-gold);
  font-family: Arial, sans-serif !important;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
  white-space: nowrap;
}

.lp-press-band__rating-value {
  color: var(--lp-ink);
  font-size: 15px;
  font-weight: 700;
  font-style: normal;
}

.lp-press-band__rating-text {
  color: var(--lp-ink-soft);
  font-size: 15px;
  font-weight: 400;
  font-style: normal;
}

.lp-press-band__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.lp-press-band__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: auto;
  min-height: auto;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #777078;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.lp-press-band__logo:hover {
  transform: translateY(-1px);
  box-shadow: none;
}

.lp-press-band__logo img {
  display: block;
  width: auto;
  max-width: 130px;
  max-height: 28px;
  margin: 0;
  object-fit: contain;
}

.lp-press-band__logo--text {
  color: #777078;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}

@media screen and (min-width: 750px) {
  .lp-press-band {
    padding: 88px 0;
  }

  .lp-press-band__quote {
    max-width: 650px;
    font-size: 24px;
    line-height: 1.35;
  }

  .lp-press-band__source {
    margin-bottom: 28px;
  }

  .lp-press-band__logos {
    gap: 28px;
  }
}

@media screen and (max-width: 749px) {
  .lp-press-band {
    padding: 44px 18px 48px;
  }

  .lp-press-band__container {
    width: 100%;
  }

  .lp-press-band__quote {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: 23px;
    line-height: 1.35;
    font-weight: 700;
    text-align: center;
  }

  .lp-press-band__source {
    max-width: 100%;
    margin-bottom: 24px;
    font-size: 11px;
    line-height: 1.5;
    text-align: center;
  }

  .lp-press-band__source-name {
    font-size: 11px;
  }

  .lp-press-band__article-title {
    font-size: 11px;
  }

  .lp-press-band__rating {
    gap: 6px;
    margin-bottom: 25px;
    font-size: 12px;
  }

  .lp-press-band__stars {
    font-size: 15px;
  }

  .lp-press-band__rating-value {
    font-size: 12px;
  }

  .lp-press-band__rating-text {
    font-size: 12px;
  }

  .lp-press-band__logos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
  }

  .lp-press-band__logo {
    width: 100%;
  }

  .lp-press-band__logo img {
    max-width: 105px;
    max-height: 24px;
  }

  .lp-press-band__logo--text {
    font-size: 10px;
    white-space: normal;
  }
}

@media screen and (max-width: 425px) {
  .lp-press-band {
    padding: 40px 14px 44px;
  }

  .lp-press-band__quote {
    font-size: 21px;
    line-height: 1.35;
  }

  .lp-press-band__source {
    font-size: 10.5px;
  }

  .lp-press-band__source-name {
    font-size: 10.5px;
  }

  .lp-press-band__article-title {
    font-size: 10.5px;
  }

  .lp-press-band__logos {
    gap: 16px 8px;
  }

  .lp-press-band__logo--text {
    font-size: 9px;
  }
}

.lp-press-band,
.lp-press-band blockquote,
.lp-press-band span,
.lp-press-band p,
.lp-press-band strong,
.lp-press-band em,
.lp-press-band__quote,
.lp-press-band__quote-mark,
.lp-press-band__quote-before,
.lp-press-band__quote-highlight,
.lp-press-band__quote-after,
.lp-press-band__source,
.lp-press-band__source-name,
.lp-press-band__article-title {
  font-style: normal !important;
}

/*LP TESTIMONIAL CSS*/
.lp-testimonials {
  --testimonial-navy: #3B2A59;
  --testimonial-text: #071442;
  --testimonial-text-soft: #4E5770;
  --testimonial-pink: #FF1568;
  --testimonial-pink-light: #FDE8F1;
  --testimonial-purple: #B57BFF;
  --testimonial-gold: #FFB000;
  --testimonial-card: #FFFFFF;
  width: 100%;
  display: block;
  padding: 88px 0;
  background: linear-gradient(110deg, #FFF5FA 0%, #FFFFFF 48%, #F3FAFB 100%);
  overflow: hidden;
  box-sizing: border-box;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

.lp-testimonials * {
  box-sizing: border-box;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

.lp-testimonials__container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.lp-testimonials__header {
  width: 100%;
  margin: 0 auto 38px;
  text-align: center;
}

.lp-testimonials__kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--testimonial-pink-light);
  color: var(--testimonial-pink);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lp-testimonials__heading {
  width: 100%;
  margin: 0;
  padding: 0;
  color: var(--testimonial-navy);
  font-size: clamp(34px, 5vw, 44px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-align: center;
}

.lp-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  align-items: stretch;
}

.lp-testimonials__card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 230px;
  padding: 27px 24px 25px;
  background: var(--testimonial-card);
  border-radius: 28px;
  box-shadow: 0 10px 28px rgba(59, 42, 89, 0.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.lp-testimonials__rating {
  display: flex;
  align-items: center;
  gap: 1px;
  height: 18px;
  margin-bottom: 14px;
}

.lp-testimonials__star {
  display: inline-block;
  color: var(--testimonial-gold);
  font-size: 15px;
  line-height: 1;
}

.lp-testimonials__star--empty {
  opacity: .25;
}

.lp-testimonials__quote {
  margin: 0;
  color: var(--testimonial-text);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  flex: 1;
}

.lp-testimonials__quote p {
  margin: 0;
}

.lp-testimonials__quote p + p {
  margin-top: 8px;
}

.lp-testimonials__customer {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 19px;
}

.lp-testimonials__avatar {
  width: 39px;
  height: 39px;
  min-width: 39px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #B77CFF;
}

.lp-testimonials__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-testimonials__avatar-letter {
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.lp-testimonials__customer-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.lp-testimonials__customer-name {
  color: var(--testimonial-navy);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.lp-testimonials__customer-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: #60677A;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.35;
}

.lp-testimonials__separator {
  margin: 0 4px;
}

.lp-testimonials__empty {
  padding: 40px 20px;
  color: var(--testimonial-text-soft);
  text-align: center;
  font-size: 14px;
}

@media screen and (max-width: 989px) {
  .lp-testimonials__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .lp-testimonials__card {
    padding: 23px 18px 22px;
    border-radius: 24px;
  }

  .lp-testimonials__quote {
    font-size: 14px;
    line-height: 1.5;
  }
}

@media screen and (max-width: 749px) {
  .lp-testimonials {
    padding: 52px 0 58px;
  }

  .lp-testimonials__container {
    padding: 0 16px;
  }

  .lp-testimonials__header {
    margin-bottom: 30px;
  }

  .lp-testimonials__kicker {
    margin-bottom: 13px;
    padding: 7px 14px;
    font-size: 10px;
  }

  .lp-testimonials__heading {
    font-size: 30px;
    line-height: 1.12;
  }

  .lp-testimonials__grid {
    display: flex;
    gap: 14px;
    width: calc(100% + 32px);
    margin-left: -16px;
    padding: 5px 16px 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .lp-testimonials__grid::-webkit-scrollbar {
    display: none;
  }

  .lp-testimonials__card {
    flex: 0 0 86%;
    width: 86%;
    max-width: 360px;
    min-height: 235px;
    padding: 23px 20px;
    scroll-snap-align: center;
    border-radius: 24px;
  }

  .lp-testimonials__quote {
    font-size: 14px;
    line-height: 1.5;
  }
}

@media screen and (max-width: 425px) {
  .lp-testimonials__heading {
    font-size: 29px;
  }

  .lp-testimonials__card {
    flex-basis: 88%;
    width: 88%;
    min-height: 230px;
    padding: 22px 18px;
  }

  .lp-testimonials__quote {
    font-size: 13.5px;
  }
}

/*WHY PARAENTS LOVE SECTION CSS*/
.why-parents-love-section {
  width: 100%;
  font-family: 'Poppins', sans-serif;
}

.why-parents-love-section *,
.why-parents-love-section *::before,
.why-parents-love-section *::after {
  box-sizing: border-box;
}

.why-parents-love-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.why-parents-eyebrow {
  display: table;
  margin: 0 auto 14px;
  padding: 7px 15px;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}

.why-parents-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.8px;
  text-align: center;
}

.why-parents-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
}

.why-parent-card {
  min-height: 150px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

{% if section.settings.enable_hover %}
.why-parent-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.07);
}
{% endif %}

.why-parent-emoji {
  margin-bottom: 11px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
  text-align: center;
}

.why-parent-title {
  margin: 0 0 5px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.25;
  font-weight: 800;
  text-align: center;
}

.why-parent-description {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  line-height: 1.35;
  font-weight: 400;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .why-parents-love-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .why-parents-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-parents-heading {
    font-size: 34px;
  }
}

@media screen and (max-width: 749px) {
  .why-parents-love-container {
    padding: 0 15px;
  }

  .why-parents-eyebrow {
    margin-bottom: 12px;
    padding: 7px 12px;
    font-size: 10px;
    letter-spacing: 0.8px;
  }

  .why-parents-heading {
    max-width: 100%;
    margin-bottom: 28px;
    line-height: 1.08;
    letter-spacing: -0.4px;
  }

  .why-parents-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .why-parent-card {
    min-height: 145px;
    padding: 22px 14px;
  }

  .why-parent-emoji {
    width: 48px;
    height: 48px;
    margin-bottom: 9px;
    font-size: 25px;
  }

  .why-parent-title {
    margin-bottom: 4px;
    font-size: 13px;
    line-height: 1.2;
  }

  .why-parent-description {
    font-size: 11px;
    line-height: 1.3;
  }
}

@media screen and (max-width: 420px) {
  .why-parents-love-container {
    padding: 0 12px;
  }

  .why-parents-grid {
    gap: 9px;
  }

  .why-parent-card {
    min-height: 140px;
    padding: 22px 14px;
  }

  .why-parent-emoji {
    width: 45px;
    height: 45px;
    font-size: 23px;
  }

  .why-parent-title {
    font-size: 12px;
  }

  .why-parent-description {
    font-size: 10px;
  }
}

@media screen and (max-width: 360px) {
  .why-parents-grid {
    gap: 7px;
  }

  .why-parent-card {
    min-height: 135px;
    padding: 22px 14px;
  }

  .why-parent-emoji {
    width: 42px;
    height: 42px;
    margin-bottom: 7px;
    font-size: 21px;
  }

  .why-parent-title {
    font-size: 14px;
  }

  .why-parent-description {
    font-size: 12px;
  }
}
/*PLAY BRIGHTER SCTION CSS*/
.play-brighter-section {
  width: 100%;
  font-family: 'Poppins', sans-serif;
}

.play-brighter-section *,
.play-brighter-section *::before,
.play-brighter-section *::after {
  box-sizing: border-box;
}

.play-brighter-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.play-brighter-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
}

.play-brighter-image-column {
  width: 100%;
}

.play-brighter-image-wrapper {
  width: 100%;
  overflow: hidden;
}

.play-brighter-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.play-brighter-content {
  width: 100%;
}

.play-brighter-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  padding: 7px 15px;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.play-brighter-heading {
  max-width: 650px;
  margin: 0 0 20px;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.8px;
}

.play-brighter-description {
  max-width: 620px;
  margin: 0 0 20px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.5;
  font-weight: 400;
}

.play-brighter-description p {
  margin: 0;
  font-family: 'Poppins', sans-serif !important;
}

.play-brighter-features {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.play-brighter-feature {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 15px;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
}

@media screen and (max-width: 990px) {
  .play-brighter-wrapper {
    gap: 35px;
  }

  .play-brighter-heading {
    font-size: 34px;
  }

  .play-brighter-description {
    font-size: 15px;
  }

  .play-brighter-feature {
    font-size: 12px;
    padding: 8px 12px;
  }
}

@media screen and (max-width: 768px) {
  .play-brighter-container {
    padding: 0 20px;
  }

  .play-brighter-wrapper {
    grid-template-columns: 1fr !important;
  }

  .play-brighter-image-column {
    order: 1;
  }

  .play-brighter-content {
    order: 2;
    max-width: 100%;
  }

  .play-brighter-image {
    width: 100%;
    aspect-ratio: 1.65 / 1;
    object-fit: cover;
  }

  .play-brighter-badge {
    margin-bottom: 14px;
    padding: 7px 14px;
    font-size: 11px;
  }

  .play-brighter-heading {
    max-width: 100%;
    margin-bottom: 16px;
    line-height: 1.08;
    letter-spacing: -0.4px;
  }

  .play-brighter-description {
    max-width: 100%;
    margin-bottom: 18px;
    line-height: 1.45;
  }

  .play-brighter-features {
    gap: 8px;
  }

  .play-brighter-feature {
    min-height: 34px;
    padding: 7px 12px;
    font-size: 11px;
  }
}

@media screen and (max-width: 480px) {
  .play-brighter-container {
    padding: 0 15px;
  }

  .play-brighter-description {
    font-size: 13px;
  }

  .play-brighter-features {
    gap: 7px;
  }

  .play-brighter-feature {
    padding: 7px 10px;
    font-size: 10px;
  }
}

/*BUNDLE & SAVE*/
.bundle-save-section {
  width: 100%;
  font-family: 'Poppins', sans-serif;
}

.bundle-save-section *,
.bundle-save-section *::before,
.bundle-save-section *::after {
  box-sizing: border-box;
}

.bundle-save-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.bundle-save-badge {
  display: table;
  margin: 0 auto 12px;
  padding: 6px 13px;
  border-radius: 30px;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
}

.bundle-save-heading {
  margin: 0 0 10px;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-align: center;
}

.bundle-save-description {
  max-width: 750px;
  margin: 0 auto 28px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.5;
  font-weight: 400;
  text-align: center;
}

.bundle-save-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
}

.bundle-save-card {
  width: 100%;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  box-shadow: 0 6px 22px rgba(52, 38, 79, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bundle-save-image-link {
  display: block;
  width: 100%;
  text-decoration: none;
}

.bundle-save-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #f7f7f7;
}

.bundle-save-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.bundle-save-placeholder {
  display: block;
  width: 100%;
  height: auto;
}

.bundle-save-content {
  padding: 14px 15px 16px;
}

.bundle-save-product-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 7px;
  padding: 5px 10px;
  border-radius: 30px;
  font-size: 9px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.bundle-save-product-badge-pink {
  background-color: #ff1764;
  color: #ffffff;
}

.bundle-save-product-badge-blue {
  background-color: #4c8ee8;
  color: #ffffff;
}

.bundle-save-product-title {
  margin: 0 0 5px;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  line-height: 1.25;
  font-weight: 800;
}

.bundle-save-product-title a {
  color: inherit;
  text-decoration: none;
}

.bundle-save-product-description {
  margin: 0 0 8px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.35;
  font-weight: 400;
}

.bundle-save-price-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 11px;
}

.bundle-save-price {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
}

.bundle-save-compare-price {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 400;
  text-decoration: line-through;
}

.bundle-save-savings {
  display: inline-flex;
  align-items: center;
  padding: 3px 7px;
  border-radius: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  line-height: 1;
  font-weight: 700;
}

.bundle-save-product-form {
  width: 100%;
  margin: 0;
}

.bundle-save-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 38px;
  padding: 11px;
  border: 0;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.bundle-save-button:hover {
  background-color: #FF1568;
}

.bundle-save-button:active {
  transform: scale(0.98);
}

.bundle-save-button-disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.bundle-save-empty {
  padding: 40px 20px;
  text-align: center;
}

.bundle-save-empty p {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}

.bundle-save-pagination {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

.bundle-save-pagination .pagination {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bundle-save-pagination .pagination a,
.bundle-save-pagination .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 34px;
  padding: 5px 10px;
  border-radius: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .bundle-save-container {
    padding: 0 15px;
  }

  .bundle-save-badge {
    margin-bottom: 10px;
    font-size: 9px;
  }

  .bundle-save-heading {
    margin-bottom: 8px;
    line-height: 1.1;
  }

  .bundle-save-description {
    margin-bottom: 22px;
  }

  .bundle-save-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 100%;
  }

  .bundle-save-content {
    padding: 20px;
  }

  .bundle-save-product-title {
    font-size: 16px;
  }

  .bundle-save-product-description {
    font-size: 11px;
  }
}

@media screen and (max-width: 480px) {
  .bundle-save-container {
    padding: 0 12px;
  }

  .bundle-save-heading {
    font-size: 26px;
  }

  .bundle-save-description {
    font-size: 12px;
  }

  .bundle-save-grid {
    gap: 14px;
  }

  .bundle-save-content {
    padding: 13px 12px 14px;
  }

  .bundle-save-product-title {
    font-size: 15px;
  }

  .bundle-save-price {
    font-size: 14px;
  }

  .bundle-save-button {
    min-height: 36px;
    font-size: 10px;
  }
}
/*COMPARISON CSS*/
.dj-difference-section {
  width: 100%;
  font-family: 'Poppins', sans-serif;
}

.dj-difference-section *,
.dj-difference-section *::before,
.dj-difference-section *::after {
  box-sizing: border-box;
}

.dj-difference-container {
  width: 100%;
  margin: 0 auto;
}

.dj-difference-badge {
  display: table;
  margin: 0 auto 15px;
  padding: 7px 15px;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-align: center;
}

.dj-difference-heading {
  max-width: 850px;
  margin: 0 auto 32px;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.7px;
  text-align: center;
}

.dj-difference-table {
  width: 100%;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 12px 30px rgba(45, 30, 65, 0.10);
}

.dj-difference-header {
  display: grid;
  grid-template-columns: 21% 42% 37%;
  min-height: 48px;
}

.dj-difference-header-feature {
  background-color: inherit;
}

.dj-difference-header-dj,
.dj-difference-header-toy {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}

.dj-difference-row {
  display: grid;
  grid-template-columns: 21% 42% 37%;
  min-height: 49px;
}

.dj-difference-feature {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.3;
  font-weight: 700;
}

.dj-difference-dj,
.dj-difference-toy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 12px 15px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.3;
  text-align: center;
}

.dj-difference-dj {
  font-weight: 700;
}

.dj-difference-toy {
  font-weight: 400;
}

.dj-difference-check,
.dj-difference-cross {
  white-space: nowrap;
}

.dj-difference-check {
  font-weight: 800;
}

.dj-difference-cross {
  font-weight: 700;
}

.dj-difference-value {
  display: inline;
}

.dj-difference-mobile-label {
  display: none;
}

.dj-difference-empty {
  padding: 40px 20px;
  border-radius: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .dj-difference-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .dj-difference-container {
    max-width: 100%;
  }

  .dj-difference-badge {
    margin-bottom: 14px;
    padding: 7px 14px;
    font-size: 10px;
  }

  .dj-difference-heading {
    max-width: 370px;
    margin-bottom: 34px;
    line-height: 1.12;
    letter-spacing: -0.5px;
  }

  .dj-difference-table {
    border-radius: 27px;
    box-shadow: 0 8px 25px rgba(45, 30, 65, 0.08);
  }

  .dj-difference-header {
    display: none;
  }

  .dj-difference-row {
    display: block;
    min-height: auto;
    padding: 18px 16px 19px;
  }

  .dj-difference-row:first-child {
    border-top: 0;
  }

  .dj-difference-feature {
    display: block;
    padding: 0;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.3;
  }

  .dj-difference-dj {
    display: block;
    padding: 0;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.45;
    text-align: left;
  }

  .dj-difference-toy {
    display: block;
    padding: 0;
    font-size: 14px;
    line-height: 1.45;
    text-align: left;
  }

  .dj-difference-mobile-label {
    display: inline;
    color: #FF1764;
    font-weight: 700;
  }

  .dj-difference-toy .dj-difference-mobile-label {
    color: #5B5468;
  }

  .dj-difference-check,
  .dj-difference-cross {
    margin-left: 2px;
  }
}

@media screen and (max-width: 480px) {
  .dj-difference-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .dj-difference-badge {
    margin-bottom: 15px;
    padding: 7px 14px;
    font-size: 10px;
  }

  .dj-difference-heading {
    max-width: 360px;
    margin-bottom: 34px;
    font-size: 26px;
    line-height: 1.12;
  }

  .dj-difference-table {
    border-radius: 27px;
  }

  .dj-difference-row {
    padding: 19px 16px 20px;
  }

  .dj-difference-feature {
    margin-bottom: 12px;
    font-size: 15px;
  }

  .dj-difference-dj {
    margin-bottom: 8px;
    font-size: 14px;
  }

  .dj-difference-toy {
    font-size: 14px;
  }
}

/*LP CUSTOM FAQ */
.dj-faq-section {
  width: 100%;
  font-family: 'Poppins', sans-serif;
}

.dj-faq-section *,
.dj-faq-section *::before,
.dj-faq-section *::after {
  box-sizing: border-box;
}

.dj-faq-container {
  width: 100%;
  margin: 0 auto;
}

.dj-faq-badge {
  display: table;
  margin: 0 auto 16px;
  padding: 7px 15px;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  text-align: center;
}

.dj-faq-heading {
  max-width: 700px;
  margin: 0 auto 48px;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.8px;
  text-align: center;
}

.dj-faq-list {
  width: 100%;
  margin: 0 auto;
}

.dj-faq-item {
  width: 100%;
}

.dj-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 18px 4px;
  border: 0;
  outline: none;
  background: transparent;
  font-family: 'Poppins', sans-serif;
  line-height: 1.4;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.dj-faq-question:focus-visible {
  outline: 2px solid;
  outline-offset: 4px;
}

.dj-faq-question-text {
  padding-right: 20px;
}

.dj-faq-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  font-family: Arial, sans-serif;
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
}

.dj-faq-plus,
.dj-faq-minus {
  position: absolute;
  display: block;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.dj-faq-plus {
  opacity: 1;
  transform: rotate(0deg);
  font-weight: 700;
}

.dj-faq-minus {
  opacity: 0;
  transform: rotate(-90deg);
}

.dj-faq-item.active .dj-faq-plus {
  opacity: 0;
  transform: rotate(90deg);
}

.dj-faq-item.active .dj-faq-minus {
  opacity: 1;
  transform: rotate(0deg);
  font-weight: 700;
}

.dj-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.3s ease;
}

.dj-faq-item.active .dj-faq-answer {
  grid-template-rows: 1fr;
}

.dj-faq-answer-content {
  min-height: 0;
  overflow: hidden;
  padding: 0;
  font-family: 'Poppins', sans-serif !important;
  line-height: 1.7;
  font-weight: 400;
}

.dj-faq-answer-content p {
  margin-top: 0;
  margin-bottom: 12px;
}

.dj-faq-answer-content p:last-child {
  margin-bottom: 0;
}

.dj-faq-item.active .dj-faq-answer-content {
  padding: 0 45px 20px 0;
}


/* ================================
   MOBILE
================================ */

@media screen and (max-width: 767px) {

  .dj-faq-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .dj-faq-container {
    max-width: 100%;
  }

  .dj-faq-badge {
    margin-bottom: 14px;
    padding: 7px 14px;
    font-size: 10px;
  }

  .dj-faq-heading {
    max-width: 370px;
    margin-bottom: 32px;
    line-height: 1.12;
    letter-spacing: -0.5px;
  }

  .dj-faq-list {
    max-width: 100%;
  }

  .dj-faq-question {
    min-height: 62px;
    padding: 16px 0;
    font-size: 14px;
    line-height: 1.4;
  }

  .dj-faq-question-text {
    padding-right: 15px;
  }

  .dj-faq-icon {
    flex-basis: 20px;
    width: 20px;
    height: 20px;
    font-size: 21px;
  }

  .dj-faq-answer-content {
    font-size: 13px;
    line-height: 1.6;
  }

  .dj-faq-item.active .dj-faq-answer-content {
    padding: 0 30px 18px 0;
  }
}


/* ================================
   SMALL MOBILE
================================ */

@media screen and (max-width: 480px) {

  .dj-faq-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .dj-faq-badge {
    margin-bottom: 14px;
  }

  .dj-faq-heading {
    max-width: 350px;
    margin-bottom: 30px;
    font-size: 27px;
    line-height: 1.12;
  }

  .dj-faq-question {
    min-height: 60px;
    padding: 16px 0;
    font-size: 14px;
  }

  .dj-faq-icon {
    font-size: 21px;
  }

  .dj-faq-answer-content {
    font-size: 13px;
  }

  .dj-faq-item.active .dj-faq-answer-content {
    padding: 0 25px 18px 0;
  }
}
/*LP UGC GRID CSS */
.dj-social-gallery {
  width: 100%;
  font-family: 'Poppins', sans-serif;
}

.dj-social-gallery *,
.dj-social-gallery *::before,
.dj-social-gallery *::after {
  box-sizing: border-box;
}

.dj-social-gallery-container {
  width: 100%;
  margin: 0 auto;
}

.dj-social-gallery-badge {
  display: table;
  margin: 0 auto 15px;
  padding: 7px 15px;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  text-align: center;
}

.dj-social-gallery-heading {
  max-width: 650px;
  margin: 0 auto 38px;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.8px;
  text-align: center;
}

.dj-social-gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  width: 100%;
  align-items: stretch;
}

.dj-social-gallery-item {
  position: relative;
  width: 100%;
  min-width: 0;
}

.dj-social-gallery-link {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: #F4F4F4;
  text-decoration: none;
}

.dj-social-gallery-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.dj-social-gallery-link:hover .dj-social-gallery-image {
  transform: scale(1.03);
}

.dj-social-gallery-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
}

.dj-social-gallery-icon svg {
  display: block;
  width: 14px;
  height: 14px;
  fill: #111111;
}

.dj-social-gallery-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #F1F1F1;
  color: #777777;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}


/* ========================================
   TABLET / MOBILE
======================================== */

@media screen and (max-width: 767px) {

  .dj-social-gallery {
    padding-left: 15px;
    padding-right: 15px;
  }

  .dj-social-gallery-container {
    max-width: 100%;
  }

  .dj-social-gallery-badge {
    margin-bottom: 14px;
    padding: 7px 14px;
    font-size: 10px;
  }

  .dj-social-gallery-heading {
    max-width: 370px;
    margin: 0 auto 30px;
    line-height: 1.12;
    letter-spacing: -0.5px;
  }

  .dj-social-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    overflow: visible;
    padding: 0;
  }

  .dj-social-gallery-item {
    width: 100%;
    min-width: 0;
  }

  .dj-social-gallery-link {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 11px;
  }

  .dj-social-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .dj-social-gallery-icon {
    top: 7px;
    right: 7px;
    width: 18px;
    height: 18px;
  }

  .dj-social-gallery-icon svg {
    width: 12px;
    height: 12px;
  }

  .dj-social-gallery-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 11px;
  }
}


/* ========================================
   SMALL MOBILE
======================================== */

@media screen and (max-width: 480px) {

  .dj-social-gallery {
    padding-left: 15px;
    padding-right: 15px;
  }

  .dj-social-gallery-badge {
    margin-bottom: 14px;
    padding: 7px 14px;
    font-size: 10px;
  }

  .dj-social-gallery-heading {
    max-width: 350px;
    margin: 0 auto 28px;
    font-size: 28px;
    line-height: 1.12;
    letter-spacing: -0.5px;
  }

  .dj-social-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .dj-social-gallery-item {
    width: 100%;
  }

  .dj-social-gallery-link {
    border-radius: 11px;
  }

  .dj-social-gallery-icon {
    top: 6px;
    right: 6px;
    width: 17px;
    height: 17px;
  }

  .dj-social-gallery-icon svg {
    width: 11px;
    height: 11px;
  }

  .dj-social-gallery-placeholder {
    border-radius: 11px;
  }
}


/* ========================================
   EXTRA SMALL MOBILE
======================================== */

@media screen and (max-width: 425px) {

  .dj-social-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/*LP FINAL SECTIONS CSS*/
.dj-final-cta *,
.dj-final-cta *::before,
.dj-final-cta *::after {
  box-sizing: border-box;
}

.dj-final-cta__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.dj-final-cta__heading {
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.8px;
  text-align: center;
}

.dj-final-cta__text {
  line-height: 1.5;
  font-weight: 400;
  text-align: center;
}

.dj-final-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 10px 20px rgba(70, 30, 90, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dj-final-cta__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 24px rgba(70, 30, 90, 0.18);
}

.dj-final-cta__arrow {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .dj-final-cta {
    padding: {{ section.settings.mobile_padding_top }}px 20px {{ section.settings.mobile_padding_bottom }}px;
  }

  .dj-final-cta__heading {
    max-width: 360px;
    margin-bottom: 12px;
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -0.5px;
  }

  .dj-final-cta__text {
    max-width: 350px;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.5;
  }

  .dj-final-cta__button {
    min-width: 210px;
    min-height: 56px;
    padding: 12px 25px;
    font-size: 14px;
    border-radius: 30px;
  }
}

@media screen and (max-width: 480px) {
  .dj-final-cta {
    padding: 45px 20px 50px;
  }

  .dj-final-cta__heading {
    max-width: 330px;
    font-size: 28px;
    line-height: 1.15;
  }

  .dj-final-cta__text {
    max-width: 320px;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 23px;
  }

  .dj-final-cta__button {
    min-width: 205px;
    min-height: 54px;
    font-size: 14px;
  }

  .dj-final-cta__arrow {
    font-size: 15px;
  }
}
/*LP TRUST ICON CSS*/
.dj-trust-benefits *,
.dj-trust-benefits *::before,
.dj-trust-benefits *::after {
  box-sizing: border-box;
}

.dj-trust-benefits__grid {
  width: 100%;
  align-items: start;
}

.dj-trust-benefits__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 18px 10px;
  text-align: center;
}

.dj-trust-benefits__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-align: center;
}

.dj-trust-benefits__heading {
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
}

.dj-trust-benefits__text {
  max-width: 240px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .dj-trust-benefits {
    padding: {{ section.settings.mobile_padding_top }}px 20px {{ section.settings.mobile_padding_bottom }}px;
  }

  .dj-trust-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
    row-gap: 35px;
  }

  .dj-trust-benefits__icon {
    width: 30px;
    height: 30px;
    margin-bottom: 8px;
    font-size: 24px;
  }

  .dj-trust-benefits__heading {
    margin-bottom: 3px;
    font-size: 13px;
    line-height: 1.3;
  }

  .dj-trust-benefits__text {
    max-width: 170px;
    font-size: 11px;
    line-height: 1.4;
  }
}

@media screen and (max-width: 480px) {
  .dj-trust-benefits {
    padding: 30px 16px;
  }

  .dj-trust-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    column-gap: 15px;
    row-gap: 30px;
  }

  .dj-trust-benefits__icon {
    width: 28px;
    height: 28px;
    margin-bottom: 7px;
    font-size: 23px;
  }

  .dj-trust-benefits__heading {
    font-size: 13.5px;
  }

  .dj-trust-benefits__text {
    max-width: 155px;
    font-size: 11.5px;
  }
}