/* ═══════════════════════════════════════════════════════════
   PRODUCTS & SERVICES PAGE
   ═══════════════════════════════════════════════════════════ */

/* ── Page hero ── */
.products-hero {
  background: var(--cream);
  padding: 140px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}
.products-hero .container {
  max-width: 800px;
}
.products-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 18px;
  line-height: 1.1;
}
.products-hero p {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.6;
  color: var(--text-body);
  font-style: italic;
  max-width: 640px;
  margin: 0 auto;
}

/* ── Section headers ── */
.products-section-label {
  text-align: center;
  padding: 70px 0 10px;
  background: var(--text-primary);
}
.products-section-label__tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  background: var(--text-primary);
  padding: 8px 24px;
  border-radius: 100px;
}

/* ── Parallax product banners ── */
.product-parallax {
  position: relative;
  height: 480px;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-parallax--clean::before { display: none; }
.product-parallax::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.45) 100%
  );
  z-index: 1;
}
.product-parallax__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}
.product-parallax__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
  margin-bottom: 8px;
  line-height: 1.1;
}
.product-parallax__sub {
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

/* ── Product card (cover + blurb + CTA) ── */
.product-card-section {
  padding: 70px 0;
}
.product-card-section--alt {
  background: var(--cream);
}

.product-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}
.product-card--reverse {
  grid-template-columns: 1fr 300px;
}
.product-card--reverse .product-card__cover {
  order: 2;
}
.product-card--reverse .product-card__body {
  order: 1;
}

.product-card__cover {
  position: relative;
}
.product-card__cover img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius, 8px);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.18),
    0 8px 20px rgba(0,0,0,0.12);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94),
              box-shadow 0.4s ease;
}
.product-card__cover:hover img {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.22),
    0 12px 30px rgba(0,0,0,0.15);
}

.product-card__body h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.15;
}
.product-card__body p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 28px;
}
.product-card__price {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  display: block;
}
.product-card__price strong {
  font-size: 22px;
  color: var(--text-primary);
  font-weight: 700;
}

/* ── Shiny CTA button ── */
.btn--shine {
  position: relative;
  display: inline-block;
  padding: 16px 40px;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  background: var(--gold);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(242,205,44,0.35);
}
.btn--shine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0) 30%,
    rgba(255,255,255,0.5) 50%,
    rgba(255,255,255,0) 70%,
    transparent 100%
  );
  transform: skewX(-25deg);
  transition: left 0.6s ease;
}
.btn--shine:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(242,205,44,0.5);
  color: var(--text-primary);
  text-decoration: none;
}
.btn--shine:hover::before {
  left: 130%;
}
/* Looping shimmer animation (subtle, every 3s) */
@keyframes shimmer {
  0%   { left: -80%; }
  30%  { left: 130%; }
  100% { left: 130%; }
}
.btn--shine::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0) 35%,
    rgba(255,255,255,0.3) 50%,
    rgba(255,255,255,0) 65%,
    transparent 100%
  );
  transform: skewX(-25deg);
  animation: shimmer 4s ease-in-out infinite;
  animation-delay: 1.5s;
  pointer-events: none;
}

/* Arrow on button */
.btn--shine .btn-arrow {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.btn--shine:hover .btn-arrow {
  transform: translateX(4px);
}

/* ── Compact product row (no parallax) ── */
.products-compact {
  padding: 40px 0 70px;
}
.products-compact .container {
  max-width: 960px;
}
.products-compact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.compact-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--radius, 8px);
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--border-light, #eee);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.compact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.compact-card__cover {
  flex-shrink: 0;
  width: 140px;
}
.compact-card__cover img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.compact-card__body h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.2;
}
.compact-card__body p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-body);
  margin-bottom: 18px;
}
.btn--shine-sm {
  position: relative;
  display: inline-block;
  padding: 10px 24px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  background: var(--gold);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 3px 10px rgba(242,205,44,0.3);
}
.btn--shine-sm::before {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0) 30%,
    rgba(255,255,255,0.5) 50%,
    rgba(255,255,255,0) 70%,
    transparent 100%
  );
  transform: skewX(-25deg);
  transition: left 0.5s ease;
}
.btn--shine-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(242,205,44,0.45);
  color: var(--text-primary);
  text-decoration: none;
}
.btn--shine-sm:hover::before {
  left: 130%;
}

/* ── Coming soon section ── */
.coming-soon {
  text-align: center;
  padding: 80px 24px;
  background: var(--cream);
  border-top: 1px solid var(--border-light, #eee);
}
.coming-soon h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.coming-soon p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-body);
  max-width: 560px;
  margin: 0 auto;
}
.coming-soon__badge {
  display: inline-block;
  margin-top: 28px;
  padding: 10px 28px;
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 100px;
  opacity: 0.7;
}

/* ── Rob AI featured card (wider) ── */
.rob-ai-featured {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: center;
}
.rob-ai-featured__visual {
  position: relative;
  text-align: center;
}
.rob-ai-featured__visual img {
  display: block;
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
  border-radius: var(--radius, 8px);
  box-shadow: none;
  background: transparent;
}
.rob-ai-featured__badge {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 16px;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  background: var(--gold);
  border-radius: 100px;
}
.rob-ai-featured__body h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.15;
}
.rob-ai-featured__body p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 24px;
}

/* ── Mobile responsive ── */
@media (max-width: 860px) {
  .product-parallax {
    height: 340px;
    background-attachment: scroll;
  }
  .product-card {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .product-card--reverse {
    grid-template-columns: 1fr;
  }
  .product-card--reverse .product-card__cover,
  .product-card--reverse .product-card__body {
    order: unset;
  }
  .product-card__cover {
    max-width: 260px;
    margin: 0 auto;
  }
  .products-compact-grid {
    grid-template-columns: 1fr;
  }
  .rob-ai-featured {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .rob-ai-featured__visual {
    max-width: 200px;
    margin: 0 auto;
  }
}
