/* =========================================
   DELIVERY & PAYMENT PAGE (delivery.html)
   page-header/breadcrumbs/page-title are intentionally redefined here
   rather than shared, matching the existing per-page convention (see
   css/account.css, css/product.css, css/blog-page.css, css/about.css).
   main.section-padding (not plain .section-padding) is deliberate — see
   the identical note in css/blog-page.css/css/about.css: it out-specifies
   css/responsive.css's mobile ".section-padding { padding-top: 50px }" so
   this page stays tight under the header on mobile too, without touching
   the plain-class usages on index.html that should keep that 50px value.
   ========================================= */
main.section-padding { padding-top: 10px; padding-bottom: 60px; }

.page-header { padding: 10px 0 20px; border-bottom: 1px solid var(--border-light); margin-bottom: 40px; }
.breadcrumbs {
    display: flex; align-items: center; gap: 8px; font-size: 13px; color: #888;
    margin-bottom: 15px; flex-wrap: wrap;
}
.breadcrumbs a { color: #888; transition: 0.3s; }
.breadcrumbs a:hover { color: var(--accent-gold); }
.breadcrumbs i { font-size: 9px; color: #555; }
.breadcrumbs span { color: #ccc; }
.page-title { font-size: clamp(22px, 1.2vw + 17.7px, 32px); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: #fff; }
.page-subtitle { color: #999; font-size: 15px; margin-top: 15px; line-height: 1.6; }

.promo-banner {
    background: linear-gradient(135deg, #1a1510 0%, #0a0a0a 100%);
    border: 1px solid rgba(194, 160, 93, 0.3); border-radius: 12px; padding: 40px;
    display: flex; align-items: center; justify-content: space-between; margin-bottom: 80px; gap: 20px;
}
.promo-text h3 { font-size: 22px; color: #fff; margin-bottom: 10px; text-transform: uppercase; font-weight: 600; }
.promo-text p { color: #aaa; font-size: 16px; }
.promo-value { font-size: 44px; font-weight: 700; color: var(--accent-gold); white-space: nowrap; }

.info-section { margin-bottom: 80px; }
.section-heading {
    font-size: 26px; font-weight: 600; color: #fff; text-transform: uppercase;
    margin-bottom: 40px; display: flex; align-items: center; gap: 20px;
}
.section-heading::after { content: ''; flex: 1; height: 1px; background: var(--border-light); }

.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.info-card {
    background: var(--bg-card, #121212); border: 1px solid var(--border-light); border-radius: 12px;
    padding: 40px; transition: 0.3s; display: flex; flex-direction: column; position: relative; overflow: hidden;
}
.info-card:hover { border-color: var(--accent-gold); transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.5); }
.info-icon { font-size: 36px; color: var(--accent-gold); margin-bottom: 25px; }
.info-title { font-size: 19px; font-weight: 500; color: #fff; margin-bottom: 15px; text-transform: uppercase; }
.info-desc { font-size: 15px; color: #999; line-height: 1.7; flex: 1; }
.info-note { margin-top: 25px; padding-top: 20px; border-top: 1px solid #222; font-size: 13px; color: var(--accent-gold); font-weight: 500; }

.terms-block {
    background: #0a0a0a; border-left: 3px solid var(--accent-gold); padding: 30px 40px;
    border-radius: 0 12px 12px 0; margin-bottom: 20px;
}
.terms-block h4 { color: #fff; font-size: 17px; margin-bottom: 15px; text-transform: uppercase; font-weight: 500; }
.terms-block p { color: #888; font-size: 15px; line-height: 1.6; }

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

@media (max-width: 600px) {
    .section-heading { font-size: 21px; }
    .info-grid { grid-template-columns: 1fr; }
    .promo-banner { flex-direction: column; text-align: center; gap: 20px; padding: 30px; }
    .info-card { padding: 25px; }
    .terms-block { padding: 25px; }
}
