/** Shopify CDN: Minification failed

Line 1072:10 Unexpected "{"
Line 1072:19 Expected ":"
Line 1073:16 Expected identifier but found whitespace
Line 1073:18 Unexpected "{"
Line 1073:27 Expected ":"
Line 1073:78 Expected ":"
Line 1074:19 Expected identifier but found whitespace
Line 1074:21 Unexpected "{"
Line 1074:30 Expected ":"
Line 1074:84 Expected ":"
... and 10 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:ltp-custom-2-column-accessories-2 (INDEX:4) */
.accessories-info-section {
  padding: 60px 0;
}

.accessories-info-section .accessories-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.accessories-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.accessories-wrapper.reverse-layout {
  direction: rtl;
}

.accessories-wrapper.reverse-layout > * {
  direction: ltr;
}

.accessories-content {
  padding-right: 20px;
}

.reverse-layout .accessories-content {
  padding-right: 0;
  padding-left: 20px;
}

.accessories-heading {
  font-size: 40px;
  font-family: 'Butler Regular';
  color: #533526;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.accessories-description {
  font-size: 20px;
  line-height: 1.6;
  color: #533526;
  margin: 0;
  font-family: 'Darker Grotesque Regular';
}

.accessories-image {
  position: relative;
}

.accessories-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #f5f5f5;
  aspect-ratio: 1/1;
}

