/* ============================================
   main.css — Storefront style (shadcn-like)
   ============================================ */

.category-header {
  background: linear-gradient(135deg, #334155, #0f172a);
  color: #f8fafc;
  border-bottom: 1px solid rgba(148, 163, 184, 0.4);
}

.product-row {
  transition: background 0.2s ease;
}

.product-row:hover {
  background: #f8fafc;
}

#site-icon {
  width: 2.95rem;
  height: 2.95rem;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.section-heading-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.section-heading-inline .ui-icon-title {
  margin-right: 0;
}

.delivery-option,
.payment-option {
  border: 1px solid var(--ui-border-strong);
  border-radius: 14px;
  padding: 14px 12px;
  text-align: center;
  cursor: pointer;
  position: relative;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.delivery-option:hover,
.payment-option:hover {
  border-color: #94a3b8;
  transform: translateY(-1px);
}

.delivery-option.active,
.payment-option.active {
  border-color: #334155;
  box-shadow: 0 0 0 3px rgba(51, 65, 85, 0.14);
  background: #f8fafc;
}

.delivery-option .check-mark,
.payment-option .check-mark {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 1.12rem;
  height: 1.12rem;
  border-radius: 0;
  background: transparent;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.delivery-option.active .check-mark,
.payment-option.active .check-mark {
  display: inline-flex;
}

.option-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 0.45rem;
  border-radius: 0;
  border: 0;
  padding: 0;
  background: transparent;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-select-btn {
  background: linear-gradient(135deg, #334155, #1e293b);
  color: #fff;
  padding: 0.58rem 1.1rem;
  border-radius: 12px;
  border: 0;
  font-weight: 700;
  cursor: pointer;
}

.store-select-btn:hover {
  filter: brightness(1.05);
}

.store-info-card {
  background: #f8fafc;
  border: 1px solid #d8e0eb;
  border-radius: 12px;
  padding: 0.78rem 0.95rem;
}

.spec-btn-add,
.spec-btn-stepper {
  border-color: #c6d2df !important;
}

@media (max-width: 639px) {
  .delivery-option,
  .payment-option {
    padding: 11px 7px;
    text-align: center;
  }

  #total-price {
    font-size: 0.95rem !important;
  }

  .quantity {
    width: 32px !important;
    font-size: 1rem !important;
  }
}
