/* ===== OTHERS PAGE ===== */
.others-intro {
  padding: 50px 0;
  text-align: center;
}

.others-intro p {
  font-size: 1.8rem;
  line-height: 1.8;
  color: var(--color-text);
  max-width: 800px;
  margin: 0 auto;
}

/* ===== TABS ===== */
.others-tabs-section {
  padding: 0 0 80px;
}

.others-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.others-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 30px;
  border: 1.5px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-text);
  font-size: 1.6rem;
  font-weight: 500;
  font-family: var(--font-family);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.others-tab:hover {
  border-color: var(--color-dark);
}

.others-tab.active {
  background: var(--color-dark);
  color: var(--color-white);
  border-color: var(--color-dark);
}

.others-tab svg {
  flex-shrink: 0;
}

/* ===== PRODUCT GRID ===== */
.others-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.others-card {
  background: var(--color-bg);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.others-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.others-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.others-card-body {
  padding: 18px 20px;
}

.others-card-body h4 {
  /* font-size: 0.95rem;
  font-weight: 700; */
  color: var(--color-dark);
  margin: 6px 0;
}

.others-card-body p {
  font-size: 2rem;
  color: var(--color-text-light);
  line-height: 1.4;
  margin-bottom: 2px;
}

.others-card-body .product-group {
  font-size: 1.6rem;
  color: var(--color-text);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
  .others-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .others-tab {
    padding: 10px 16px;
  }
}

@media (max-width: 480px) {
  .others-grid {
    grid-template-columns: 1fr;
  }

  .others-tab {
    font-size: 1.2rem;
  }
}