.accessories-image-container img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.accessories-image-container:hover img {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .accessories-info-section {
    padding: 40px 0;
  }
  .accessories-info-section .accessories-container {
    padding: 0 15px;
  }
  .accessories-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .accessories-wrapper.reverse-layout {
    direction: ltr;
  }
  .accessories-content {
    padding-right: 0;
    order: 2;
  }
  .reverse-layout .accessories-content {
    padding-left: 0;
    order: 2;
  }
  .accessories-image {
    order: 1;
  }
  .accessories-heading {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  .accessories-image-container:hover img {
    transform: none;
  }
}

@media (max-width: 480px) {
  .accessories-info-section {
    padding: 30px 0;
  }
  .accessories-wrapper {
    gap: 20px;
  }
  .accessories-heading {
    font-size: 24px;
  }
  .accessories-description {
    font-size: 18px;
  }
}
/* END_SECTION:ltp-custom-2-column-accessories-2 */

/* START_SECTION:ltp-custom-logo-slider (INDEX:19) */
.logo-carousel-section {
    background-color: #F8F8F8;
    padding: 20px;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .section-heading {
    text-align: center;
    color: white;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 2px;
  }
  
  .quote-text {
    text-align: center;
    color: #424242;
    font-size: 25px;
    margin-bottom: 0px;
    font-family: 'Darker Grotesque Medium';
  }
  
  .logo-text {
    display: none;
    color: #424242;
    font-size: 18px;
    font-family: 'Darker Grotesque Medium';
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .carousel-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: visible !important;
    padding: 0 5% !important;
  }
  
  .logo-text-display {
    text-align: center;
    margin-bottom: 30px;
    min-height: 30px;
  }
  
  .logos-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 590px;
    will-change: transform;
  }
  
  .logo-item {
    flex: 0 0 auto;
    margin: 0 30px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(100%);
    opacity: 0.5;
    transform: scale(0.9);
    will-change: filter, opacity, transform;
  }
  
  .logo-item.active {
    filter: none;
    opacity: 1;
    transform: scale(1);
  }
  
  .logo-text.active {
    display: block;
    opacity: 1;
  }
  
  .logo-image {
    max-height: 60px;
    width: auto;
    display: block;
  }
  
  .logo-placeholder {
    width: 150px;
    height: 60px;
    background: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
  }
  
  .progress-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
  
  .progress-bar {
    width: 100px;
    height: 4px;
    background-color: #C7C7C7;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    margin-left: auto;
  }
  
  .progress-thumb {
    width: 0%;
    height: 100%;
    background-color: #2B2B2B;
    border-radius: 25px;
    transition: none;
    position: absolute;
    top: 0;
    left: 0;
    will-change: width;
  }
  
  @media (max-width: 768px) {
    .logo-carousel-section {
      padding: 40px 0;
      margin-top: -20px;
    }
    
    .container {
      padding: 0 15px;
    }
    
    .section-heading {
      font-size: 20px;
      margin-bottom: 15px;
    }
    
    .quote-text {
      font-size: 16px;
      margin-bottom: 30px;
      padding: 0 20px;
    }
    
    .logos-wrapper {
      display: flex !important;
      justify-content: center !important;
      align-items: center !important;
      margin-left: 0 !important;
      transform: none !important;
      position: static !important;
      width: 100% !important;
      left: auto !important;
    }
    
    .logo-item {
      margin: 0 15px;
      display: none;
      justify-content: center;
      align-items: center;
    }
    
    .logo-item.active {
      display: flex;
    }
    
    .logo-item.prev-item,
    .logo-item.next-item {
      display: none;
    }
    
    .logo-image {
      max-height: 40px;
    }
    
    .logo-placeholder {
      width: auto;
      min-width: 120px;
      height: 40px;
      padding: 0 15px;
      font-size: 14px;
    }
    
    .progress-container {
      margin-top: 20px;
    }
    
    .progress-bar {
      width: 80px;
    }
  }
  
  @media (max-width: 480px) {
    .logo-item {
      margin: 0 10px;
    }
    
    .logo-image {
      max-height: 35px;
    }
    
    .logo-placeholder {
      min-width: 100px;
      height: 35px;
      font-size: 12px;
    }
    
    .quote-text {
      font-size: 14px;
    }
  }
/* END_SECTION:ltp-custom-logo-slider */

/* START_SECTION:ltp-custom-press (INDEX:22) */
/*
    Container/grid sizing below is deliberately identical to the Journal
    archive grid's actual computed values (sections/main-blog.liquid's
    .page-width wrapper + snippets/article-card.liquid's .blog-articles
    grid): padding 1.5rem/5rem (base/≥750px) on the outer wrapper, plus
    1rem/2rem (base/≥990px) on the grid itself, 1/2/3 columns and
    1.5rem/2rem/2.5rem gaps at the same three breakpoints. Journal's
    values live in a snippet-scoped <style> block that only loads on
    blog templates, so they're reproduced here numerically rather than
    shared via a class, but they are the same numbers, not an
    independent Press-specific width.
  */
  .press-cards-section {
    width: 100%;
    padding: 40px 1.5rem;
  }

  .press-cards-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 1rem;
  }

  .press-card {
    background: var(--ilola-paper);
    padding: 10px;
    border-radius: 0;
    display: flex;
    flex-direction: column;
  }

  .press-card__image-wrapper {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    margin-bottom: 15px;
  }

  .press-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .press-card__heading {
    font-size: 24px;
    color: var(--ilola-ink);
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .press-card__description {
    color: var(--ilola-ink-soft);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
  }

  .press-card__button {
    background: none;
    border: none;
    color: var(--ilola-ink);
    font-size: 16px;
    text-decoration: underline;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    align-self: flex-start;
    font-family: 'Darker Grotesque Semibold';
  }


  .press-card__button:hover {
    opacity: 0.8;
  }

  .press-card__arrow {
    width: 12px;
    height: 7px;
    flex-shrink: 0;
  }

  @media screen and (min-width: 750px) {
    .press-cards-section {
      padding: 40px 5rem;
    }

    .press-cards-container {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
  }

  @media screen and (min-width: 990px) {
    .press-cards-container {
      grid-template-columns: repeat(3, 1fr);
      gap: 2.5rem;
      row-gap: 2.5rem;
      padding: 0 2rem;
    }
  }

  @media (max-width: 749px) {
    .press-cards-section {
      padding: 30px 1.5rem;
    }

    .press-card__heading {
      font-size: 20px;
    }

    .press-card__description {
      font-size: 14px;
    }
  }

  @media (max-width: 480px) {
    .press-cards-container {
      gap: 1rem;
    }

    .press-card {
      padding: 8px;
    }

    .press-card__heading {
      font-size: 18px;
    }
  }
/* END_SECTION:ltp-custom-press */

/* START_SECTION:about-ilola-close (INDEX:28) */
/* WHAT ILOLA MEANS */
  .abt-meaning { text-align: center; }
  .abt-meaning .abt__heading { margin-left: auto; margin-right: auto; }
  .abt-meaning__body {
    font-family: 'EB Garamond', Georgia, serif;
    font-style: italic;
    font-size: 21px;
    line-height: 1.6;
    color: var(--ilola-ink);
    max-width: 50ch;
    margin: 0 auto;
  }

  /* IMAGE BREAK — between What iLOLA Means and The Next Chapter */
  .abt-break { border-bottom: 1px solid var(--ilola-line); }
  .abt-break__media {
    width: 100%;
    max-height: 62vh;
    overflow: hidden;
    background: var(--ilola-scale-1);
  }
  .abt-break__media img {
    width: 100%;
    height: 100%;
    max-height: 62vh;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  /* THE NEXT CHAPTER */
  .abt-next { text-align: center; }
  .abt-next .abt__heading,
  .abt-next .abt__lede { margin-left: auto; margin-right: auto; }
  .abt-next__list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 28px;
    padding: 0;
    margin: 0 0 40px 0;
    font-family: 'Darker Grotesque Semibold';
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 13px;
    color: var(--ilola-ink-soft);
  }
  .abt-next__cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 28px;
  }
/* END_SECTION:about-ilola-close */

/* START_SECTION:about-ilola-design (INDEX:29) */
.abt-design {
    padding: 0;
    border-bottom: 1px solid var(--ilola-line);
  }

  .abt-design__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

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

  .abt-design__media {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--ilola-scale-1);
  }

  .abt-design__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .abt-design__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px 1.5rem;
  }

  @media screen and (min-width: 750px) {
    .abt-design__text { padding: 64px 5rem; }
  }

  .abt-design__body {
    font-size: 17px;
    line-height: 1.75;
    color: var(--ilola-ink-soft);
    max-width: 46ch;
    margin: 0;
  }
