/* ══════════════════════════════
   SHIPPING BANNER
   ══════════════════════════════ */
.shipping-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px var(--space-6);
  background: var(--teal-700);
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: 600;
  text-align: center;
  margin-top: var(--nav-height);
}
.shipping-banner svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ══════════════════════════════
   PAGE HERO
   ══════════════════════════════ */
.page-hero {
  padding: var(--space-16) var(--space-6) var(--space-12);
  text-align: center;
}
.page-hero .section-header { margin-bottom: 0; }
.page-hero h1 { margin-bottom: var(--space-4); }
.page-hero p {
  font-size: var(--text-lg);
  color: var(--slate);
  max-width: 580px;
  margin: 0 auto;
}

/* ══════════════════════════════
   FEATURED PRODUCT
   ══════════════════════════════ */
.featured-section {
  padding: 0 var(--space-6) var(--space-16);
  max-width: var(--max-width);
  margin: 0 auto;
}

.featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.featured-visual {
  position: relative;
  background: linear-gradient(135deg, var(--teal-100), var(--cream-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.featured-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  color: var(--teal-700);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
}
.featured-badge {
  position: absolute;
  top: var(--space-5);
  left: var(--space-5);
  background: var(--coral);
  color: var(--white);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.featured-info {
  padding: var(--space-10);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-600);
  margin-bottom: var(--space-3);
}
.featured-info h2 { margin-bottom: var(--space-4); font-size: var(--text-3xl); }
.featured-desc {
  font-size: var(--text-base);
  color: var(--slate);
  line-height: var(--leading-loose);
  margin-bottom: var(--space-6);
}

.featured-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}
.fh-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy);
}

.featured-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}
.featured-price { display: flex; align-items: baseline; gap: 10px; }
.price-now {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 600;
  color: var(--navy);
}
.price-was {
  font-size: var(--text-lg);
  color: var(--slate);
  text-decoration: line-through;
}

@media (max-width: 768px) {
  .featured-card { grid-template-columns: 1fr; }
  .featured-visual { min-height: 240px; }
  .featured-info { padding: var(--space-6); }
}

/* ══════════════════════════════
   PRODUCT GRID
   ══════════════════════════════ */
.products-section {
  padding: var(--space-16) var(--space-6) var(--space-24);
  max-width: var(--max-width);
  margin: 0 auto;
}
.products-section .section-header { margin-bottom: var(--space-12); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-img {
  position: relative;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-10) var(--space-6);
}

.product-badge {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  background: var(--teal-600);
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.product-badge.sale { background: var(--coral); }
.product-badge.new { background: var(--amber-dark); }

.product-body { padding: var(--space-5) var(--space-6) var(--space-6); }
.product-body h3 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-2);
}
.product-detail {
  font-size: var(--text-sm);
  color: var(--slate);
  line-height: var(--leading-normal);
  margin-bottom: var(--space-4);
}

/* Color/variant options */
.product-options {
  display: flex;
  gap: 8px;
  margin-bottom: var(--space-4);
  flex-wrap: wrap;
}
.opt {
  padding: 4px 12px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--slate-dark);
  cursor: pointer;
  transition: all var(--duration-fast);
}
.opt:hover { border-color: var(--teal-400); color: var(--teal-700); }
.opt.active {
  background: var(--teal-100);
  border-color: var(--teal-500);
  color: var(--teal-700);
  font-weight: 600;
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}
.product-price {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--navy);
}
.product-was {
  font-size: var(--text-sm);
  color: var(--slate);
  text-decoration: line-through;
}

@media (max-width: 960px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════
   BUNDLES
   ══════════════════════════════ */
.bundles-section {
  padding: var(--space-24) var(--space-6);
  background: var(--white);
}

.bundles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: start;
}

.bundle-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}
.bundle-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.bundle-card.popular {
  border-color: var(--teal-500);
  border-width: 2px;
  box-shadow: var(--shadow-lg), 0 0 0 4px var(--teal-100);
}

/* Popular ribbon (shared with pricing cards on home) */
.popular-ribbon {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal-600);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 1;
}

.bundle-header {
  padding: var(--space-6);
  text-align: center;
}
.bundle-header h3 {
  font-size: var(--text-xl);
  margin-bottom: 4px;
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.bundle-header p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.bundle-header.starter {
  background: linear-gradient(135deg, var(--teal-600), var(--teal-700));
}
.bundle-header.family {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
}
.bundle-header.rescue {
  background: linear-gradient(135deg, var(--amber-dark), var(--coral));
}

.bundle-body { padding: var(--space-6); }

.bundle-includes {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}
.bundle-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-sm);
  color: var(--navy);
  font-weight: 500;
}
.bundle-includes li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--teal-500);
}

.bundle-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-4);
  border-top: 1px solid var(--gray-200);
}
.bundle-price {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--navy);
}
.bundle-was {
  display: block;
  font-size: var(--text-sm);
  color: var(--slate);
  text-decoration: line-through;
}

@media (max-width: 768px) {
  .bundles-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* ══════════════════════════════
   FAQ
   ══════════════════════════════ */
.faq-section {
  padding: var(--space-24) var(--space-6);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-item:first-child { border-top: 1px solid var(--gray-200); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) 0;
  text-align: left;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  gap: var(--space-4);
}
.faq-q:hover { color: var(--teal-600); }

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--slate-light);
  transition: transform var(--duration-normal) var(--ease-out);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}
.faq-item.open .faq-a {
  max-height: 500px;
}
.faq-a p {
  padding-bottom: var(--space-5);
  font-size: var(--text-sm);
  color: var(--slate-dark);
  line-height: var(--leading-loose);
}

/* ══════════════════════════════
   Reuse CTA from home.css
   (loaded via base or inline)
   ══════════════════════════════ */
.cta-section {
  padding: var(--space-24) var(--space-6);
}
.cta-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, var(--teal-700), var(--teal-900));
  color: var(--white);
  border-radius: var(--radius-2xl);
  padding: var(--space-16) var(--space-8);
  box-shadow: 0 20px 60px rgba(15, 118, 110, 0.25);
}
.cta-box h2 { color: var(--white); margin-bottom: var(--space-4); }
.cta-box em { color: var(--amber); }
.cta-box p {
  color: rgba(255,255,255,0.8);
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
}
.cta-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}
.cta-actions .btn-primary {
  background: var(--white);
  color: var(--teal-700);
  border-color: var(--white);
}
.cta-actions .btn-primary:hover {
  background: var(--teal-100);
  border-color: var(--teal-100);
  box-shadow: 0 8px 24px rgba(255,255,255,0.2);
}
.cta-actions .btn-dark {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.cta-actions .btn-dark:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.5);
}
