/** Shopify CDN: Minification failed

Line 40:0 All "@import" rules must come first

**/
/* ============================================================
   La La Lure — Custom Shopify Theme Styles
   Prefix: lll-
   Compatible with: Dawn theme
   ============================================================ */

/* ── CSS Variables ── */
:root {
  --lll-ivory:      #FAF8F4;
  --lll-sand:       #F0E8DC;
  --lll-blush:      #E8D5C4;
  --lll-terracotta: #8B5E3C;
  --lll-gold:       #C9A96E;
  --lll-sage:       #4A6858;
  --lll-dark:       #1A1612;
  --lll-mid:        #5C4A38;
  --lll-light-mid:  #A08060;
  --lll-border:     #E0D4C4;

  /* Dawn variable overrides */
  --color-base-background-1: #FAF8F4;
  --color-base-text:         #1A1612;
  --color-base-accent-1:     #8B5E3C;
}

/* ── Base overrides for Dawn ── */
body {
  font-family: 'Jost', sans-serif !important;
  background: var(--lll-ivory);
  color: var(--lll-dark);
  -webkit-font-smoothing: antialiased;
}

/* Google Fonts import — also add to theme.liquid <head> */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

/* ── Shared Utilities ── */
.lll-section        { padding: 100px 40px; }
.lll-section-inner  { max-width: 1400px; margin: 0 auto; }

.lll-section-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lll-terracotta);
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.lll-section-label::after {
  content: '';
  display: block;
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: var(--lll-terracotta);
}
.lll-section-label--center { justify-content: center; }
.lll-section-label--center::after { display: none; }
.lll-section-label--gold { color: var(--lll-gold); }
.lll-section-label--gold::after { background: var(--lll-gold); }

.lll-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--lll-dark);
  margin-bottom: 16px;
}
.lll-section-title em  { font-style: italic; color: var(--lll-terracotta); }
.lll-section-title--light { color: var(--lll-ivory); }

.lll-section-subtitle {
  font-size: 15px;
  color: var(--lll-light-mid);
  line-height: 1.8;
  font-weight: 300;
}
.lll-section-subtitle--light { color: rgba(250,248,244,0.55); }

.lll-btn-primary {
  display: inline-block;
  background: var(--lll-gold);
  color: var(--lll-dark);
  text-decoration: none;
  padding: 16px 36px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: 'Jost', sans-serif;
  transition: background 0.25s, color 0.25s;
  border: none;
  cursor: pointer;
}
.lll-btn-primary:hover { background: var(--lll-dark); color: var(--lll-ivory); }
.lll-btn-primary--dark { background: var(--lll-dark); color: var(--lll-ivory); }
.lll-btn-primary--dark:hover { background: var(--lll-terracotta); }

.lll-btn-ghost {
  display: inline-block;
  color: rgba(250,248,244,0.7);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 400;
  border-bottom: 1px solid rgba(250,248,244,0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  font-family: 'Jost', sans-serif;
}
.lll-btn-ghost:hover { color: var(--lll-ivory); border-color: var(--lll-ivory); }

/* ── Announcement Bar ── */
.lll-announcement {
  background: var(--lll-dark);
  color: var(--lll-gold);
  text-align: center;
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
}
.lll-announcement a {
  color: var(--lll-gold);
  text-decoration: none;
}
.lll-announcement a:hover { text-decoration: underline; }

/* ── Header Overrides (Dawn) ── */
.shopify-section-header .header {
  background: var(--lll-ivory) !important;
  border-bottom: 1px solid var(--lll-border) !important;
}
.shopify-section-header .header__heading-link,
.shopify-section-header .header__menu-item {
  font-family: 'Jost', sans-serif !important;
  font-size: 12px !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  color: var(--lll-dark) !important;
}
.shopify-section-header .header__heading {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 26px !important;
  letter-spacing: 4px !important;
  font-weight: 400 !important;
}
.shopify-section-header .header__icon { color: var(--lll-dark) !important; }

/* ── Hero ── */
.lll-hero {
  min-height: 92vh;
  background: var(--lll-dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.lll-hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
}

.lll-hero__eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lll-gold);
  font-weight: 500;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.lll-hero__eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--lll-gold);
  flex-shrink: 0;
}

.lll-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 6vw, 82px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--lll-ivory);
  margin-bottom: 28px;
}
.lll-hero__title em { font-style: italic; color: var(--lll-gold); }