/* END_SECTION:about-ilola-design */

/* START_SECTION:about-ilola-house (INDEX:30) */
.abt-house {
    position: relative;
    background: #171614;
    color: var(--ilola-paper);
    overflow: hidden;
  }

  .abt-house__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .abt-house__bg-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.6s ease;
  }

  .abt-house__bg-slide.is-active { opacity: 1; }

  .abt-house__bg-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .abt-house__bg-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,14,12,0.86) 0%, rgba(15,14,12,0.78) 40%, rgba(15,14,12,0.92) 100%);
  }

  .abt-house__inner {
    position: relative;
    z-index: 1;
  }

  .abt-house .abt__eyebrow { color: rgba(250,248,246,0.7); }
  .abt-house .abt__heading { color: var(--ilola-paper); }

  .abt-house__lede {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(250,248,246,0.82);
    max-width: 56ch;
    margin: 0 0 44px 0;
  }

  .abt-house__row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    border-top: 1px solid rgba(250,248,246,0.22);
    padding-top: 32px;
  }

  @media screen and (max-width: 989px) {
    .abt-house__row { grid-template-columns: repeat(2, 1fr); }
  }

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

  .abt-house__item { padding-right: 1rem; }

  .abt-house__mark {
    font-family: 'Darker Grotesque Semibold';
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 12px;
    color: #E8C9A8;
    margin-bottom: 10px;
  }

  .abt-house__text {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(250,248,246,0.9);
    margin: 0;
  }
/* END_SECTION:about-ilola-house */

