/* Wholesale / B2B section — builds on pages/style.css */
.wholesale-intro {
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.9;
  color: rgba(240, 253, 244, 0.92);
  font-size: 1.02rem;
}
.wholesale-intro strong { color: var(--accent-light); }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 8px;
}
.cat-card {
  display: flex;
  flex-direction: column;
  background: rgba(10, 51, 32, 0.45);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.cat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(52, 211, 153, 0.45);
  box-shadow: 0 14px 40px -10px rgba(16, 185, 129, 0.25);
}
.cat-card-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-bottom: 1px solid var(--card-border);
}
.cat-card-body {
  padding: 16px 18px 20px;
  flex: 1;
}
.cat-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.cat-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.2);
  padding: 4px;
  object-fit: contain;
}
.cat-card h2 {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0;
  padding: 0;
  border: none;
  color: var(--text-muted);
}
.cat-card p {
  font-size: 0.93rem;
  line-height: 1.75;
  color: rgba(240, 253, 244, 0.85);
  margin: 0;
}

.process-steps {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}
.process-steps li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(52, 211, 153, 0.15);
  color: rgba(240, 253, 244, 0.9);
  line-height: 1.8;
}
.process-steps li:last-child { border-bottom: none; }
.process-num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, #059669 100%);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 14px;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  border: 1px solid var(--card-border);
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}
.btn-cta--primary {
  background: linear-gradient(135deg, var(--accent) 0%, #059669 100%);
  color: #fff;
  border-color: transparent;
}
.btn-cta--wa {
  background: rgba(37, 211, 102, 0.2);
  color: #bbf7d0;
  border-color: rgba(37, 211, 102, 0.4);
}
.btn-cta--phone {
  background: rgba(52, 211, 153, 0.12);
  color: var(--text-muted);
}
.btn-cta--mail {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-light);
}
.btn-cta img {
  width: 22px;
  height: 22px;
  filter: brightness(1.15);
}

.page-hero-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 22px;
}
.page-hero-row .hero-photo {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  object-fit: cover;
  min-height: 180px;
  max-height: 220px;
}
.page-hero-text .page-lead {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(240, 253, 244, 0.88);
  margin-top: 12px;
}
.bullet-list {
  margin: 10px 0 0;
  padding-right: 22px;
  padding-left: 0;
}
body[dir="ltr"] .bullet-list {
  padding-right: 0;
  padding-left: 22px;
}
.bullet-list li {
  margin-bottom: 8px;
  line-height: 1.75;
  color: rgba(240, 253, 244, 0.88);
}

@media (max-width: 680px) {
  .page-hero-row {
    grid-template-columns: 1fr;
  }
  .page-hero-row .hero-photo {
    max-height: 200px;
    order: -1;
  }
}
