/** Shopify CDN: Minification failed

Line 97:24 Expected ":"
Line 101:24 Expected ":"
Line 206:27 Expected ":"

**/
/* ── About Story ── */
.about-story-wrapper {
  position: relative;
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  padding: 80px 60px;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-story.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Image column ── */
.about-story__image-col {
  position: relative;
}

.about-story__image,
.about-story__image-placeholder {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.about-story__image-placeholder {
  background: #FBF3E9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-story__image-placeholder svg {
  width: 60%;
  height: 60%;
  opacity: 0.3;
}

/* Vertical label */
.about-story__label {
  position: absolute;
  right: -28px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--font-secondary);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ── Content column ── */
.about-story__eyebrow {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.about-story__heading {
  font-family: var(--font-primary);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  margin: 0 0 24px;
  line-height: 1.2;
}

.about-story__text {
  font-family: var(--font-secondary);
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
  text-align: justify;
  margin: 0 0 60px;  ← SPACE BETWEEN PARAGRAPHS
}

.about-story__text:last-child {
  margin-bottom: 0;  ← NO MARGIN ON LAST
}


.about-story__btn {
  display: inline-block;
  color: #FFFFFF;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.about-story__btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* ── Mobile (base layout) ── */
@media (max-width: 749px) {
  .about-story {
    grid-template-columns: 1fr;
    padding: 60px 20px;
    gap: 40px;
  }

  .about-story__image,
  .about-story__image-placeholder {
    height: 350px;
  }

  .about-story__label {
    display: none;
  }
}

/* ══════════════════════════════════════════════════
   NO-IMAGE STATE — overrides everything above when
   .about-story--no-image is present. Must stay BELOW
   the base rules so it wins the cascade.
   ══════════════════════════════════════════════════ */

.about-story--no-image {
  display: flex;
  justify-content: center;
  min-height: unset;      /* reset base min-height: 600px */
  grid-template-columns: unset;  /* base grid rule no longer applies but reset for safety */
  padding: 100px 40px;
  background: linear-gradient(135deg, rgba(226, 169, 241, 0.10), rgba(42, 210, 201, 0.10));
}

.about-story--no-image .about-story__content-col {
  max-width: 760px;
  width: 100%;
  text-align: center;
  background: #FFFFFF;
  border-radius: 28px;
  padding: 64px 56px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.about-story__sparkle {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto 20px;
  animation: about-story-sparkle-spin 4s ease-in-out infinite;
}

.about-story__sparkle svg {
  width: 100%;
  height: 100%;
}

@keyframes about-story-sparkle-spin {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25%       { transform: rotate(15deg) scale(1.1); }
  75%       { transform: rotate(-15deg) scale(1.1); }
}

.about-story--no-image .about-story__eyebrow {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-story--no-image .about-story__heading {
  font-family: var(--font-primary);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.25;
  margin-bottom: 28px;
}

.about-story--no-image .about-story__text {
  font-family: var(--font-secondary);
  font-size: 17px;
  line-height: 1.9;
  font-weight: 500;
  max-width: 620px;
  margin: 0 auto 20px;  ← ADD THE 100px HERE
  text-align: justify;
  text-justify: inter-word;
}

.about-story--no-image .about-story__btn {
  display: inline-block;
  margin-top: 32px;
}

/* ── Mobile (no-image state) ── */
@media (max-width: 749px) {
  .about-story--no-image {
    padding: 60px 20px;
  }
@media (max-width: 749px) {
  .about-story__text,
  .about-story--no-image .about-story__text {
    text-align: left;
  }
}
  .about-story--no-image .about-story__content-col {
    padding: 40px 28px;
    border-radius: 20px;
  }
}