/* START_SECTION:about-ilola (INDEX:31) */
.abt {
    background: var(--ilola-paper);
    color: var(--ilola-ink);
  }

  .abt__inner {
    width: 100%;
    max-width: none;
    padding: 0 1.5rem;
  }

  @media screen and (min-width: 750px) {
    .abt__inner { padding: 0 5rem; }
  }

  .abt__section {
    padding: 72px 0;
    border-bottom: 1px solid var(--ilola-line);
  }

  .abt__section:last-child { border-bottom: none; }

  @media screen and (max-width: 749px) {
    .abt__section { padding: 48px 0; }
  }

  .abt__eyebrow {
    font-family: 'Darker Grotesque Semibold';
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 13px;
    color: var(--ilola-ink-soft);
    margin-bottom: 14px;
  }

  .abt__heading {
    font-size: 42px;
    line-height: 1.15;
    margin: 0 0 20px 0;
    max-width: 18ch;
  }

  @media screen and (max-width: 749px) {
    .abt__heading { font-size: 30px; }
  }

  .abt__lede {
    font-size: 18px;
    line-height: 1.65;
    color: var(--ilola-ink-soft);
    max-width: 60ch;
    margin: 0 0 28px 0;
  }

  .abt__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ilola-ink);
    color: var(--ilola-paper);
    font-family: 'Darker Grotesque Semibold';
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 14px;
    padding: 16px 28px;
    border-radius: 0;
    text-decoration: none;
    border: 1px solid var(--ilola-ink);
    transition: background 0.25s ease, color 0.25s ease;
  }

  .abt__btn:hover { background: transparent; color: var(--ilola-ink); }

  .abt__btn--ghost {
    background: transparent;
    color: var(--ilola-ink);
  }

  .abt__btn--ghost:hover { background: var(--ilola-ink); color: var(--ilola-paper); }

  .abt__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Darker Grotesque Semibold';
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 13px;
    color: var(--ilola-ink);
    text-decoration: underline;
    text-underline-offset: 4px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
  }

  /* Scroll reveal — a light, accessible "story unfolds as you scroll" treatment.
     Opacity + rise only; no pinning, no sticky, no layout-affecting properties. */
  .abt-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s ease, transform 0.9s ease;
    will-change: opacity, transform;
  }

  .abt-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  @media (prefers-reduced-motion: reduce) {
    .abt-reveal { transition: none; opacity: 1; transform: none; }
  }

  /* 1. HERO — THE HOUSE OF ILOLA */
  .abt-hero {
    position: relative;
    width: 100%;
    min-height: 78vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #171614;
  }

  @media screen and (max-width: 749px) {
    .abt-hero { min-height: 92vh; }
  }

  .abt-hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .abt-hero__media img,
  .abt-hero__media video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
  }

  .abt-hero__media img { z-index: 0; }

  .abt-hero__video {
    z-index: 1;
    opacity: 0;
    transition: opacity 0.7s ease;
  }

  .abt-hero__video.is-ready { opacity: 1; }
  .abt-hero__video.is-failed { display: none; }

  .abt-hero__scrim {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(0deg, rgba(10,9,8,0.72) 0%, rgba(10,9,8,0.18) 45%, rgba(10,9,8,0.05) 70%);
  }

  .abt-hero__content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 0 1.5rem 64px;
    color: var(--ilola-paper);
  }

  @media screen and (min-width: 750px) {
    .abt-hero__content { padding: 0 5rem 84px; max-width: 780px; }
  }

  .abt-hero__eyebrow {
    font-family: 'Darker Grotesque Semibold';
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 13px;
    color: rgba(250,248,246,0.82);
    margin-bottom: 18px;
  }

  .abt-hero__title {
    font-size: 56px;
    line-height: 1.08;
    margin: 0 0 22px 0;
    color: var(--ilola-paper);
    text-shadow: 0 2px 24px rgba(0,0,0,0.35);
  }

  @media screen and (max-width: 749px) {
    .abt-hero__title { font-size: 36px; }
  }

  .abt-hero__lede {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(250,248,246,0.92);
    max-width: 52ch;
    margin: 0;
  }

  /* 2. WHY ILOLA EXISTS */
  .abt-why {
    text-align: left;
  }

  .abt-why__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
  }

  @media screen and (max-width: 989px) {
    .abt-why__grid { grid-template-columns: 1fr; gap: 2rem; }
  }

  .abt-why__media {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--ilola-scale-1);
  }

  .abt-why__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .abt-why__body {
    font-size: 17px;
    line-height: 1.75;
    color: var(--ilola-ink-soft);
    max-width: 50ch;
    margin: 0 0 30px 0;
  }

  .abt-why__body + .abt-why__body { margin-top: -14px; }

  /* 3. TWO FOUNDERS. ONE IDEA. */
  .abt-founders__intro {
    max-width: 68ch;
    margin: 0 0 48px 0;
  }

  .abt-founders__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  @media screen and (max-width: 749px) {
    .abt-founders__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  }

  .abt-founder__media {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--ilola-scale-1);
    margin-bottom: 20px;
  }

  .abt-founder__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  .abt-founder__name {
    font-size: 26px;
    margin: 0 0 6px 0;
  }

  .abt-founder__role {
    font-family: 'Darker Grotesque Semibold';
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
    color: var(--ilola-ink-soft);
    margin-bottom: 14px;
  }

  .abt-founder__body {
    font-size: 16px;
    line-height: 1.65;
    color: var(--ilola-ink-soft);
    max-width: 42ch;
    margin: 0;
  }

  .abt-founders__meeting {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--ilola-line);
    text-align: center;
  }

  .abt-founders__meeting p {
    font-family: 'EB Garamond', Georgia, serif;
    font-style: italic;
    font-size: 22px;
    line-height: 1.5;
    color: var(--ilola-ink);
    max-width: 46ch;
    margin: 0 auto;
  }

  /* 4. FROM IDEA TO INVENTION */
  .abt-invention__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
  }

  @media screen and (max-width: 989px) {
    .abt-invention__grid { grid-template-columns: 1fr; gap: 2rem; }
  }

  /* UX fix (round 2): on mobile the image now leads — it grounds the section
     visually before two more paragraphs of reading, rather than trailing
     behind text that follows two paragraphs of Why-iLOLA-Exists and two
     founder bios. Desktop grid/order is unchanged (image already reads
     second, beside the text, which works fine at that width). */
  @media screen and (max-width: 989px) {
    .abt-invention__media { order: -1; }
  }

  .abt-invention__media {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--ilola-scale-1);
  }

  .abt-invention__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .abt-invention__body {
    font-size: 17px;
    line-height: 1.75;
    color: var(--ilola-ink-soft);
    max-width: 50ch;
    margin: 0 0 28px 0;
  }
