/* ===== SHOP PAGE — scoped to .sp- prefix ===== */
.sp-body {
  font-family: 'Nunito', sans-serif;
  background: #FFF5E6;
  color: #2C1810;
  min-height: 100vh;
}

/* NAV */
.sp-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.sp-nav__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #2C1810;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.sp-nav__links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  list-style: none;
}
.sp-nav__links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #5C3D2E;
  text-decoration: none;
  transition: color 0.15s;
}
.sp-nav__links a:hover { color: #FF7F6B; }
.sp-nav__cta {
  background: #FF7F6B;
  color: #fff !important;
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  font-weight: 700 !important;
}
.sp-nav__cta:hover { background: #2C1810; color: #fff !important; }

/* HERO STRIP */
.sp-hero {
  position: relative;
  background: linear-gradient(160deg, #FFB700 0%, #FF9500 20%, #FF7F6B 45%, #3BC8C1 70%, #1A5F7A 100%);
  background-size: 300% 300%;
  animation: shopGradient 16s ease infinite;
  padding: 4rem 2rem 5rem;
  text-align: center;
  overflow: hidden;
}
@keyframes shopGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.sp-hero__wave { position: absolute; bottom: -1px; left: 0; right: 0; z-index: 2; }
.sp-hero__wave svg { display: block; width: 100%; height: auto; }
.sp-hero__content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.sp-hero__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 100px;
  padding: 0.35em 1.1em;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(4px);
}
.sp-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 1rem;
}
.sp-hero__title em { color: #FFB700; font-style: italic; }
.sp-hero__sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  margin: 0 auto 1.75rem;
  max-width: 540px;
}
.sp-hero__sub-en { font-size: 0.88rem; color: rgba(255,255,255,0.6); font-style: italic; }

/* PRODUCT GRID */
.sp-products { padding: 5rem 2rem 4rem; max-width: 1100px; margin: 0 auto; }
.sp-products__header { text-align: center; margin-bottom: 3rem; }
.sp-products__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #3BC8C1;
  margin-bottom: 0.75rem;
}
.sp-products__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #2C1810;
  line-height: 1.2;
}
.sp-products__title em { color: #FF7F6B; font-style: italic; }
.sp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
@media (max-width: 900px) { .sp-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) {
  .sp-grid { grid-template-columns: 1fr; }
  .sp-products { padding: 3.5rem 1.25rem 3rem; }
}

/* PRODUCT CARD */
.sp-card {
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 28px rgba(0,0,0,0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  background: #fff;
}
.sp-card:hover { transform: translateY(-6px); box-shadow: 0 12px 48px rgba(0,0,0,0.13); }
.sp-card__visual {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.sp-card--vela .sp-card__visual { background: linear-gradient(135deg, #FF9500 0%, #FF7F6B 60%, #FFB5AD 100%); }
.sp-card--joya .sp-card__visual { background: linear-gradient(135deg, #FFD700 0%, #F5E8A0 50%, #E8D5B0 100%); }
.sp-card--ropa .sp-card__visual { background: linear-gradient(135deg, #3BC8C1 0%, #1A9FAA 50%, #F4907A 100%); }
.sp-card__svg { width: 120px; height: 140px; }
.sp-card__body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.sp-card__name { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; color: #2C1810; }
.sp-card__tagline { font-size: 0.88rem; color: #5C3D2E; line-height: 1.55; }
.sp-card__bottom { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 1rem; }
.sp-card__price { font-size: 1.5rem; font-weight: 700; color: #2C1810; }
.sp-card__price span { font-size: 0.78rem; font-weight: 500; color: #a08060; margin-left: 0.25rem; }
.sp-card__cta {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.18s, transform 0.15s;
}
.sp-card--vela .sp-card__cta { background: #FF7F6B; color: #fff; }
.sp-card--vela .sp-card__cta:hover { background: #2C1810; transform: scale(1.04); }
.sp-card--joya .sp-card__cta { background: #FFB700; color: #2C1810; }
.sp-card--joya .sp-card__cta:hover { background: #2C1810; color: #fff; transform: scale(1.04); }
.sp-card--ropa .sp-card__cta { background: #3BC8C1; color: #fff; }
.sp-card--ropa .sp-card__cta:hover { background: #2C1810; transform: scale(1.04); }

/* WHY SOLFLORE */
.sp-why { background: #F5E8CC; padding: 4rem 2rem; }
.sp-why__inner { max-width: 960px; margin: 0 auto; }
.sp-why__header { text-align: center; margin-bottom: 2.5rem; }
.sp-why__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FF7F6B;
  margin-bottom: 0.6rem;
}
.sp-why__title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; color: #2C1810; }
.sp-why__title em { color: #FF7F6B; font-style: italic; }
.sp-why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 680px) {
  .sp-why__grid { grid-template-columns: 1fr; }
  .sp-why { padding: 3rem 1.25rem; }
}
.sp-why-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.sp-why-card__icon { font-size: 2rem; }
.sp-why-card__title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: #2C1810; }
.sp-why-card__text { font-size: 0.88rem; color: #5C3D2E; line-height: 1.65; }
.sp-why-card__en { font-size: 0.78rem; color: #a08060; font-style: italic; line-height: 1.5; }

/* EMAIL CAPTURE */
.sp-capture { padding: 4rem 2rem; background: #1A5F7A; text-align: center; color: #fff; }
.sp-capture__title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; margin: 0 0 0.5rem; }
.sp-capture__title em { color: #FFB700; font-style: italic; }
.sp-capture__sub { font-size: 0.95rem; color: rgba(255,255,255,0.75); margin: 0 auto 2rem; max-width: 460px; line-height: 1.65; }
.sp-capture__form { display: flex; gap: 0.6rem; max-width: 440px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.sp-capture__input { flex: 1; min-width: 220px; padding: 0.75rem 1.1rem; border-radius: 12px; border: none; font-family: 'Nunito', sans-serif; font-size: 0.95rem; color: #2C1810; outline: none; }
.sp-capture__btn { padding: 0.75rem 1.5rem; background: #FF7F6B; color: #fff; border: none; border-radius: 12px; font-family: 'Nunito', sans-serif; font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: background 0.15s; white-space: nowrap; }
.sp-capture__btn:hover { background: #FFB700; color: #2C1810; }
.sp-capture__ok { display: none; color: #FFB700; font-weight: 600; font-size: 1rem; margin-top: 0.75rem; }

/* FOOTER */
.sp-footer { background: #2C1810; color: rgba(255,255,255,0.7); padding: 2.5rem 2rem 1.5rem; }
.sp-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.25rem;
}
.sp-footer__logo { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: #fff; display: block; margin-bottom: 0.35rem; }
.sp-footer__tagline { font-size: 0.82rem; color: rgba(255,255,255,0.5); font-style: italic; }
.sp-footer__links h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 0.75rem; }
.sp-footer__links ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.sp-footer__links ul a { font-size: 0.88rem; color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.15s; }
.sp-footer__links ul a:hover { color: #FF7F6B; }
.sp-footer__bottom { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem; }
.sp-footer__copy { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.sp-footer__powered { font-size: 0.72rem; color: rgba(255,255,255,0.2); }

@media (max-width: 600px) {
  .sp-nav { padding: 1rem 1.25rem; }
  .sp-nav__links { display: none; }
  .sp-hero { padding: 3rem 1.25rem 4.5rem; }
  .sp-footer__inner { flex-direction: column; }
  .sp-footer__bottom { flex-direction: column; text-align: center; }
}
