/**
 * Just Been Laid Ltd — shared shop catalog styles
 * Used on produce, merchandise, coaching, and homepage wayfinding.
 */

.jbl-shop-page {
  background: var(--jbl-cream, #f5f0e8);
  color: var(--jbl-ink, #1e2420);
}

.jbl-shop-page__inner {
  max-width: var(--jbl-container, 1320px);
  width: 100%;
  margin: 0 auto;
  padding: 48px clamp(24px, 4vw, 64px) 64px;
}

.jbl-shop-page__header {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.jbl-shop-page__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--jbl-gold, #c9a84c);
  margin: 0 0 8px;
  font-weight: 600;
}

.jbl-shop-page__title {
  font-family: var(--jbl-font-display, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin: 0 0 12px;
  font-weight: 600;
}

.jbl-shop-page__intro {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(30, 36, 32, 0.82);
  margin: 0;
}

.jbl-shop-page__note {
  margin-top: 32px;
  font-size: 0.9375rem;
  color: rgba(30, 36, 32, 0.7);
  text-align: center;
}

.jbl-shop-page__note a {
  color: var(--jbl-ink, #1e2420);
  font-weight: 600;
}

/* Marketing group (produce page) */
.jbl-shop-group {
  margin-bottom: 64px;
  scroll-margin-top: 88px;
  padding-top: 8px;
  border-top: 1px solid rgba(30, 36, 32, 0.08);
}

.jbl-shop-group:first-child {
  border-top: 0;
  padding-top: 0;
}

.jbl-shop-group__title {
  font-family: var(--jbl-font-display, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 28px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-align: center;
}

.jbl-shop-category {
  margin-bottom: 40px;
}

.jbl-shop-category__title {
  font-family: var(--jbl-font-body, "Source Sans 3", sans-serif);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 20px;
  color: rgba(30, 36, 32, 0.55);
  text-align: center;
}

/* Product grid — Shopify-style */
.jbl-shop-grid {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px 24px;
  justify-content: center;
  max-width: 1200px;
}

.jbl-shop-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  min-height: 100%;
}

.jbl-shop-card__media {
  position: relative;
  margin: 0 0 14px;
  border-radius: 4px;
  overflow: hidden;
  background: #f3efe8;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.jbl-shop-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.jbl-shop-card:hover .jbl-shop-card__media img {
  transform: scale(1.04);
}

.jbl-shop-card__badges {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
}

.jbl-shop-card__body {
  flex: 1;
  padding: 0 2px;
}

.jbl-shop-card__name {
  font-family: var(--jbl-font-body, "Source Sans 3", sans-serif);
  font-size: 1rem;
  line-height: 1.35;
  margin: 0 0 4px;
  font-weight: 600;
  color: var(--jbl-ink, #1e2420);
}

.jbl-shop-card__meta {
  font-size: 0.8125rem;
  color: rgba(30, 36, 32, 0.55);
  margin: 0 0 8px;
  line-height: 1.4;
}

.jbl-shop-card__price {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--jbl-ink, #1e2420);
  margin: 0;
}

.jbl-shop-card__price .jbl-price-was {
  font-weight: 400;
  font-size: 0.8125rem;
  color: rgba(30, 36, 32, 0.45);
  text-decoration: line-through;
  margin-right: 4px;
}

.jbl-shop-card__footer {
  margin-top: 12px;
  padding: 0 2px;
}

.jbl-offer-badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--jbl-ink, #1e2420);
  color: #fff;
  padding: 4px 8px;
  border-radius: 2px;
}

.jbl-shop-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 12px 16px;
  border: 1px solid rgba(30, 36, 32, 0.2);
  border-radius: 4px;
  background: #fff;
  color: var(--jbl-ink, #1e2420);
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.jbl-shop-card__btn:hover {
  background: var(--jbl-ink, #1e2420);
  border-color: var(--jbl-ink, #1e2420);
  color: #fff;
}

.jbl-shop-card__btn:focus-visible {
  outline: 2px solid var(--jbl-gold, #c9a84c);
  outline-offset: 2px;
}

/* Homepage coaching promo */
.jbl-coaching-promo {
  background: #fff;
  padding: 56px 24px 64px;
}

.jbl-coaching-promo__inner {
  max-width: none;
  width: 100%;
  margin: 0 auto;
  padding-inline: clamp(24px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.jbl-coaching-promo__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--jbl-gold, #c9a84c);
  margin: 0 0 10px;
  font-weight: 600;
}

.jbl-coaching-promo__title {
  font-family: var(--jbl-font-display, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.15;
  margin: 0 0 14px;
  font-weight: 600;
  color: var(--jbl-ink, #1e2420);
}

.jbl-coaching-promo__intro {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(30, 36, 32, 0.78);
  margin: 0 0 20px;
}

.jbl-coaching-promo__points {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.jbl-coaching-promo__points li {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(30, 36, 32, 0.85);
  padding-left: 1.1rem;
  position: relative;
}

.jbl-coaching-promo__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--jbl-gold, #c9a84c);
}

.jbl-coaching-promo__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 28px;
  background: var(--jbl-ink, #1e2420);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.15s ease;
}

.jbl-coaching-promo__cta:hover {
  background: #2d3530;
}

.jbl-coaching-promo__cta:focus-visible {
  outline: 2px solid var(--jbl-gold, #c9a84c);
  outline-offset: 2px;
}

.jbl-coaching-promo__media {
  border-radius: 4px;
  overflow: hidden;
  background: var(--jbl-cream, #f5f0e8);
}

.jbl-coaching-promo__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .jbl-coaching-promo__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .jbl-coaching-promo__media {
    order: -1;
  }

  .jbl-coaching-promo__media img {
    min-height: 260px;
  }
}

/* Natural cleaning service page */
.jbl-cleaning-promo {
  background: var(--jbl-cream, #f5f0e8);
}

.jbl-cleaning-price {
  margin: 0 0 8px;
  font-size: 1.0625rem;
  color: var(--jbl-ink, #1e2420);
}

.jbl-cleaning-price__note {
  display: block;
  margin-top: 4px;
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(30, 36, 32, 0.65);
}

.jbl-cleaning-enquiry {
  background: #fff;
  padding: 48px 24px 64px;
}

.jbl-cleaning-enquiry__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.jbl-cleaning-status {
  background: rgba(30, 36, 32, 0.04);
  border: 1px solid rgba(30, 36, 32, 0.08);
  border-radius: 4px;
  padding: 24px 28px;
  margin-bottom: 28px;
}

.jbl-cleaning-status__title {
  margin: 0 0 8px;
  font-family: var(--jbl-font-display, "Cormorant Garamond", Georgia, serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--jbl-ink, #1e2420);
}

.jbl-cleaning-status__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(30, 36, 32, 0.78);
}

.jbl-cleaning-enquiry__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
  margin-bottom: 16px;
}

.jbl-cleaning-enquiry__link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--jbl-ink, #1e2420);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.jbl-cleaning-enquiry__link:hover {
  color: #2d3530;
}

.jbl-cleaning-enquiry__footnote {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(30, 36, 32, 0.65);
}

/* Homepage featured products */
.jbl-featured {
  background: var(--jbl-cream, #f5f0e8);
  padding: 56px 24px 64px;
}

.jbl-featured__inner {
  max-width: none;
  width: 100%;
  margin: 0 auto;
  padding-inline: clamp(24px, 4vw, 64px);
}

.jbl-featured__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}

.jbl-featured__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--jbl-gold, #c9a84c);
  margin: 0 0 8px;
  font-weight: 600;
}

.jbl-featured__title {
  font-family: var(--jbl-font-display, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin: 0 0 10px;
  font-weight: 600;
}

.jbl-featured__intro {
  margin: 0;
  color: rgba(30, 36, 32, 0.75);
  line-height: 1.6;
  font-size: 1.0625rem;
}

.jbl-featured__loading,
.jbl-featured__note {
  text-align: center;
  color: rgba(30, 36, 32, 0.65);
  font-size: 0.9375rem;
}

.jbl-featured__note a {
  color: var(--jbl-ink, #1e2420);
  font-weight: 600;
}

.jbl-featured__cta-wrap {
  text-align: center;
  margin-top: 40px;
}

.jbl-featured__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 32px;
  background: var(--jbl-ink, #1e2420);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.15s ease;
}

.jbl-featured__cta:hover {
  background: #2d3530;
}

.jbl-featured__cta:focus-visible {
  outline: 2px solid var(--jbl-gold, #c9a84c);
  outline-offset: 2px;
}

#jbl-featured-catalog .jbl-shop-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: none;
  width: 100%;
}

@media (max-width: 1100px) {
  #jbl-featured-catalog .jbl-shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  #jbl-featured-catalog .jbl-shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 14px;
  }
}

/* Homepage wayfinding */
.jbl-wayfinding {
  background: var(--jbl-cream, #f5f0e8);
  padding: 56px 24px 64px;
}

.jbl-wayfinding__inner {
  max-width: var(--jbl-container, 1320px);
  margin: 0 auto;
}

.jbl-wayfinding__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}

.jbl-wayfinding__title {
  font-family: var(--jbl-font-display, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin: 0 0 10px;
  font-weight: 600;
}

.jbl-wayfinding__intro {
  margin: 0;
  color: rgba(30, 36, 32, 0.75);
  line-height: 1.6;
}

.jbl-wayfinding__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.jbl-wayfinding__card {
  display: block;
  background: #fff;
  border: 1px solid rgba(30, 36, 32, 0.08);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.jbl-wayfinding__card:hover {
  box-shadow: 0 10px 32px rgba(30, 36, 32, 0.1);
  transform: translateY(-2px);
}

.jbl-wayfinding__card:focus-visible {
  outline: 2px solid var(--jbl-gold, #c9a84c);
  outline-offset: 2px;
}

.jbl-wayfinding__card img {
  display: block;
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.jbl-wayfinding__card-body {
  padding: 16px 18px 20px;
}

.jbl-wayfinding__card-title {
  font-family: var(--jbl-font-display, "Cormorant Garamond", Georgia, serif);
  font-size: 1.15rem;
  margin: 0 0 6px;
  font-weight: 600;
}

.jbl-wayfinding__card-text {
  font-size: 0.8125rem;
  color: rgba(30, 36, 32, 0.65);
  margin: 0;
  line-height: 1.45;
}

.jbl-wayfinding__card-count {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--jbl-gold, #c9a84c);
  margin: 8px 0 0;
  letter-spacing: 0.04em;
}

/* Produce category pages */
.jbl-produce-breadcrumb {
  margin: 0 0 28px;
}

.jbl-produce-breadcrumb__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  font-size: 0.875rem;
  color: rgba(30, 36, 32, 0.65);
}

.jbl-produce-breadcrumb__item:not(:last-child)::after {
  content: "/";
  margin-left: 10px;
  color: rgba(30, 36, 32, 0.35);
}

.jbl-produce-breadcrumb__item a {
  color: rgba(30, 36, 32, 0.75);
  text-decoration: none;
}

.jbl-produce-breadcrumb__item a:hover {
  color: var(--jbl-ink, #1e2420);
  text-decoration: underline;
}

.jbl-produce-breadcrumb__item--current {
  color: var(--jbl-ink, #1e2420);
  font-weight: 600;
}

.jbl-produce-back {
  margin: 0 0 32px;
  font-size: 0.9375rem;
}

.jbl-produce-back a {
  color: rgba(30, 36, 32, 0.75);
  text-decoration: none;
  font-weight: 600;
}

.jbl-produce-back a:hover {
  color: var(--jbl-ink, #1e2420);
  text-decoration: underline;
}

.jbl-produce-category-hero {
  margin: 0 auto 32px;
  max-width: 960px;
}

.jbl-produce-category-hero:empty {
  display: none;
}

#jbl-produce-category-grid {
  margin: 0 0 48px;
}

/* Admin grouped sections */
.shop-section-group {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.shop-section-group__title {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a6f2e;
  margin: 0 0 8px;
  padding: 0 4px;
  font-weight: 700;
}

.shop-section-group__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 640px) {
  .jbl-shop-page__inner {
    padding: 32px 16px 48px;
  }

  .jbl-shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 14px;
    max-width: none;
  }

  .jbl-shop-card__name {
    font-size: 0.9375rem;
  }

  .jbl-shop-card__btn {
    font-size: 0.75rem;
    padding: 10px 12px;
  }
}

/* Farm photography strips — single row, image-as-tile, full bleed */
.jbl-photo-strip {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: clip;
  padding: clamp(28px, 4vw, 48px) 0;
  background: var(--jbl-cream, #f5f0e8);
}

.jbl-photo-strip__inner {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 56px);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: center;
  gap: clamp(12px, 1.5vw, 20px);
  height: clamp(220px, 24vw, 360px);
  overflow: hidden;
}

.jbl-photo-strip__item {
  flex: 1 1 0;
  min-width: 0;
  max-width: 100%;
  margin: 0;
  height: 100%;
  display: grid;
  border-radius: 14px;
  overflow: hidden;
  background: var(--jbl-parchment-soft, #ddd8cc);
}

.jbl-photo-strip__item img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Phone screenshots: dfe24cf7, 07e6c920, 24c7cf03, 38aa0d73, 68f5fbbd — future crop candidates */

.jbl-photo-strip--count-1 .jbl-photo-strip__inner {
  height: clamp(280px, 32vw, 420px);
}

.jbl-photo-strip--count-1 .jbl-photo-strip__item {
  flex: 1 1 100%;
  max-width: 100%;
}

.jbl-photo-strip--count-2 .jbl-photo-strip__item {
  flex: 1 1 0;
}

.jbl-photo-strip--count-3 .jbl-photo-strip__inner {
  height: clamp(260px, 28vw, 380px);
}

.jbl-photo-strip--count-3 .jbl-photo-strip__item {
  flex: 1 1 0;
}

.jbl-photo-strip--count-5 .jbl-photo-strip__inner {
  height: clamp(240px, 22vw, 340px);
}

.jbl-photo-strip--count-5 .jbl-photo-strip__item {
  flex: 1 1 0;
}

@media (max-width: 720px) {
  .jbl-photo-strip {
    padding: 24px 0 32px;
  }

  .jbl-photo-strip__inner {
    gap: 10px;
    height: clamp(160px, 36vw, 240px);
  }

  .jbl-photo-strip--count-1 .jbl-photo-strip__inner {
    height: clamp(200px, 44vw, 300px);
  }

  .jbl-photo-strip--count-3 .jbl-photo-strip__inner,
  .jbl-photo-strip--count-5 .jbl-photo-strip__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: auto;
    overflow: visible;
  }

  .jbl-photo-strip--count-3 .jbl-photo-strip__item,
  .jbl-photo-strip--count-5 .jbl-photo-strip__item {
    height: clamp(130px, 34vw, 200px);
  }

  .jbl-photo-strip--count-3 .jbl-photo-strip__item:last-child {
    grid-column: 1 / -1;
    width: min(100%, 320px);
    justify-self: center;
  }

  .jbl-photo-strip--count-5 .jbl-photo-strip__item:nth-child(5) {
    grid-column: 1 / -1;
    width: min(100%, 320px);
    justify-self: center;
  }

  .jbl-photo-strip__item {
    border-radius: 12px;
  }
}

/* Catalog group / category hero images (produce page) */
.jbl-shop-group__hero,
.jbl-shop-category__banner {
  width: 100%;
  max-width: 100%;
  margin: 0 auto 24px;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 21 / 9;
  max-height: 280px;
}

.jbl-shop-group__hero img,
.jbl-shop-category__banner img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Produce & merchandise page sections — centred column */
.produce-v1__inner,
.merch-v1__inner {
  max-width: var(--jbl-container, 1320px);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.produce-v1__header,
.merch-v1__header,
.produce-shop__header {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.produce-v1__header {
  max-width: 640px;
}

.merch-v1__header {
  max-width: 680px;
}

.produce-shop__header {
  max-width: 560px;
}

.produce-shop__lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.produce-why {
  text-align: center;
  max-width: 960px;
  margin: 48px auto 0;
  border-left: none;
  border-top: 3px solid var(--jbl-gold, #c9a84c);
}

.produce-why__title {
  text-align: center;
}

.produce-why__list li {
  text-align: center;
  padding-left: 0;
  padding-top: 1.1rem;
}

.produce-why__list li::before {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.produce-v1__note,
.merch-v1__note {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

#jbl-product-catalog,
#jbl-merch-catalog,
#jbl-coaching-catalog {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

#jbl-coaching-catalog .jbl-shop-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: none;
  width: 100%;
}

#jbl-coaching-catalog .jbl-shop-card__media {
  border-radius: 50%;
  max-width: min(100%, 220px);
  margin-left: auto;
  margin-right: auto;
  background: transparent;
  padding: 0;
}

#jbl-coaching-catalog .jbl-shop-card__media img {
  object-fit: cover;
  border-radius: 50%;
}

@media (max-width: 900px) {
  #jbl-coaching-catalog .jbl-shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #jbl-coaching-catalog .jbl-shop-grid > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: min(100%, 360px);
    justify-self: center;
  }
}

@media (max-width: 640px) {
  #jbl-coaching-catalog .jbl-shop-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  #jbl-coaching-catalog .jbl-shop-grid > :last-child:nth-child(odd) {
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
  }
}

/* Healthy Habits coaching page */
.jbl-habits {
  color: var(--jbl-ink, #1e2420);
}

.jbl-habits__inner {
  max-width: var(--jbl-container, 1320px);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
}

.jbl-habits__inner--narrow {
  max-width: 820px;
}

.jbl-habits__hero {
  background: var(--jbl-cream, #f5f0e8);
  padding: 48px 0 56px;
  border-bottom: 4px solid var(--jbl-gold, #c9a84c);
}

.jbl-habits__brand {
  margin: 0 0 10px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jbl-green-800, #1c2416);
  text-align: center;
}

.jbl-habits__title {
  margin: 0 0 14px;
  font-family: var(--jbl-font-display, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  font-weight: 700;
  text-align: center;
  color: var(--jbl-green-800, #1c2416);
}

.jbl-habits__strapline {
  margin: 0 0 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  color: var(--jbl-gold, #c9a84c);
}

.jbl-habits__intro {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.jbl-habits__intro p {
  margin: 0 0 14px;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(30, 36, 32, 0.82);
}

.jbl-habits__no-list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: grid;
  gap: 6px;
}

.jbl-habits__no-list li {
  font-size: 1rem;
  font-weight: 600;
  color: var(--jbl-green-800, #1c2416);
}

.jbl-habits__intro-strong {
  font-weight: 600;
  color: var(--jbl-ink, #1e2420) !important;
}

.jbl-habits__section {
  padding: 56px 0;
  background: #fff;
}

.jbl-habits__section--cream {
  background: var(--jbl-cream, #f5f0e8);
}

.jbl-habits__section--cta {
  background: var(--jbl-green-900, #1a2213);
  color: #fff;
  padding-bottom: 64px;
}

.jbl-habits__section-title {
  margin: 0 0 32px;
  font-family: var(--jbl-font-display, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.15;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.jbl-habits__pillars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.jbl-habits__pillar {
  background: #fff;
  border: 1px solid var(--jbl-parchment, #e8e0d0);
  border-top: 4px solid var(--jbl-gold, #c9a84c);
  padding: 24px 20px;
  text-align: center;
}

.jbl-habits__pillar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--jbl-cream, #f5f0e8);
  font-size: 1.5rem;
}

.jbl-habits__pillar-title {
  margin: 0 0 10px;
  font-family: var(--jbl-font-display, "Cormorant Garamond", Georgia, serif);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.jbl-habits__pillar p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(30, 36, 32, 0.78);
}

.jbl-habits__tiers {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.jbl-habits__tier {
  background: #fff;
  border: 1px solid var(--jbl-parchment, #e8e0d0);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}

.jbl-habits__tier--green {
  border-top: 5px solid #4a8f5c;
}

.jbl-habits__tier--growth {
  border-top: 5px solid #4a7c9e;
}

.jbl-habits__tier--transformation {
  border-top: 5px solid #6b5b95;
}

.jbl-habits__tier-label {
  margin: 0 0 6px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.jbl-habits__tier--green .jbl-habits__tier-label {
  color: #4a8f5c;
}

.jbl-habits__tier--growth .jbl-habits__tier-label {
  color: #4a7c9e;
}

.jbl-habits__tier--transformation .jbl-habits__tier-label {
  color: #6b5b95;
}

.jbl-habits__tier-price {
  margin: 0 0 10px;
  font-family: var(--jbl-font-display, "Cormorant Garamond", Georgia, serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
}

.jbl-habits__tier-price span {
  font-family: var(--jbl-font-body, "Source Sans 3", sans-serif);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(30, 36, 32, 0.65);
}

.jbl-habits__tier-tagline {
  margin: 0 0 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.jbl-habits__tier-includes {
  margin: 0 0 10px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.jbl-habits__tier ul {
  margin: 0 0 24px;
  padding-left: 1.15rem;
  flex: 1;
}

.jbl-habits__tier li {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(30, 36, 32, 0.82);
}

.jbl-habits__tier li + li {
  margin-top: 8px;
}

.jbl-habits__tier-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  background: var(--jbl-ink, #1e2420);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: background 0.15s ease;
}

.jbl-habits__tier-cta:hover {
  background: #2d3530;
}

.jbl-habits__meals {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.jbl-habits__meal {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--jbl-parchment, #e8e0d0);
  padding: 16px;
}

.jbl-habits__meal-media {
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  background: var(--jbl-cream, #f5f0e8);
}

.jbl-habits__meal-media img {
  display: block;
  width: 96px;
  height: 96px;
  object-fit: cover;
}

.jbl-habits__meal h3 {
  margin: 0 0 6px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--jbl-gold, #c9a84c);
}

.jbl-habits__meal p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
}

.jbl-habits__meals-note {
  margin: 24px 0 0;
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(30, 36, 32, 0.72);
}

.jbl-habits__promise {
  background: var(--jbl-green-800, #1c2416);
  color: #fff;
  padding: 32px 28px;
  border-radius: 4px;
}

.jbl-habits__promise-title {
  margin: 0 0 18px;
  font-family: var(--jbl-font-display, "Cormorant Garamond", Georgia, serif);
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

.jbl-habits__promise-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 16px;
}

.jbl-habits__promise-list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.jbl-habits__promise-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--jbl-gold, #c9a84c);
}

.jbl-habits__promise-foot {
  margin: 22px 0 0;
  text-align: center;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

.jbl-habits__note {
  background: #fff;
  border: 1px solid var(--jbl-parchment, #e8e0d0);
  border-left: 4px solid var(--jbl-gold, #c9a84c);
  padding: 28px 24px;
}

.jbl-habits__note-title {
  margin: 0 0 14px;
  font-family: var(--jbl-font-display, "Cormorant Garamond", Georgia, serif);
  font-size: 1.5rem;
  font-weight: 700;
}

.jbl-habits__note p {
  margin: 0 0 12px;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(30, 36, 32, 0.82);
}

.jbl-habits__note p:last-child {
  margin-bottom: 0;
}

.jbl-habits__vision {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.jbl-habits__vision p {
  margin: 0 0 14px;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(30, 36, 32, 0.82);
}

.jbl-habits__vision-list {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
}

.jbl-habits__vision-list li {
  background: var(--jbl-cream, #f5f0e8);
  border: 1px solid var(--jbl-parchment, #e8e0d0);
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 600;
}

.jbl-habits__vision-tagline {
  margin-top: 24px !important;
  font-family: var(--jbl-font-display, "Cormorant Garamond", Georgia, serif);
  font-size: 1.35rem !important;
  font-weight: 700;
  line-height: 1.45 !important;
  color: var(--jbl-green-800, #1c2416) !important;
}

.jbl-habits__cta-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.35);
  padding: 36px 28px;
  text-align: center;
}

.jbl-habits__cta-title {
  margin: 0 0 16px;
  font-family: var(--jbl-font-display, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.jbl-habits__cta-box p {
  margin: 0 0 12px;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.jbl-habits__cta-strong {
  font-weight: 700;
  color: var(--jbl-gold, #c9a84c) !important;
}

.jbl-habits__cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
  margin: 24px 0;
}

.jbl-habits__cta-link {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.jbl-habits__contact {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.jbl-habits__contact p {
  margin: 0 0 6px;
  font-size: 0.9375rem;
}

.jbl-habits__contact a {
  color: var(--jbl-gold-light, #e8c96a);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .jbl-habits__pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jbl-habits__tiers {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .jbl-habits__hero {
    padding: 36px 0 44px;
  }

  .jbl-habits__section {
    padding: 40px 0;
  }

  .jbl-habits__pillars,
  .jbl-habits__meals,
  .jbl-habits__promise-list {
    grid-template-columns: 1fr;
  }

  .jbl-habits__meal {
    grid-template-columns: 72px 1fr;
  }

  .jbl-habits__meal-media img {
    width: 72px;
    height: 72px;
  }
}
