/*--------------------------------------------------------------
# Product pages — shared layout (POS, School, Feedback, ChatBot)
--------------------------------------------------------------*/
.page-title {
  background-color: var(--brand-bg, #f4fafd);
  border-bottom: 1px solid var(--brand-border, rgba(0, 0, 0, 0.06));
}

.page-title h1 {
  color: var(--brand-heading, var(--heading-color));
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.product-hero-actions .btn-hero-primary,
.product-hero-actions .btn-hero-outline {
  padding: 0.65rem 1.25rem;
  font-size: 0.95rem;
}

.product-hero-actions .btn-outline-primary,
.product-hero-actions .btn-outline-secondary,
.product-hero-actions .btn-outline-info {
  border-radius: var(--radius-md, 10px);
}

/* Pricing — first year breakdown */
.pricing-first-year-box {
  background: var(--brand-bg, #f4fafd);
  border: 1px solid var(--brand-border, rgba(0, 0, 0, 0.08));
  border-radius: var(--radius-md, 12px);
  padding: 1rem 1.25rem;
  margin: 1rem 0;
  text-align: left;
}

.pricing-first-year-box .line-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  font-size: 0.95rem;
}

.pricing-first-year-box .line-item.total {
  border-top: 1px solid var(--brand-border, rgba(0, 0, 0, 0.1));
  margin-top: 0.5rem;
  padding-top: 0.65rem;
  font-weight: 600;
}

.pricing-renewal-note {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-top: 0.5rem;
}

.pricing .savings-highlight {
  display: none;
}

.product-cta-band {
  background: linear-gradient(135deg, var(--accent-color, #4a47cf) 0%, #3f3ab9 100%);
  color: #fff;
  padding: 3rem 0;
}

.product-cta-band .product-cta-title {
  color: #fff;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.product-cta-band .product-cta-text {
  color: rgba(255, 255, 255, 0.9);
  max-width: 36rem;
  margin: 0 auto 1.25rem;
}

.product-cta-band .btn-hero-primary {
  background: #fff;
  color: var(--accent-color, #4a47cf);
  border-color: #fff;
}

.product-cta-band .btn-hero-primary:hover {
  background: var(--brand-bg, #f4fafd);
  color: var(--accent-color, #4a47cf);
}

.product-cta-band .btn-hero-outline {
  border-color: rgba(255, 255, 255, 0.85);
  color: #fff;
}

.product-cta-band .btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* Google reviews */
.google-reviews .google-stars {
  color: #f4b400;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.google-reviews .google-rating-score {
  font-size: 1.5rem;
  color: var(--brand-heading, var(--heading-color));
}

.review-card {
  background: var(--surface-color, #fff);
  border: 1px solid var(--brand-border, rgba(0, 0, 0, 0.08));
  border-radius: var(--radius-md, 12px);
  padding: 1.25rem 1.5rem;
  height: 100%;
  box-shadow: var(--shadow-sm, 0 2px 8px rgba(0, 0, 0, 0.04));
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.review-card:hover {
  box-shadow: var(--shadow-md, 0 8px 24px rgba(0, 0, 0, 0.08));
  transform: translateY(-2px);
}

.review-card-stars {
  color: #f4b400;
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.review-card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--default-color);
}

.review-card-author {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin: 0;
}

/* Software hub */
#software.services {
  background-color: var(--brand-bg, #f4fafd);
}