.lll-hero__desc {
  font-size: 15px;
  color: rgba(250,248,244,0.65);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 48px;
  font-weight: 300;
}

.lll-hero__ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.lll-hero__right { position: relative; overflow: hidden; }

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

.lll-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,22,18,0.3) 0%, transparent 40%);
  pointer-events: none;
}

.lll-hero__badge {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 104px;
  height: 104px;
  background: var(--lll-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  z-index: 2;
}
.lll-hero__badge span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  color: var(--lll-dark);
  line-height: 1.35;
  font-weight: 600;
}

/* ── Trust Bar ── */
.lll-trust-bar { background: var(--lll-sage); padding: 20px 40px; }

.lll-trust-bar__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.lll-trust-item { display: flex; align-items: center; gap: 10px; color: var(--lll-ivory); }

.lll-trust-item__icon { font-size: 14px; opacity: 0.8; }

.lll-trust-item__text {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  font-family: 'Jost', sans-serif;
}

.lll-trust-divider { width: 1px; height: 20px; background: rgba(250,248,244,0.25); }

/* ── Featured Products ── */
.lll-products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}

.lll-view-all {
  color: var(--lll-dark);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid var(--lll-dark);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  font-family: 'Jost', sans-serif;
}
.lll-view-all:hover { color: var(--lll-terracotta); border-color: var(--lll-terracotta); }

.lll-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.lll-product-card { cursor: pointer; }

.lll-product-card__image {
  aspect-ratio: 3/4;
  background: var(--lll-sand);
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  display: block;
  text-decoration: none;
}

.lll-product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s ease;
}
.lll-product-card:hover .lll-product-card__img { transform: scale(1.06); }

.lll-product-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--lll-terracotta);
  color: var(--lll-ivory);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 10px;
  z-index: 2;
  font-family: 'Jost', sans-serif;
}

.lll-product-card__quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--lll-dark);
  color: var(--lll-ivory);
  text-align: center;
  padding: 14px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  cursor: pointer;
  z-index: 2;
  border: none;
  width: 100%;
  font-family: 'Jost', sans-serif;
}
.lll-product-card:hover .lll-product-card__quick-add { transform: translateY(0); }

.lll-product-card__info { padding: 0 4px; }

.lll-product-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 8px;
  align-items: center;
}
.lll-star { color: var(--lll-gold); font-size: 12px; }
.lll-star-count { color: var(--lll-light-mid); font-size: 11px; margin-left: 4px; }

.lll-product-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--lll-dark);
  line-height: 1.2;
  margin-bottom: 6px;
  text-decoration: none;
  display: block;
}
.lll-product-card__name:hover { color: var(--lll-terracotta); }

.lll-product-card__tagline {
  font-size: 12px;
  color: var(--lll-light-mid);
  font-weight: 300;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.lll-product-card__price { font-size: 15px; font-weight: 500; color: var(--lll-dark); }

/* ── Brand Story ── */
.lll-brand-story { background: var(--lll-sand); }

.lll-brand-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lll-brand-story__image { aspect-ratio: 4/5; position: relative; overflow: hidden; }

.lll-brand-story__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.lll-brand-story__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,22,18,0.5) 0%, transparent 60%);
  pointer-events: none;
}

.lll-brand-story__img-caption {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
}
.lll-brand-story__img-caption .big-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--lll-gold);
  line-height: 1;
}
.lll-brand-story__img-caption .big-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(250,248,244,0.7);
  margin-top: 4px;
}

.lll-brand-story__content { padding: 20px 0; }

.lll-brand-story__body p {
  color: var(--lll-mid);
  line-height: 1.9;
  font-weight: 300;
  font-size: 15px;
  margin-bottom: 20px;
}

.lll-story-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.lll-story-value {
  padding: 24px;
  border: 1px solid var(--lll-border);
  background: var(--lll-ivory);
}
.lll-story-value__icon { font-size: 22px; margin-bottom: 10px; }
.lll-story-value__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--lll-dark);
}
.lll-story-value__desc { font-size: 12px; color: var(--lll-light-mid); line-height: 1.6; font-weight: 300; }

/* ── Bundles ── */
.lll-bundles { background: var(--lll-dark); }

