/* Product detail pages: align with site hero / service patterns */

.product-hero .hero-cta .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.product-hero .hero-cta .btn-outline-light:hover {
  background: #fff;
  color: #0f172a;
}

.product-panel {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  color: #e2e8f0;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.28);
}

.product-panel pre,
.product-panel code {
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.85rem;
  line-height: 1.65;
  color: #cbd5e1;
  white-space: pre-wrap;
  word-break: break-word;
}

.product-panel-label {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 1rem;
}

.product-visual {
  min-height: 260px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 102, 0, 0.12), rgba(15, 23, 42, 0.04));
  border: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 2rem;
}

.product-visual-icon {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  background: rgba(255, 102, 0, 0.12);
  color: var(--primary-color, #ff6600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
}

.product-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.product-chip {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  color: #334155;
  font-weight: 600;
}

.product-feature {
  height: 100%;
  padding: 1.5rem 0 0.5rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.product-feature i {
  color: var(--primary-color, #ff6600);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.product-feature h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.product-feature p {
  color: #64748b;
  margin: 0;
  font-size: 0.95rem;
}

.product-stack-item {
  text-align: center;
  padding: 1.25rem 1rem;
}

.product-stack-item .label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary-color, #ff6600);
  margin-bottom: 0.75rem;
}

.product-price-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  max-width: 720px;
  margin: 0 auto;
}

.product-price {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: left;
}

.product-price.is-featured {
  border-color: rgba(255, 102, 0, 0.55);
  box-shadow: 0 12px 32px rgba(255, 102, 0, 0.1);
}

.product-price .plan {
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.product-price .amount {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-color, #ff6600);
  line-height: 1.1;
}

.product-price .amount span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748b;
}

.product-price ul {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.5rem;
}

.product-price li {
  padding: 0.35rem 0;
  color: #475569;
  font-size: 0.95rem;
}

.product-price li i {
  color: var(--primary-color, #ff6600);
  margin-right: 0.5rem;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.product-meta span i {
  margin-right: 0.35rem;
  opacity: 0.85;
}

@media (max-width: 991.98px) {
  .product-panel,
  .product-visual {
    margin-top: 1.5rem;
  }
}

/* Products hub */
.product-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  border-color: rgba(255, 102, 0, 0.45);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.product-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 102, 0, 0.1);
  color: var(--primary-color, #ff6600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.product-title {
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.product-desc {
  color: #64748b;
  font-size: 0.95rem;
  flex: 1;
  margin-bottom: 1rem;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
}

.product-features .badge {
  font-weight: 600;
  border: 1px solid rgba(15, 23, 42, 0.08);
}
