/* =========================================
   PRODUCTS PAGE STYLES
   ========================================= */

.products-section {
  padding: 80px 0;
  background: var(--gray-50);
}

.products-intro {
  margin-bottom: 48px;
}

/* Tabs */
.tabs-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
  padding: 8px;
  background: var(--white);
  border-radius: 50px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.tab-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-secondary);
  background: transparent;
}

.tab-btn:hover {
  color: var(--navy);
  background: var(--gray-100);
}

.tab-btn.active {
  background: var(--gradient-orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}

/* Category Sections */
.categories-showcase {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.cat-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.cat-section:hover {
  box-shadow: var(--shadow-md);
}

.cat-section.hidden { display: none; }

.cat-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-100);
}

.cat-header-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.cat-header h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.cat-header p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Product Chips */
.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--text-primary);
  transition: var(--transition);
  cursor: default;
}

.product-chip:hover {
  background: rgba(232,101,10,0.06);
  border-color: var(--orange);
  color: var(--orange-dark);
  transform: translateY(-1px);
}

.product-chip span {
  font-size: 1rem;
}

/* CTA Simple */
.cta-simple {
  background: var(--white);
  padding: 64px 0;
  border-top: 1px solid var(--gray-100);
}

.cta-simple-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--gradient-hero);
  padding: 48px 48px;
  border-radius: var(--radius-lg);
}

.cta-simple-text h2 {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 10px;
}

.cta-simple-text p {
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .tabs-nav { border-radius: var(--radius-md); gap: 6px; }
  .tab-btn { padding: 8px 16px; font-size: 0.8rem; }
  .cat-section { padding: 24px; }
  .cta-simple-inner { flex-direction: column; text-align: center; padding: 40px 24px; }
}
