/* ========================================================
   ECOM STARTER — Dynamic Checkout System Stylesheet
   ======================================================== */

.checkout-page-wrapper {
  background: var(--bg-alt);
  min-height: 100vh;
  padding: 6.5rem 0 4rem;
}

.checkout-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Checkout Header / Breadcrumbs --- */
.checkout-header {
  margin-bottom: 2rem;
}

.checkout-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.checkout-breadcrumbs a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.checkout-breadcrumbs a:hover {
  text-decoration: underline;
}

.checkout-title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.checkout-title-wrap h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.75px;
  margin: 0;
}

.checkout-live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #15803D;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
}

.live-dot-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16A34A;
  box-shadow: 0 0 8px #16A34A;
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.5; }
}

/* --- 2-Column Grid Layout --- */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

/* --- Cards Common --- */
.checkout-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.65rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
  position: relative;
  overflow: hidden;
}

.checkout-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.checkout-card-header h2,
.checkout-card-header h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.3px;
}

/* --- Payment Method Card --- */
.payment-method-selector {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.payment-method-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border: 2px solid var(--blue);
  background: rgba(37, 99, 235, 0.03);
  cursor: pointer;
  transition: var(--transition);
}

.payment-method-option:hover {
  background: rgba(37, 99, 235, 0.06);
}

.pm-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.pm-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
}

.pm-radio-inner {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
}

.pm-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.pm-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--dark);
  display: block;
}

.pm-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.pm-badge-active {
  background: #F0FDF4;
  color: #16A34A;
  border: 1px solid #BBF7D0;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

/* --- Payment Details Highlight Card --- */
.payment-info-box {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: #FFFFFF;
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1.5px solid rgba(59, 130, 246, 0.3);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
  position: relative;
  overflow: hidden;
}

.payment-info-box::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.35) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.payment-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.payment-detail-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

.payment-detail-value {
  font-size: 1rem;
  color: #FFFFFF;
  font-weight: 700;
  text-align: right;
}

.payment-account-number-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.payment-acc-num {
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.25rem;
  font-weight: 800;
  color: #FDE047;
  letter-spacing: 1px;
}

.btn-copy {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition);
}

.btn-copy:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.btn-copy.copied {
  background: #16A34A;
  border-color: #16A34A;
}

/* --- Payment Instructions Steps --- */
.payment-steps-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.payment-step-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--dark-2);
  line-height: 1.55;
}

.step-badge {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-blue);
  color: var(--blue);
  font-weight: 800;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

/* --- Policy & Guarantee Cards --- */
.policy-card-security {
  background: #F0FDF4;
  border: 1.5px solid #BBF7D0;
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  margin-bottom: 1.25rem;
}

.policy-card-security h4 {
  color: #15803D;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.policy-card-security p {
  color: #166534;
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

.policy-card-guarantee {
  background: #EFF6FF;
  border: 1.5px solid #BFDBFE;
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  margin-bottom: 1.25rem;
}

.policy-card-guarantee h4 {
  color: #1D4ED8;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.policy-card-guarantee p {
  color: #1E40AF;
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
  white-space: pre-line;
}

.policy-service-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #1D4ED8;
  background: rgba(37, 99, 235, 0.1);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  margin-top: 0.5rem;
}

/* --- Trust Indicators --- */
.trust-indicators-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.trust-indicator-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark-2);
}

.trust-indicator-item svg {
  color: #16A34A;
  flex-shrink: 0;
}

/* --- RIGHT SIDE: ORDER SUMMARY --- */
.order-summary-card {
  position: sticky;
  top: 5.5rem;
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.65rem;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.05);
}

.summary-service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.summary-service-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--dark);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
}

.summary-service-badge img {
  height: 18px;
  width: auto;
  object-fit: contain;
}

.btn-change-package {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  text-decoration: underline;
  transition: var(--transition);
}

.btn-change-package:hover {
  background: var(--bg-blue);
}

.summary-package-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.4px;
  margin-bottom: 0.35rem;
}

.summary-tier-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--blue);
  background: var(--bg-blue);
  border: 1px solid rgba(37, 99, 235, 0.2);
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.summary-features-list {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.summary-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--dark-2);
  line-height: 1.45;
}

.summary-feature-item svg {
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- Pricing Breakdown Box --- */
.summary-pricing-table {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  font-size: 0.9rem;
}

.price-row.original {
  color: var(--text-muted);
}

.price-row.original .amount {
  text-decoration: line-through;
  font-weight: 600;
}

.price-row.discount {
  color: #16A34A;
  font-weight: 700;
}

.discount-badge-pill {
  background: #DCFCE7;
  color: #15803D;
  border: 1px solid #86EFAC;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.15rem 0.55rem;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.price-divider {
  height: 1px;
  background: var(--border);
  margin: 0.65rem 0;
}

.price-row.total {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--dark);
  padding-top: 0.25rem;
}

.price-row.total .amount-highlight {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -0.5px;
}

.hybrid-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  line-height: 1.4;
  font-style: italic;
}

/* --- CTA Buttons in Checkout --- */
.btn-pay-now-primary {
  width: 100%;
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  color: #FFFFFF;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-pay-now-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(37, 99, 235, 0.45);
}

.btn-pay-now-primary:active {
  transform: translateY(0);
}

