/* Typy sprzedawców — kompaktowo wewnątrz telefonu */

.seller-types-mini {
  width: 100%;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(20, 20, 28, 0.07);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(15, 18, 35, 0.05);
  box-sizing: border-box;
}

.seller-types-mini-title {
  margin-bottom: 11px;
  color: #777381;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.seller-types-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.seller-types-mini-item {
  min-width: 0;
  padding: 10px 6px;
  border-radius: 13px;
  background: #f5f2fb;
  text-align: center;
}

.seller-types-mini-icon {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  margin: 0 auto 7px;
  border-radius: 9px;
  background: #e9e2ff;
  color: #6d4bf2;
  font-size: 11px;
  font-weight: 900;
}

.seller-types-mini-item strong {
  display: block;
  color: #222127;
  font-size: 10px;
  line-height: 1.15;
  font-weight: 800;
}

.seller-types-mini-item span {
  display: block;
  margin-top: 4px;
  color: #85818e;
  font-size: 8px;
  line-height: 1.25;
}

.seller-types-mini-item.company {
  background: #edf8f4;
}

.seller-types-mini-item.company .seller-types-mini-icon {
  background: #d9f1e8;
  color: #248266;
}

@media (max-width: 430px) {
  .seller-types-mini {
    margin-top: 11px;
    padding: 11px;
    border-radius: 15px;
  }

  .seller-types-mini-grid {
    gap: 5px;
  }

  .seller-types-mini-item {
    padding: 8px 4px;
  }

  .seller-types-mini-icon {
    width: 22px;
    height: 22px;
    margin-bottom: 5px;
  }

  .seller-types-mini-item strong {
    font-size: 9px;
  }

  .seller-types-mini-item span {
    font-size: 7px;
  }
}
