/* ============================================================
   BRANDS & SUPPLIERS PAGE
   ============================================================ */

.brands-why,
.brands-how {
  min-height: calc(100vh - 80px);
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brands-why {
  background: var(--bg);
}

.brands-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
}
@media (min-width: 640px) { .brands-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .brands-why-grid { grid-template-columns: repeat(4, 1fr); } }

.brands-how {
  background: var(--bg-soft);
}
.brands-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 880px) { .brands-steps { grid-template-columns: repeat(3, 1fr); } }

.brands-step {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 22px;
  padding: 32px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .3s ease, border-color .2s ease, box-shadow .3s ease;
}
.brands-step:hover {
  transform: translateY(-3px);
  border-color: var(--green);
  box-shadow: 0 18px 36px -22px rgba(15, 169, 104, 0.35);
}
.brands-step-num {
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.04em;
  color: var(--green);
  line-height: 1;
}
.brands-step h3 {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
.brands-step p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-3);
  margin: 0;
}

.contact-form select {
  width: 100%;
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b736d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(15, 169, 104, 0.12);
}

@media (max-width: 879px) {
  .brands-why, .brands-how { min-height: auto; padding: 60px 0; }
  .brands-step { padding: 24px 22px; }
}