.btn-pay-badge {
  background: #FDE047;
  color: #713F12;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
  letter-spacing: 0.3px;
}

.savings-highlight-bar {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: #15803D;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.btn-whatsapp-secondary {
  width: 100%;
  background: #FFFFFF;
  color: var(--dark-2);
  border: 1.5px solid var(--border);
  padding: 0.85rem 1.25rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
  text-decoration: none;
}

.btn-whatsapp-secondary:hover {
  background: #F0FDF4;
  border-color: #22C55E;
  color: #15803D;
  transform: translateY(-1px);
}

.secondary-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* --- MODALS (Pay Now & Change Package) --- */
.checkout-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.checkout-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.checkout-modal-dialog {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 2rem;
  position: relative;
}

.checkout-modal-overlay.active .checkout-modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--dark-3);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}

.modal-close-btn:hover {
  background: #FEE2E2;
  color: #DC2626;
  border-color: #FCA5A5;
}

.modal-header {
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}

.modal-header h3 {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.4px;
  margin-bottom: 0.35rem;
}

.modal-header p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.modal-summary-pill {
  background: var(--bg-blue);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-summary-pill strong {
  color: var(--blue);
  font-size: 0.9rem;
}

.modal-summary-pill .amount {
  color: var(--dark);
  font-weight: 800;
  font-size: 1.1rem;
}

/* Form Styles inside Modal */
.form-field-group {
  margin-bottom: 1.15rem;
}

.form-field-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.form-field-group label .req {
  color: #DC2626;
}

.form-field-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--dark);
  transition: var(--transition);
  background: var(--bg);
  font-family: inherit;
}

.form-field-input:focus {
  outline: none;
  border-color: var(--blue);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

/* Upload Dropzone */
.screenshot-dropzone {
  border: 2px dashed rgba(37, 99, 235, 0.35);
  background: var(--bg-blue);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.screenshot-dropzone:hover,
.screenshot-dropzone.dragover {
  border-color: var(--blue);
  background: rgba(37, 99, 235, 0.08);
}

.dropzone-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.dropzone-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.dropzone-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hidden-file-input {
  display: none;
}

/* Preview Box */
.screenshot-preview-card {
  display: none;
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem;
  margin-top: 0.75rem;
  align-items: center;
  gap: 0.85rem;
}

.screenshot-preview-card.has-image {
  display: flex;
}

.screenshot-thumb-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.screenshot-info {
  flex: 1;
  overflow: hidden;
}

.screenshot-filename {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.screenshot-filesize {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.screenshot-actions {
  display: flex;
  gap: 0.4rem;
}

.btn-remove-image {
  background: #FEE2E2;
  color: #DC2626;
  border: 1px solid #FCA5A5;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-remove-image:hover {
  background: #DC2626;
  color: #FFFFFF;
}

/* Alert Notification */
.checkout-alert-error {
  display: none;
  background: #FEF2F2;
  border: 1.5px solid #FCA5A5;
  color: #991B1B;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  margin-bottom: 1.15rem;
  line-height: 1.45;
}

.checkout-alert-error.active {
  display: block;
}

/* Success View in Modal */
.success-modal-view {
  text-align: center;
  padding: 1rem 0;
}

.success-icon-badge {
  width: 64px;
  height: 64px;
  background: #DCFCE7;
  color: #16A34A;
  border-radius: 50%;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  border: 2px solid #86EFAC;
}

.order-ref-box {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  margin: 1.25rem 0;
  text-align: left;
}

.order-ref-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.order-ref-id {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--dark);
  font-family: 'Courier New', Courier, monospace;
}

.whatsapp-instruction-notice {
  background: #FEF3C7;
  border: 1.5px solid #FDE68A;
  color: #92400E;
  padding: 0.9rem 1.15rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 1.25rem 0;
  text-align: left;
}

/* Change Package Modal Grid */
.package-selection-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-height: 55vh;
  overflow-y: auto;
  padding-right: 0.35rem;
}

.pkg-select-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.pkg-select-card:hover {
  border-color: var(--blue);
  background: var(--bg-blue);
  transform: translateX(4px);
}

.pkg-select-card.active {
  border-color: var(--blue);
  background: rgba(37, 99, 235, 0.06);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

.pkg-select-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pkg-select-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.pkg-select-name {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--dark);
  display: block;
}

.pkg-select-service {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.pkg-select-price {
  text-align: right;
}

.pkg-select-amount {
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--blue);
  display: block;
}

.pkg-select-discount {
  font-size: 0.72rem;
  color: #16A34A;
  font-weight: 700;
}

/* --- Toast Notification --- */
.checkout-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #0F172A;
  color: #FFFFFF;
  padding: 0.75rem 1.35rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  z-index: 10000;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  pointer-events: none;
}

.checkout-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 991px) {
  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .order-summary-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .checkout-page-wrapper {
    padding: 5rem 0 3rem;
  }

  .checkout-container {
    padding: 0 1rem;
  }

  .checkout-card,
  .order-summary-card {
    padding: 1.35rem 1.15rem;
  }

  .checkout-title-wrap h1 {
    font-size: 1.6rem;
  }

  .payment-acc-num {
    font-size: 1.05rem;
  }

  .trust-indicators-grid {
    grid-template-columns: 1fr;
  }

  .checkout-modal-dialog {
    padding: 1.5rem 1.2rem;
  }
}
