/* ============================================================
   12. START: REVIEWS
   Reviews tabs, tab buttons, animation and mobile styles
   ============================================================ */
/* ---------- REVIEWS SECTION ---------- */

.reviews-section {
  /* background: #f9f9f9; */
  padding: 40px 20px;
  border-radius: var(--radius-small);
  margin: 40px 0;
}

.reviews-section h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 30px;
  font-size: 1.8rem;
}

/* ---------- REVIEWS TABS / BUTTONS ---------- */

.reviews-tabs {
  max-width: 900px;
  margin: 0 auto;
}

.reviews-tab-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.reviews-tab-btn {
  background: var(--white);
  border: 2px solid var(--border);
  padding: 12px 20px;
  border-radius: var(--radius-small);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviews-tab-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.reviews-tab-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.tab-icon {
  font-size: 1.1rem;
  color: var(--yellow);
}

.reviews-tab-btn.active .tab-icon {
  color: var(--white);
}

/* ---------- REVIEWS TAB CONTENT ---------- */

/* .reviews-tab-content {
  background: var(--white);
  border-radius: var(--radius-small);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
} */

.reviews-tab-pane {
  display: none;
  animation: fadeIn 0.3s ease;
}

.reviews-tab-pane.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ---------- REVIEWS MOBILE <= 768px ---------- */

@media (max-width: 768px) {
  .reviews-tab-buttons {
    gap: 5px;
  }

  .reviews-tab-btn {
    padding: 10px 15px;
    font-size: 0.85rem;
  }

  .reviews-section h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

/* ============================================================
   END: REVIEWS
   ============================================================ */

}