.lll-bundles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.lll-bundle-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
  cursor: pointer;
}
.lll-bundle-card:hover { border-color: rgba(201,169,110,0.55); }
.lll-bundle-card--featured { border-color: var(--lll-gold); }

.lll-bundle-card__tag {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lll-gold);
  color: var(--lll-dark);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 20px;
  z-index: 3;
  white-space: nowrap;
  font-family: 'Jost', sans-serif;
}

.lll-bundle-card__image { width: 100%; aspect-ratio: 4/3; overflow: hidden; position: relative; }

.lll-bundle-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.lll-bundle-card:hover .lll-bundle-card__img { transform: scale(1.04); }

.lll-bundle-card__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,22,18,0.6) 0%, transparent 55%);
  pointer-events: none;
}

.lll-bundle-card__body { padding: 28px 28px 32px; }

.lll-bundle-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--lll-ivory);
  margin-bottom: 10px;
  line-height: 1.2;
}

.lll-bundle-card__includes {
  font-size: 12px;
  color: rgba(250,248,244,0.45);
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 300;
}
.lll-bundle-card__includes strong { color: rgba(250,248,244,0.7); font-weight: 400; }

.lll-bundle-card__pricing {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.lll-bundle-card__price { font-size: 24px; font-weight: 600; color: var(--lll-gold); }
.lll-bundle-card__was { font-size: 14px; color: rgba(250,248,244,0.3); text-decoration: line-through; }
.lll-bundle-card__save {
  font-size: 11px;
  background: rgba(201,169,110,0.15);
  color: var(--lll-gold);
  padding: 3px 8px;
  letter-spacing: 1px;
  font-family: 'Jost', sans-serif;
}

.lll-bundle-card__cta {
  display: block;
  width: 100%;
  text-align: center;
  background: transparent;
  border: 1px solid rgba(250,248,244,0.2);
  color: var(--lll-ivory);
  text-decoration: none;
  padding: 14px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.25s;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
}
.lll-bundle-card:hover .lll-bundle-card__cta,
.lll-bundle-card--featured .lll-bundle-card__cta {
  background: var(--lll-gold);
  color: var(--lll-dark);
  border-color: var(--lll-gold);
}
.lll-bundle-card__cta[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
  background: transparent !important;
  color: var(--lll-ivory) !important;
  border-color: rgba(250,248,244,0.12) !important;
}

/* ── Ingredients ── */
.lll-ingredients { background: var(--lll-blush); }

.lll-ingredients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.lll-ingredient-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--lll-ivory);
  border: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.lll-ingredient-card:hover {
  border-color: var(--lll-terracotta);
  box-shadow: 0 8px 32px rgba(139,94,60,0.1);
}