/* END_SECTION:about-ilola */

/* START_SECTION:collection-list (INDEX:46) */
.section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
    padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
  }

  @media screen and (min-width: 750px) {
    .section-{{ section.id }}-padding {
      padding-top: {{ section.settings.padding_top }}px;
      padding-bottom: {{ section.settings.padding_bottom }}px;
    }
  }

  @media screen and (min-width: 990px) {
    .collection-list-wrapper {
      max-width: none !important;
      width: 100% !important;
      padding-left: 60px;
      padding-right: 60px;
    }
    
    .collection-list-desktop-carousel {
      overflow: hidden;
      position: relative;
    }
    
    .collection-list-desktop-carousel .collection-list {
      display: flex !important;
      flex-wrap: nowrap !important;
      transition: transform 0.3s ease;
      gap: 20px;
    }
    
    .collection-list-desktop-carousel .collection-list__item {
      flex: 0 0 auto !important;
      width: calc((100vw - 140px) / 4);
      display: block !important;
    }
    
    .collection-list-desktop-carousel .grid {
      display: flex !important;
      grid-template-columns: none !important;
    }
    
    .collection-list-desktop-carousel .grid__item {
      grid-column: auto !important;
    }
    
    .slider-controls-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 30px;
      gap: 20px;
    }
    
    .custom-scrollbar {
      flex: 1;
      height: 4px;
      background-color: #e0e0e0;
      border-radius: 2px;
      position: relative;
      cursor: pointer;
    }
    
    .custom-scroll-thumb {
      height: 100%;
      background-color: #212121;
      border-radius: 2px;
      transition: width 0.3s ease, left 0.3s ease;
      position: absolute;
      min-width: 40px;
    }
    
    .slider-buttons {
      display: flex;
      gap: 10px;
    }
    
    .slider-button {
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      width: 33px;
      height: 33px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: opacity 0.3s ease;
    }
    
    .slider-button:hover {
      opacity: 0.7;
    }
    
    .slider-button:disabled {
      opacity: 0.3;
      cursor: not-allowed;
    }
    
    .slider-button svg {
      width: 33px;
      height: 33px;
    }
  }

  @media screen and (max-width: 989px) {
    .slider-controls-container {
      display: none;
    }
    
    .mobile-slider-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 20px;
      gap: 15px;
    }
    
    .mobile-slider-controls .slider-button {
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      width: 33px;
      height: 33px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: opacity 0.3s ease;
    }
    
    .mobile-slider-controls .slider-button:hover {
      opacity: 0.7;
    }
    
    .mobile-slider-controls .slider-button:disabled {
      opacity: 0.3;
      cursor: not-allowed;
    }
    
    .mobile-slider-controls .slider-button svg {
      width: 33px;
      height: 33px;
    }
    
    .mobile-slider-controls .slider-counter {
      font-size: 14px;
      color: #212121;
    }
  }

  @media screen and (min-width: 990px) {
    .mobile-slider-controls {
      display: none;
    }
  }
/* END_SECTION:collection-list */

