/* ===== Pump categories & price table ===== */
.pump-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
}

.pump-category-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  min-width: 120px;
  background: #fff;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}

.pump-category-btn:hover {
  border-color: var(--blue-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.pump-category-btn.active {
  border-color: var(--blue-500);
  background: var(--blue-50);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, .15);
}

.pump-category-btn img {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.pump-category-btn .category-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  font-size: 2rem;
  color: var(--blue-600);
  background: var(--blue-50);
  border-radius: 12px;
}

.pump-category-btn span {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-800);
  text-align: center;
  line-height: 1.3;
}

.price-table-wrap {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.price-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  margin-bottom: 0;
}

.price-table thead {
  background: var(--gray-50);
  border-bottom: 2px solid var(--gray-200);
}

.price-table th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-600);
  white-space: nowrap;
}

.price-table th:first-child {
  width: 48px;
  text-align: center;
}

.price-table th:last-child {
  text-align: right;
}

.price-row {
  cursor: pointer;
  transition: background var(--transition);
  border-bottom: 1px solid var(--gray-100);
}

.price-row:last-child {
  border-bottom: none;
}

.price-row:hover {
  background: var(--blue-50);
}

.price-row.selected {
  background: var(--blue-50);
}

.price-row td {
  padding: 14px 16px;
  color: var(--gray-800);
  vertical-align: middle;
  border: none;
}

.price-row td:first-child {
  text-align: center;
}

.price-row td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--blue-600);
  white-space: nowrap;
}

.price-row-name {
  font-weight: 600;
  color: var(--gray-900);
}

.price-row-spec {
  color: var(--gray-600);
  font-size: .88rem;
}

.row-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid var(--gray-300);
  background: #fff;
  font-size: 11px;
  color: transparent;
  transition: all var(--transition);
}

.price-row.selected .row-check {
  background: var(--blue-500);
  border-color: var(--blue-500);
  color: #fff;
}

@media (max-width: 767px) {
  .pump-category-btn {
    min-width: 100px;
    padding: 10px 12px;
  }

  .pump-category-btn img {
    width: 56px;
    height: 56px;
  }

  .pump-category-btn .category-btn-icon {
    width: 56px;
    height: 56px;
    font-size: 1.6rem;
  }

  .price-table th,
  .price-table td {
    padding: 10px 12px;
    font-size: .82rem;
  }
}