.contacts {
  padding: 56px 0 72px;
  background: #ffffff;
}

.contacts__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.contacts__title {
  margin: 0 0 24px;
  font-size: 32px;
  font-weight: 700;
  color: #231638;
}

/* верхние карточки */

.contacts__info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1.1fr)) auto;
  gap: 16px;
  align-items: stretch;
  margin-bottom: 20px;
}

.contacts-item {
  display: flex;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #f6f5fa;
}

.contacts-item__icon {
  width: 32px;
  height: 32px;
  border-radius: 5px;
  background: #DCCEF2;
  object-fit: contain;

  
}

/* здесь можешь добавить фоновые иконки через background-image */

.contacts-item__label {
  font-size: 12px;
  color: #8b8397;
  margin-bottom: 4px;
}

.contacts-item__value {
  font-size: 14px;
  color: #231638;
  text-decoration: none;
}

.contacts-item__value:hover {
  text-decoration: underline;
}

.contacts__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}

.contacts__btn {
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  background: #ffba1a;
  color: #3b2500;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.contacts__btn--ghost {
  background: #ffffff;
  border: 1px solid #ffba1a;
}

/* карта */

.contacts__map {
  margin-bottom: 24px;
  border-radius: 16px;
  overflow: hidden;
  background: #e5e5e7;
}

.contacts__map img,
.contacts__map iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

/* склады */

.contacts__subtitle {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 600;
  color: #231638;
}

.contacts__warehouses {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.warehouse-card {
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.warehouse-card__map img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.warehouse-card__address {
  padding: 10px 14px 12px;
  font-size: 13px;
  color: #4a257f;
}

/* адаптив */

@media (max-width: 1024px) {
  .contacts__info {
    grid-template-columns: 1fr 1fr;
  }

  .contacts__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .contacts__info {
    grid-template-columns: 1fr;
  }

  .contacts__warehouses {
    grid-template-columns: 1fr;
  }

  .contacts__map img,
  .contacts__map iframe {
    height: 280px;
  }
}