/* START_SECTION:what-is-a-tea-disc-close (INDEX:210) */
.tdx {
    background: var(--ilola-paper);
    color: var(--ilola-ink);
  }

  .tdx__inner {
    width: 100%;
    max-width: none;
    padding: 0 1.5rem;
  }

  @media screen and (min-width: 750px) {
    .tdx__inner { padding: 0 5rem; }
  }

  .tdx__section {
    padding: 64px 0;
    border-bottom: 1px solid var(--ilola-line);
  }

  .tdx__section:last-child { border-bottom: none; }

  @media screen and (max-width: 749px) {
    .tdx__section { padding: 44px 0; }
  }

  .tdx__eyebrow {
    font-family: 'Darker Grotesque Semibold';
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 13px;
    color: var(--ilola-ink-soft);
    margin-bottom: 14px;
  }

  .tdx__heading {
    font-size: 40px;
    line-height: 1.15;
    margin: 0 0 18px 0;
    max-width: 20ch;
  }

  @media screen and (max-width: 749px) {
    .tdx__heading { font-size: 30px; }
  }

  .tdx__lede {
    font-size: 18px;
    line-height: 1.6;
    color: var(--ilola-ink-soft);
    max-width: 58ch;
    margin: 0 0 28px 0;
  }

  .tdx__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ilola-ink);
    color: var(--ilola-paper);
    font-family: 'Darker Grotesque Semibold';
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 14px;
    padding: 16px 28px;
    border-radius: 0;
    text-decoration: none;
    border: 1px solid var(--ilola-ink);
    transition: background 0.25s ease, color 0.25s ease;
  }

  .tdx__btn:hover { background: transparent; color: var(--ilola-ink); }

  .tdx__btn--ghost {
    background: transparent;
    color: var(--ilola-ink);
  }

  .tdx__btn--ghost:hover { background: var(--ilola-ink); color: var(--ilola-paper); }

  /* 4. AVIORA — dominant, dark, editorial reveal */
  .tdx-aviora {
    background: #171614;
    color: var(--ilola-paper);
    padding: 96px 0;
  }

  @media screen and (max-width: 749px) {
    .tdx-aviora { padding: 64px 0; }
  }

  .tdx-aviora__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 5rem;
    align-items: center;
  }

  @media screen and (max-width: 989px) {
    .tdx-aviora__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  }

  .tdx-aviora__eyebrow {
    font-family: 'Darker Grotesque Semibold';
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 13px;
    color: var(--ilola-scale-2);
    margin-bottom: 20px;
  }

  .tdx-aviora__heading {
    font-size: 48px;
    line-height: 1.1;
    margin: 0 0 26px 0;
    max-width: 14ch;
    color: var(--ilola-paper);
  }

  @media screen and (max-width: 749px) {
    .tdx-aviora__heading { font-size: 32px; }
  }

  .tdx-aviora__body {
    font-size: 19px;
    line-height: 1.7;
    color: rgba(248,246,242,0.86);
    margin: 0 0 32px 0;
    max-width: 46ch;
  }

  .tdx-aviora__outcomes {
    list-style: none;
    margin: 0 0 36px 0;
    padding: 0;
    border-top: 1px solid rgba(248,246,242,0.18);
  }

  .tdx-aviora__outcomes li {
    padding: 16px 0;
    border-bottom: 1px solid rgba(248,246,242,0.18);
    font-size: 16px;
    line-height: 1.5;
    color: rgba(248,246,242,0.9);
    display: flex;
    align-items: baseline;
    gap: 14px;
  }

  .tdx-aviora__outcomes li::before {
    content: '';
    flex: 0 0 auto;
    width: 6px; height: 1px;
    margin-top: 10px;
    background: var(--ilola-scale-2);
  }

  .tdx-aviora__discovery {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(248,246,242,0.6);
    max-width: 46ch;
    font-style: italic;
  }

  .tdx-aviora__media {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #0e0d0c;
  }

  .tdx-aviora__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  /* 5. DESIGNED AROUND THE LEAF */
  .tdx-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  @media screen and (max-width: 989px) {
    .tdx-split { grid-template-columns: 1fr; gap: 2rem; }
  }

  .tdx-split__media {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--ilola-scale-1);
  }

  .tdx-split__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .tdx-split__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    padding: 8%;
    box-sizing: border-box;
    opacity: 0;
    animation: tdxLeafFade 9s ease-in-out infinite;
  }

  .tdx-split__slide--b { animation-delay: -4.5s; }

  @keyframes tdxLeafFade {
    0%, 42% { opacity: 1; }
    50%, 92% { opacity: 0; }
    100% { opacity: 1; }
  }

  @media (prefers-reduced-motion: reduce) {
    .tdx-split__slide { animation: none; opacity: 1; }
    .tdx-split__slide--b { display: none; }
  }

  .tdx-leaf__body {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ilola-ink-soft);
    max-width: 44ch;
    margin: 0;
  }

  /* 6. THE RITUAL */
  .tdx-ritual {
    text-align: center;
    padding: 72px 1.5rem;
  }

  @media screen and (min-width: 750px) {
    .tdx-ritual { padding: 84px 5rem; }
  }

  .tdx-ritual .tdx__heading,
  .tdx-ritual .tdx__lede { margin-left: auto; margin-right: auto; }

  .tdx-ritual__stage {
    position: relative;
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16/9;
    max-height: 74vh;
    overflow: hidden;
    background: #171614;
    margin: 40px auto 0;
  }

  @media screen and (min-width: 750px) {
    .tdx-ritual__stage { max-width: 1180px; max-height: 82vh; }
  }

  @media screen and (max-width: 749px) {
    .tdx-ritual__stage { aspect-ratio: 4/5; max-height: 64vh; }
  }

  .tdx-ritual__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
  }

  .tdx-ritual__video.is-ready { opacity: 1; }
  .tdx-ritual__video.is-failed { display: none; }

  .tdx-ritual__label {
    position: absolute;
    left: 0; right: 0; bottom: 24px;
    z-index: 2;
    text-align: center;
    color: var(--ilola-paper);
    font-family: 'Darker Grotesque Semibold';
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 13px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  }

  /* 7. CREATED BY ILOLA — same paper background as the rest of the page; a thin
     rose-gold hairline top and bottom sets it apart from the cream sections
     around it without a full colour block */
  .tdx-credibility {
    text-align: center;
    background: var(--ilola-paper);
    border-top: 1px solid #A88275;
    border-bottom: 1px solid #A88275;
  }

  .tdx-credibility__body {
    font-size: 18px;
    line-height: 1.7;
    color: var(--ilola-ink-soft);
    max-width: 58ch;
    margin: 0 auto 24px;
  }

  /* 8. FIND YOUR TEA DISC */
  .tdx-discover__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin: 40px 0 32px;
  }

  @media screen and (max-width: 989px) {
    .tdx-discover__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  }

  @media screen and (max-width: 480px) {
    .tdx-discover__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  }

  .tdx-product { text-decoration: none; color: var(--ilola-ink); display: block; }

  .tdx-product__image {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--ilola-scale-1);
    margin-bottom: 14px;
  }

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

  .tdx-product__title {
    font-size: 17px;
    margin: 0 0 4px 0;
  }

  .tdx-product__price {
    font-size: 14px;
    color: var(--ilola-ink-soft);
  }

  .tdx-discover__foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 8px;
  }

  .tdx-discover__humidor {
    font-size: 14px;
    color: var(--ilola-ink-soft);
  }

  .tdx-discover__humidor a { color: var(--ilola-ink); text-decoration: underline; }
