/* ===============================
   PAYMENT & DELIVERY — PREMIUM
=============================== */

.delivery {
  background: #fff;
  color: #111;
  padding: 40px 0 90px;
}

.delivery-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.delivery-header {
  max-width: 720px;
  margin-bottom: 48px;
}

.delivery-header h1 {
  font-size: 32px;
  margin-bottom: 14px;
}

.delivery-lead {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

.delivery-section {
  margin-bottom: 56px;
}

.delivery-section h2 {
  font-size: 22px;
  margin-bottom: 18px;
}

/* PAYMENT CARDS */
.delivery-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.delivery-card {
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  padding: 18px;
  background: #fff;
}

.delivery-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.delivery-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

/* TABLE */
.delivery-muted {
  background: #f7f7f7;
  padding: 40px 24px;
  border-radius: 14px;
}

.delivery-table-wrap {
  overflow-x: auto;
}

.delivery-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.delivery-table thead {
  background: #111;
  color: #fff;
}

.delivery-table th,
.delivery-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid #e6e6e6;
  font-size: 14px;
}

.delivery-table tbody tr:hover {
  background: #f5f5f5;
}

/* LISTS */
.delivery-list {
  padding-left: 18px;
}

.delivery-list li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #333;
}

.delivery-notes ul {
  padding-left: 18px;
}

.delivery-notes li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #444;
}

/* CTA */
.delivery-cta {
  background: #111;
  color: #fff;
  padding: 44px 24px;
  text-align: center;
  border-radius: 14px;
}

.delivery-cta h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.delivery-cta p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 16px;
}

.delivery-btn {
  display: inline-block;
  background: #fff;
  color: #111;
  padding: 12px 22px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 600px) {
  .delivery-header h1 {
    font-size: 26px;
  }

  .delivery-section h2 {
    font-size: 18px;
  }
}
