/** Shopify CDN: Minification failed

Line 98:18 Expected identifier but found "!"
Line 246:0 Unexpected "}"

**/
/* Lookbook section — editorial intro + full-width / paired vertical product cards */

.lookbook-section {
  --lb-cream: #fffaf6;
  --lb-ink: #616161;
  --lb-graphite: #616161;
  --lb-sage: #77837a;
  --lb-stage-bg: #e7ded2;
  --lb-line: rgba(35, 41, 50, 0.16);
  --lb-sale: var(--sale-color, #ef5f48);
  --lb-serif: var(--heading-custom-family, var(--heading-family, Georgia, serif));
  --lb-sans: var(--main-family, 'Jost', 'Helvetica Neue', system-ui, sans-serif);
}

.lookbook__container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}

.lookbook-section.lookbook--edge .lookbook__container {
  max-width: none;
}

/* ---------- editorial intro ---------- */

.lookbook__intro {
  padding: 70px 0 44px;
}

.lookbook__intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: top;
  max-width: 860px;
  margin: 0 auto;
}

.lookbook__eyebrow {
  font-family: var(--lb-sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lb-sage);
  margin-bottom: 18px;
}

.lookbook__heading {
  font-family: var(--lb-serif);
  font-weight: var(--heading-weight, 300);
  font-size: clamp(28px, 3.75vw, 50px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--lb-ink);
  text-wrap: balance;
}

.lookbook__description {
  font-family: var(--lb-sans);
  font-size: 15px;
  line-height: 1.75;
  color: var(--lb-graphite);
  margin: 0 0 22px;
  max-width: 440px;
}

.lookbook__description p {
  margin: 0 0 12px;
}

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

.lookbook__intro-ctas {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  font-family: var(--lb-sans);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lookbook__intro-button {
  display: inline-block;
  padding: 13px 24px;
  background: var(--lb-accent, #DBDCD1);
  color: #DBDCD1; !important;
  text-decoration: none;
  transition: opacity 0.2s;
}

.lookbook__intro-button:hover {
  opacity: 0.88;
  color: #fff;
}

.lookbook__intro-link {
  color: var(--lb-ink);
  border-bottom: 1px solid var(--lb-ink);
  padding-bottom: 2px;
  text-decoration: none;
}

/* ---------- card grid ---------- */

.lookbook__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 6px;
  padding-top: 8px;
  padding-bottom: 20px;
}

.lookbook__intro + .lookbook__grid {
  padding-top: 0;
}

.lb-card {
  position: relative;
}

.lb-card--full {
  grid-column: 1 / -1;
}

lookbook-card {
  display: block;
}

.lb-card__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 6;
  background: var(--lb-stage-bg);
  overflow: hidden;
}

.lb-card--full .lb-card__stage {
  aspect-ratio: 3 / 2;
}

/* subtle woven texture so an empty stage still feels intentional */
.lb-card__stage::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0 2px, transparent 2px 6px);
}

.lb-card__media {
  position: absolute;
  inset: 0;
  display: block;
}

.lb-card__media img,
.lb-card__media svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lb-card__vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(120% 90% at 0% 100%, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0) 55%);
  opacity: 0.9;
}

/* ---------- badge ---------- */

.lb-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: inline-block;
  font-family: var(--lb-sans);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 11px;
  line-height: 1;
  font-weight: 500;
}

.lb-badge--solid {
  background: var(--lb-accent, #29452f);
  color: var(--lb-cream);
}

.lb-badge--outline {
  background: rgba(255, 250, 246, 0.9);
  color: var(--lb-accent, #29452f);
  border: 1px solid var(--lb-accent, #29452f);
}

.lb-badge--sale {
  background: var(--lb-sale);
  color: #fff;
}

/* ---------- corner chip ---------- */

.lb-chip {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  width: 130px;
  max-width: calc(100% - 24px);
}

.lb-card--full .lb-chip {
  width: 140px;
}

.lb-chip__inner {
  background: rgba(255, 250, 246, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 5px 7px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}
}

.lb-chip__row {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 8px;
}

.lb-chip__title {
  font-family: var(--lb-serif);
  font-weight: var(--heading-weight, 300);
  font-size: 16px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--lb-ink);
  text-decoration: none;
}

.lb-chip__price {
  text-align: right;
  flex: 0 0 auto;
  font-family: var(--lb-sans);
  font-size: 13px;
  color: var(--lb-ink);
}

.lb-chip__price-from {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lb-graphite);
  margin-right: 4px;
}

.lb-chip__price--sale {
  display: flex;
  gap: 7px;
  align-items: baseline;
  justify-content: flex-end;
}

.lb-chip__price-compare {
  font-size: 11.5px;
  color: var(--lb-graphite);
  text-decoration: line-through;
}

.lb-chip__price-sale {
  color: var(--lb-sale);
}

.lb-chip__meta {
  font-family: var(--lb-sans);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lb-graphite);
  margin-top: 4px;
}

/* ---------- swatches ---------- */

.lb-chip__swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
    justify-content: flex-start;
  margin-top: 8px;
}

.lb-swatch {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  background-color: var(--lb-stage-bg);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(35, 41, 50, 0.18);
  outline: 1px solid transparent;
  outline-offset: 2px;
  transition: outline-color 0.15s;
}

.lb-swatch.is-active {
  outline-color: var(--lb-ink);
}

/* ---------- CTAs ---------- */

.lb-chip__ctas {
  display: flex;
  gap: 6px;
  align-items: stretch;
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s, max-height 0.25s, margin-top 0.25s;
  pointer-events: none;
}

.lb-card:hover .lb-chip__ctas,
.lb-card:focus-within .lb-chip__ctas {
  margin-top: 8px;
  max-height: 60px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (hover: none) {
  .lb-chip__ctas {
    margin-top: 8px;
    max-height: 60px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

.lb-btn {
  flex: 1 1 0;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  font-family: var(--lb-sans);
  font-size: 8.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  padding: 7px 5px;
  line-height: normal;
  border-radius: 0;
}

.lb-btn--ghost {
  border: 1px solid var(--lb-line);
  background: transparent;
  color: var(--lb-ink);
}

.lb-btn--ghost:hover {
  border-color: var(--lb-ink);
  color: var(--lb-ink);
}

.lb-btn--fill {
  border: 1px solid var(--lb-accent, #29452f);
  background: var(--lb-accent, #29452f);
  color: #fff;
}

.lb-btn--fill:hover {
  opacity: 0.88;
  color: #fff;
}

/* ---------- onboarding ---------- */

.lb-card__onboard-note {
  font-family: var(--lb-sans);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lb-graphite);
  margin-top: 4px;
}

/* ---------- responsive ---------- */

@media only screen and (max-width: 989px) {
  .lookbook__intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .lookbook__intro {
    padding: 48px 0 32px;
  }
}

@media only screen and (max-width: 749px) {
  .lookbook__container {
    padding: 0 20px;
  }

  .lookbook__grid {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-bottom: 56px;
  }

  .lb-card--split {
    grid-column: 1 / -1;
  }

  .lb-card--full .lb-card__stage {
    aspect-ratio: 4 / 3;
  }
}