/* END_SECTION:what-is-a-tea-disc-close */

/* START_SECTION:what-is-a-tea-disc (INDEX:211) */
.tdx {
    background: var(--ilola-paper);
    color: var(--ilola-ink);
  }

  .tdx__inner {
    width: 100%;
    max-width: none;
    padding: 0 1.5rem;
  }

  @media screen and (min-width: 750px) {
    .tdx__inner { padding: 0 5rem; }
  }

  .tdx__section {
    padding: 64px 0;
  }

  @media screen and (max-width: 749px) {
    .tdx__section { padding: 44px 0; }
  }

  .tdx__eyebrow {
    font-family: 'Darker Grotesque Semibold';
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 13px;
    color: var(--ilola-ink-soft);
    margin-bottom: 14px;
  }

  .tdx__heading {
    font-size: 40px;
    line-height: 1.15;
    margin: 0 0 18px 0;
    max-width: 20ch;
  }

  @media screen and (max-width: 749px) {
    .tdx__heading { font-size: 30px; }
  }

  .tdx__lede {
    font-size: 18px;
    line-height: 1.6;
    color: var(--ilola-ink-soft);
    max-width: 58ch;
    margin: 0 0 28px 0;
  }

  .tdx__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ilola-ink);
    color: var(--ilola-paper);
    font-family: 'Darker Grotesque Semibold';
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 14px;
    padding: 16px 28px;
    border-radius: 0;
    text-decoration: none;
    border: 1px solid var(--ilola-ink);
    transition: background 0.25s ease, color 0.25s ease;
  }

  .tdx__btn:hover { background: transparent; color: var(--ilola-ink); }

  .tdx-hero .tdx__btn { border-color: var(--ilola-paper); background: var(--ilola-paper); color: var(--ilola-ink); }
  .tdx-hero .tdx__btn:hover { background: transparent; color: var(--ilola-paper); }

  /* 1. HERO — transparent header lives over this; see .rhero pull-up rule in header.liquid */
  .tdx-hero {
    position: relative;
    width: 100%;
    height: 94vh;
    min-height: 620px;
    max-height: 1040px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background: #171614;
  }

  .tdx-hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* Two-part legibility scrim — same technique as Room 1 (radial pool + soft bottom gradient) */
  .tdx-hero__scrim {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 100% 85% at 0% 100%, rgba(10,9,8,0.62) 0%, rgba(10,9,8,0.40) 32%, rgba(10,9,8,0.14) 58%, rgba(10,9,8,0) 78%),
      linear-gradient(to top, rgba(10,9,8,0.55) 0%, rgba(10,9,8,0.22) 26%, rgba(10,9,8,0) 50%);
  }

  @media screen and (max-width: 749px) {
    .tdx-hero__scrim {
      background:
        radial-gradient(ellipse 150% 78% at 12% 100%, rgba(10,9,8,0.60) 0%, rgba(10,9,8,0.42) 34%, rgba(10,9,8,0.18) 58%, rgba(10,9,8,0) 82%),
        linear-gradient(to top, rgba(10,9,8,0.58) 0%, rgba(10,9,8,0.24) 28%, rgba(10,9,8,0) 52%);
    }
  }

  /* Top gradient so the transparent header's logo/nav stay legible before scroll */
  .tdx-hero::before {
    content: '';
    position: absolute; left: 0; right: 0; top: 0; height: 160px;
    z-index: 1; pointer-events: none;
    background: linear-gradient(to bottom, rgba(10,9,8,0.42) 0%, rgba(10,9,8,0.18) 55%, rgba(10,9,8,0) 100%);
  }

  .tdx-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 1.5rem 64px;
    color: var(--ilola-paper);
  }

  @media screen and (min-width: 750px) {
    .tdx-hero__content { padding: 0 5rem 80px; }
  }

  .tdx-hero__eyebrow {
    font-family: 'Darker Grotesque Semibold';
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 13px;
    opacity: 0.92;
    margin-bottom: 16px;
    text-shadow: 0 1px 10px rgba(0,0,0,0.5);
  }

  .tdx-hero__title {
    font-size: 58px;
    line-height: 1.08;
    margin: 0 0 16px 0;
    max-width: 16ch;
    color: var(--ilola-paper);
    text-shadow: 0 1px 3px rgba(0,0,0,0.42), 0 4px 28px rgba(0,0,0,0.48);
  }

  @media screen and (max-width: 749px) {
    .tdx-hero__title { font-size: 38px; }
  }

  .tdx-hero__sub {
    font-size: 18px;
    line-height: 1.5;
    max-width: 46ch;
    opacity: 0.96;
    margin: 0 0 28px 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4), 0 2px 18px rgba(0,0,0,0.45);
  }

  /* 2. WHAT IS A TEA DISC? — simple statement + substantial video */
  .tdx-s2__stage {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    max-height: 78vh;
    overflow: hidden;
    background: #171614;
    margin-top: 40px;
  }

  @media screen and (max-width: 749px) {
    .tdx-s2__stage { aspect-ratio: 4/5; max-height: 68vh; }
  }

  .tdx-s2__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
  }

  .tdx-s2__video.is-ready { opacity: 1; }
  .tdx-s2__video.is-failed { display: none; }

  .tdx-s2__ask {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    font-family: 'Darker Grotesque Semibold';
    letter-spacing: 0.02em;
    font-size: 16px;
    font-style: italic;
    color: var(--ilola-ink-soft);
    text-decoration: underline;
    text-underline-offset: 3px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
  }

  .tdx-s2__ask:hover { color: var(--ilola-ink); }

  /* Video lightbox — used by the "we often get asked" link */
  .tdx-video-modal {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10,9,8,0.86);
    padding: 5vh 5vw;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
  }

  .tdx-video-modal.is-open { opacity: 1; visibility: visible; }

  .tdx-video-modal__inner {
    position: relative;
    width: 100%;
    max-width: 720px;
  }

  .tdx-video-modal video {
    width: 100%;
    max-height: 86vh;
    display: block;
    background: #000;
  }

  .tdx-video-modal__close {
    position: absolute;
    top: -44px;
    right: 0;
    background: none;
    border: none;
    color: var(--ilola-paper);
    font-family: 'Darker Grotesque Semibold';
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 13px;
    cursor: pointer;
    padding: 8px;
  }
/* END_SECTION:what-is-a-tea-disc */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:card-collection (INDEX:222) */
.card__caption {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    max-height: 3em;
    line-height: 1.5;
    display: block !important;
  }
/* END_SNIPPET:card-collection */