/* ============ SENSIBO-STYLE PRODUCTS ============ */

.page-hero {
  padding: 150px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--surface-teal) 0%, var(--surface) 100%);
}

.page-hero-title {
  font-size: clamp(40px, 5.5vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  color: var(--dark);
}

.page-hero-sub {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* PRODUCT HERO SHOWCASE */
.product-hero {
  padding: 60px 0 80px;
}

.product-hero-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--surface-muted);
  border-radius: var(--radius-xl);
  padding: 60px;
  margin-bottom: 40px;
}

.product-hero-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-lg);
}

.product-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-hero-info .eyebrow {
  margin-bottom: 16px;
}

.product-hero-info h2 {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  line-height: 1.1;
}

.product-hero-info > p {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}

.check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--surface-teal);
  color: var(--primary-dark);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* PRODUCT GRID (clean cards) */
.products-showcase {
  padding: 80px 0;
  background: var(--surface);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.product-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
}

.product-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.product-item-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-muted);
}

.product-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-item:hover .product-item-img img { transform: scale(1.08); }

.product-item-body {
  padding: 26px;
}

.product-item-tag {
  display: inline-block;
  font-size: 11px;
  color: var(--primary-dark);
  background: var(--surface-teal);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.product-item-body h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--dark);
  font-weight: 700;
}

.product-item-body p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-item-link {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.product-item:hover .product-item-link { gap: 10px; }

/* SPECS SECTION */
.specs-section {
  padding: 100px 0;
  background: var(--surface-muted);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.spec-card {
  background: white;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.spec-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.spec-card span {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 700;
}

.spec-card strong {
  font-size: 18px;
  color: var(--dark);
  font-weight: 600;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .product-hero-card {
    grid-template-columns: 1fr;
    padding: 30px;
    gap: 30px;
  }
}
