/* Flowersstore — Bloom & Bubbles feature (tokens in theme.css).
 * Scroll entrance: root `data-cs-scroll-reveal` + `.reveal` on children — theme.css + components/js/animation.js */

.feature--bloom { background: var(--theme-surface-high); }
.feature__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(36px, 6vw, 90px);
}
.feature__inner--reverse .feature__media { order: 2; }
.feature__media { position: relative; border-radius: 10px; overflow: hidden; }
.feature__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.feature__badge {
  position: absolute; top: 18px; left: 18px;
  background: rgba(251,246,238,0.92); color: var(--theme-coffee);
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  padding: 0.6em 1.1em; border-radius: 999px;
}
.feature__text .section-title { margin-bottom: 1.2rem; }
.feature__text p { color: var(--theme-text-muted); max-width: 48ch; margin-bottom: 1.4rem; }
.feature__list { list-style: none; padding: 0; margin: 0 0 2rem; }
.feature__list li {
  position: relative; padding-left: 1.7em; margin-bottom: 0.7em;
  color: var(--theme-secondary); font-size: 0.98rem;
}
.feature__list li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 8px; height: 8px; border-radius: 50%;
  background: #b98d77;
}
.btn:hover {
    transform: translateY(-2px);
  }
  
.btn:active {
    transform: translateY(0);
  }
  
.btn--solid {
    background-color: var(--theme-coffee);
    color: var(--theme-surface);
  }
  
.btn--outline-light {
    background-color: transparent;
    border-color: var(--theme-hero-btn-border);
    color: var(--theme-hero-text);
  }
  
.btn--solid:hover {
    background-color: var(--theme-secondary);
  }
.btn--outline-light:hover {
    background-color: var(--theme-surface);
    color: var(--theme-coffee);
    border-color: var(--theme-surface);
  }
  
  @media (max-width: 640px) {
    body { font-size: 16px; }
   .btn { flex: 1 1 auto; }
  }
 .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--theme-font-family);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1.05em 2.1em;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.35s var(--ease, cubic-bezier(0.22, 0.61, 0.36, 1)),
    color 0.35s var(--ease, cubic-bezier(0.22, 0.61, 0.36, 1)),
    border-color 0.35s var(--ease, cubic-bezier(0.22, 0.61, 0.36, 1)),
    transform 0.35s var(--ease, cubic-bezier(0.22, 0.61, 0.36, 1));
  white-space: nowrap;
}
@media (max-width: 980px) {
    .feature__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
