@charset "utf-8";

/* ── SHOP PAGE STYLES ── */
/* Matches pricing/about/services design system */

/* ── HERO ── */
.sp-hero {
   background-image: linear-gradient(180deg, #779eab 0%, #ffffff 70%);
  min-height: auto;
  display: flex;
  align-items: center;
}
.sp-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  width: 100%;
}
.sp-hero-text {
  flex: 1;
  min-width: 280px;
  max-width: 540px;
}
.sp-eyebrow {
  font-size: 0.72rem;
  font-weight: bold;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2b3a4b;
  margin-bottom: 8px;
}
.sp-eyebrow-light { color: rgba(255,255,255,0.75); }
.sp-hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: bold;
  color: #2b3a4b;
	text-shadow: none;
  margin-bottom: 12px;
  line-height: 1.15;
  
}
.sp-hero p {
  font-size: 1rem;
  color: #2b3a4b;
text-shadow: none;
  font-weight: bold;
  margin-bottom: 24px;
  line-height: 1.5;
  
}
.sp-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.sp-hero-img {
  flex: 1;
  min-width: 220px;
  max-width: 380px;
  margin: 0 auto;
}
.sp-hero-img img {
  width: 100%;
  display: block;
  filter: drop-shadow(0px 8px 20px rgba(0,0,0,0.3));
}

/* ── WHAT'S DIFFERENT BAND ── */
.sp-diff-band {
  background-image: linear-gradient(135deg, #779eab 0%, #5c8d9d 100%);
  padding: 50px 20px;
  color: #ffffff;
}
.sp-diff-h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 8px;
  text-shadow: -1px 1px 2px rgba(0,0,0,0.2);
}
.sp-diff-sub {
  color: rgba(255,255,255,0.85);
  font-size: 0.97rem;
  max-width: 600px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.sp-diff-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.sp-diff-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 22px 18px;
  width: 100%;
  max-width: 220px;
  text-align: center;
  box-shadow: rgba(0,0,0,0.1) 0px 4px 12px;
}
.sp-diff-icon { font-size: 1.8rem; margin-bottom: 10px; }
.sp-diff-card p { font-size: 0.88rem; color: #2b3a4b; line-height: 1.6; font-weight: bold; }

/* ── SHARED SECTIONS ── */
.sp-section { padding: 50px 20px; background: #ffffff; }
.sp-section-alt { background: #f7f7f8; }
.sp-section-inner { max-width: 1000px; margin: 0 auto; }
.sp-divider { height: 1px; background: #d0e4ea; border: none; margin: 0; }
.sp-h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #2b3a4b;
  font-weight: bold;
  margin-bottom: 8px;
  text-shadow: -1px 1px 2px rgba(72,72,72,0.2);
}
.sp-subhead {
  color: #555555;
  font-size: 0.95rem;
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 680px;
}

/* ── PRODUCTS GRID ── */
.sp-products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.sp-product {
  background: #ffffff;
  border: 1px solid #d0e4ea;
  border-radius: 10px;
  width: 100%;
  max-width: 240px;
  box-shadow: rgba(0,0,0,0.07) 0px 4px 14px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.sp-product:hover {
  box-shadow: rgba(0,0,0,0.14) 0px 8px 24px;
  transform: translateY(-3px);
}
.sp-product-featured {
  border-color: #779eab;
  box-shadow: rgba(119,158,171,0.3) 0px 6px 20px;
}
.sp-product-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #779eab;
}
.sp-product-badge {
  position: absolute;
  top: 10px; right: 10px;
  background: #f9a525;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  text-shadow: -1px 1px 1px rgba(0,0,0,0.2);
}
.sp-product-img-wrap {
  width: 100%;
  background: #fafafa;
  border-bottom: 1px solid #e8f0f4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  height: 200px;
  overflow: hidden;
}
.sp-product-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
}
.sp-product-info {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.sp-product-title {
  font-size: 0.97rem;
  font-weight: bold;
  color: #2b3a4b;
  line-height: 1.3;
  margin-bottom: 6px;
}
.sp-product-price {
  font-size: 1.1rem;
  font-weight: bold;
  color: #779eab;
  margin-bottom: 14px;
}

/* ── CTA BAND ── */
.sp-cta-band {
  background-image: linear-gradient(135deg, #779eab 0%, #5c8d9d 100%);
  color: #ffffff;
  padding: 50px 20px;
}
.sp-cta-h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 10px;
  text-shadow: -1px 1px 2px rgba(0,0,0,0.2);
}
.sp-cta-sub {
  color: rgba(255,255,255,0.85);
  font-size: 0.97rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── BUTTONS ── */
.btn-sp-primary {
  display: inline-block;
  background: #f9a525;
  color: #ffffff;
  font-weight: bold;
  font-size: 0.97rem;
  padding: 13px 28px;
  border-radius: 6px;
  text-decoration: none;
  text-shadow: -1px 1px 2px rgba(0,0,0,0.25);
  box-shadow: rgba(0,0,0,0.15) 0px 4px 12px;
  transition: background 0.18s, transform 0.15s;
}
.btn-sp-primary:hover { background: #e0941a; transform: translateY(-1px); }
.btn-sp-ghost {
  display: inline-block;
  border: 2px solid rgba(43,58,75,0.4);
color: #2b3a4b;
background: transparent;
  font-weight: bold;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.18s;
}
.btn-sp-ghost:hover { background: rgba(255,255,255,0.25); }
.btn-sp-ghost-light {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  font-weight: bold;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.5);
  text-decoration: none;
  transition: border-color 0.18s, background 0.18s;
}
.btn-sp-ghost-light:hover { border-color: #ffffff; background: rgba(255,255,255,0.1); }
.btn-sp-buy {
  display: block;
  background: #f9a525;
  color: #ffffff;
  font-weight: bold;
  font-size: 0.95rem;
  padding: 11px 0;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  text-shadow: -1px 1px 2px rgba(0,0,0,0.2);
  box-shadow: rgba(0,0,0,0.12) 0px 3px 8px;
  transition: background 0.18s;
  margin-top: auto;
}
.btn-sp-buy:hover { background: #e0941a; }

/* ── RESPONSIVE ── */
@media screen and (max-width: 700px) {
  .sp-hero-img { max-width: 280px; }
  .sp-product { max-width: 100%; }
  .sp-diff-card { max-width: 100%; }
  .sp-hero { min-height: auto; }
  .sp-hero-inner { padding: 30px 16px; }
}