.lll-ingredient-card__circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}
.lll-ingredient-card__circle--gold   { background: linear-gradient(135deg,#F0E4CC,#D4B87A); }
.lll-ingredient-card__circle--green  { background: linear-gradient(135deg,#D4E4D8,#8AAA8E); }
.lll-ingredient-card__circle--purple { background: linear-gradient(135deg,#E4D4E8,#9A7AAA); }
.lll-ingredient-card__circle--pink   { background: linear-gradient(135deg,#F4D4D8,#C47888); }

.lll-ingredient-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--lll-dark);
  margin-bottom: 10px;
}
.lll-ingredient-card__desc { font-size: 13px; color: var(--lll-light-mid); line-height: 1.7; font-weight: 300; }

/* ── Testimonials ── */
.lll-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.lll-testimonial-card {
  padding: 36px;
  border: 1px solid var(--lll-border);
  position: relative;
}
.lll-testimonial-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  color: var(--lll-gold);
  opacity: 0.3;
  position: absolute;
  top: 12px;
  left: 28px;
  line-height: 1;
}

.lll-testimonial-card__stars { display: flex; gap: 2px; margin-bottom: 16px; }

.lll-testimonial-card__text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--lll-dark);
  line-height: 1.6;
  margin-bottom: 24px;
}

.lll-testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.lll-testimonial-card__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--lll-sand);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.lll-testimonial-card__name { font-size: 13px; font-weight: 600; color: var(--lll-dark); margin-bottom: 2px; }
.lll-testimonial-card__product { font-size: 11px; color: var(--lll-light-mid); }
.lll-verified {
  margin-left: auto;
  font-size: 10px;
  color: var(--lll-sage);
  font-weight: 500;
  flex-shrink: 0;
}

/* ── Social CTA ── */
.lll-social-cta {
  background: var(--lll-dark);
  text-align: center;
  padding: 80px 40px;
}
.lll-social-cta .lll-section-title { color: var(--lll-ivory); margin-bottom: 12px; }
.lll-social-cta__sub { color: rgba(250,248,244,0.5); font-size: 14px; margin-bottom: 36px; font-weight: 300; }
.lll-social-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.lll-social-link {
  display: flex; align-items: center; gap: 10px;
  color: var(--lll-ivory);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 14px 28px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.25s;
  font-family: 'Jost', sans-serif;
}
.lll-social-link:hover { background: var(--lll-gold); color: var(--lll-dark); border-color: var(--lll-gold); }

/* ── Newsletter ── */
.lll-newsletter {
  background: var(--lll-sand);
  text-align: center;
  padding: 80px 40px;
}
.lll-newsletter .lll-section-title { margin-bottom: 12px; }
.lll-newsletter__sub { color: var(--lll-light-mid); font-size: 14px; margin-bottom: 36px; font-weight: 300; }
.lll-newsletter__form { display: flex; max-width: 460px; margin: 0 auto; }
.lll-newsletter__input {
  flex: 1;
  padding: 16px 20px;
  border: 1px solid var(--lll-border);
  border-right: none;
  background: var(--lll-ivory);
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: var(--lll-dark);
  outline: none;
}
.lll-newsletter__input::placeholder { color: var(--lll-light-mid); }
.lll-newsletter__input:focus { border-color: var(--lll-terracotta); }
.lll-newsletter__btn {
  background: var(--lll-dark);
  color: var(--lll-ivory);
  border: none;
  padding: 16px 28px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  transition: background 0.2s;
  white-space: nowrap;
}
.lll-newsletter__btn:hover { background: var(--lll-terracotta); }
.lll-newsletter__note { margin-top: 12px; font-size: 11px; color: var(--lll-light-mid); }

/* ── Footer Overrides (Dawn) ── */
.shopify-section-footer { background: var(--lll-dark) !important; }
.shopify-section-footer .footer__content-bottom,
.shopify-section-footer .footer__content-top { background: var(--lll-dark); }
.shopify-section-footer .footer__heading { color: var(--lll-gold) !important; font-size: 10px !important; letter-spacing: 2.5px !important; }
.shopify-section-footer .footer a,
.shopify-section-footer .footer__list-item a { color: rgba(250,248,244,0.4) !important; font-size: 13px !important; font-weight: 300 !important; }
.shopify-section-footer .footer a:hover { color: var(--lll-ivory) !important; }
.shopify-section-footer .footer__copyright { color: rgba(250,248,244,0.25) !important; font-size: 12px !important; }

/* ── Animations ── */
@keyframes lll-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lll-fade-up             { animation: lll-fade-up 0.7s ease both; }
.lll-fade-up--delay-1    { animation-delay: 0.12s; }
.lll-fade-up--delay-2    { animation-delay: 0.24s; }
.lll-fade-up--delay-3    { animation-delay: 0.36s; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .lll-products-grid    { grid-template-columns: repeat(2, 1fr); }
  .lll-bundles-grid     { grid-template-columns: repeat(2, 1fr); }
  .lll-ingredients-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .lll-section { padding: 60px 24px; }

  .lll-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .lll-hero__left  { padding: 60px 24px; }
  .lll-hero__right { height: 380px; }

  .lll-trust-bar          { padding: 16px 24px; }
  .lll-trust-bar__inner   { gap: 20px; }
  .lll-trust-divider      { display: none; }

  .lll-products-grid    { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .lll-brand-story__grid { grid-template-columns: 1fr; gap: 40px; }
  .lll-bundles-grid     { grid-template-columns: 1fr; }
  .lll-ingredients-grid { grid-template-columns: 1fr; }
  .lll-testimonials-grid { grid-template-columns: 1fr; }

  .lll-newsletter__form { flex-direction: column; }
  .lll-newsletter__input { border-right: 1px solid var(--lll-border); border-bottom: none; }
}

@media (max-width: 480px) {
  .lll-products-grid { grid-template-columns: 1fr; }
  .lll-story-values  { grid-template-columns: 1fr; }
  .lll-hero__title   { font-size: 42px; }
}
