/**
 * Checkout Modal Styles
 * Modal-based checkout interface with 3 steps
 */
body.modal-open {
  overflow: hidden;
}

.cw-checkout-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cw-checkout-modal .modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}
.cw-checkout-modal .modal-content {
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideUp 0.3s ease-out;
}
.cw-checkout-modal .modal-header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid #e0e0e0;
}
.cw-checkout-modal .modal-header h2 {
  margin: 0 0 16px 0;
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
}
.cw-checkout-modal .modal-header .step-indicator {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cw-checkout-modal .modal-header .step-indicator #step-text {
  font-size: 14px;
  color: #666666;
  font-weight: 500;
}
.cw-checkout-modal .modal-header .step-indicator .progress-bar {
  height: 4px;
  background: #f0f0f0;
  border-radius: 2px;
  overflow: hidden;
}
.cw-checkout-modal .modal-header .step-indicator .progress-bar .progress-fill {
  height: 100%;
  background: #1a1a1a;
  transition: width 0.3s ease;
}
.cw-checkout-modal .modal-header .close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: #666666;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0;
}
.cw-checkout-modal .modal-header .close-button:hover {
  color: #1a1a1a;
}
.cw-checkout-modal .modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}
.cw-checkout-modal .modal-body::-webkit-scrollbar {
  width: 8px;
}
.cw-checkout-modal .modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.cw-checkout-modal .modal-body::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}
.cw-checkout-modal .modal-body::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}
.cw-checkout-modal .modal-footer {
  padding: 16px 24px;
  border-top: 1px solid #e0e0e0;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}
.cw-checkout-modal .modal-footer .btn-continue {
  flex: 1;
}

.step-cart-review .cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.step-cart-review .cart-count {
  margin: 0 0 4px 0;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #666666;
}
.step-cart-review .cart-items-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.step-cart-review .cart-item {
  padding: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.step-cart-review .cart-item .cart-item-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.step-cart-review .cart-item .item-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 8px;
  color: #1a1a1a;
  overflow: hidden;
}
.step-cart-review .cart-item .item-icon svg {
  width: 24px;
  height: 24px;
}
.step-cart-review .cart-item .item-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.step-cart-review .cart-item .item-details {
  flex: 1;
  min-width: 0;
}
.step-cart-review .cart-item .item-details .item-name {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  color: #1a1a1a;
}
.step-cart-review .cart-item .item-details .item-slot-datetime {
  margin: 2px 0 0 0;
  font-size: 11px;
  color: #666666;
  font-style: italic;
}
.step-cart-review .cart-item .item-details .item-price {
  margin: 2px 0 0 0;
  font-size: 12px;
  color: #666666;
}
.step-cart-review .cart-item .item-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  background: color-mix(in srgb, currentColor 8%, transparent);
}
.step-cart-review .cart-item .qty-remove {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: #666666;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.step-cart-review .cart-item .qty-remove svg {
  width: 16px;
  height: 16px;
}
.step-cart-review .cart-item .qty-remove:hover {
  background: rgba(244, 67, 54, 0.08);
  color: #f44336;
}
.step-cart-review .cart-item .qty-remove:active {
  background: rgba(244, 67, 54, 0.14);
}
.step-cart-review .cart-item .qty-remove:focus-visible {
  outline: 2px solid rgba(244, 67, 54, 0.4);
  outline-offset: 2px;
}
.step-cart-review .cart-item .cart-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.step-cart-review .cart-item .item-quantity {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: -moz-fit-content;
  width: fit-content;
  gap: 0;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}
.step-cart-review .cart-item .item-quantity button {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: inherit;
  border-radius: 0;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-cart-review .cart-item .item-quantity button:hover {
  background: color-mix(in srgb, currentColor 8%, transparent);
}
.step-cart-review .cart-item .item-quantity .qty-value {
  width: 40px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
}
.step-cart-review .cart-item .item-total {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: right;
}
.step-cart-review .cart-totals {
  padding: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  background: rgba(245, 245, 245, 0.5);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.step-cart-review .cart-totals .totals-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: #666666;
  text-align: right;
}
.step-cart-review .cart-totals .totals-row.totals-total {
  padding-top: 4px;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
}
.step-cart-review .cart-totals .totals-row.vat-breakdown-row {
  padding-left: 12px;
  font-size: 13px;
  font-weight: 400;
  color: #888888;
}
.step-cart-review .cart-totals .totals-divider {
  margin: 0;
  border: none;
  border-top: 1px solid #e0e0e0;
}
.step-cart-review .empty-cart {
  text-align: center;
  padding: 60px 20px;
  color: #666666;
}
.step-cart-review .empty-cart p {
  font-size: 16px;
  margin: 0;
}

.step-details-form .details-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step-details-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.step-details-form .form-field label {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
}
.step-details-form .form-field label .required {
  color: #f44336;
}
.step-details-form .form-field .form-control.cw-field-invalid {
  border-color: #f44336;
  box-shadow: 0 0 0 2px rgba(244, 67, 54, 0.15);
}
.step-details-form .form-field .cw-field-error {
  font-size: 13px;
  color: #f44336;
}
.step-details-form .form-field textarea.form-control {
  min-height: 72px;
  resize: vertical;
}
.step-details-form .form-field .form-label-optional {
  margin-left: 6px;
  font-size: 12px;
  font-weight: 400;
  color: #999;
}
.step-details-form .form-divider {
  margin: 0;
  border: none;
  border-top: 1px solid #e0e0e0;
}
.step-details-form .form-section-label {
  margin: 0 0 12px 0;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
}
.step-details-form .form-row-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.step-details-form .form-row-group--street {
  grid-template-columns: 3fr 1fr;
}
.step-details-form .shipping-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-summary {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step-summary .order-summary-section,
.step-summary .customer-info-section {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step-summary .summary-section-label {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
}
.step-summary .summary-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step-summary .summary-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.step-summary .summary-group + .summary-group,
.step-summary .summary-items + .summary-coupon-discount {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e0e0e0;
}
.step-summary .summary-item,
.step-summary .summary-item-name,
.step-summary .summary-item-vat,
.step-summary .summary-item-price,
.step-summary .summary-subtotal,
.step-summary .summary-vat-section,
.step-summary .summary-vat-item,
.step-summary .summary-fixed-tax,
.step-summary .summary-shipping,
.step-summary .summary-coupon-discount,
.step-summary .summary-total {
  font-size: 14px;
}
.step-summary .summary-item > span:last-child,
.step-summary .summary-item-price,
.step-summary .summary-subtotal > span:last-child,
.step-summary .summary-vat-item > span:last-child,
.step-summary .summary-fixed-tax > span:last-child,
.step-summary .summary-shipping > span:last-child,
.step-summary .summary-coupon-discount > span:last-child,
.step-summary .summary-total > span:last-child {
  flex: 0 0 auto;
  margin-left: 12px;
  text-align: right;
  white-space: nowrap;
}
.step-summary .summary-item-details,
.step-summary .summary-subtotal > span:first-child,
.step-summary .summary-vat-item > span:first-child,
.step-summary .summary-fixed-tax > span:first-child,
.step-summary .summary-shipping > span:first-child,
.step-summary .summary-coupon-discount > span:first-child,
.step-summary .summary-total > span:first-child {
  min-width: 0;
}
.step-summary .summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #1a1a1a;
}
.step-summary .summary-item .summary-item-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.step-summary .summary-item .summary-item-details .summary-item-name {
  font-weight: 500;
  color: #1a1a1a;
}
.step-summary .summary-item .summary-item-details .summary-item-vat {
  color: #666666;
  font-weight: 400;
}
.step-summary .summary-item .summary-item-price {
  font-weight: 500;
}
.step-summary .summary-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: #1a1a1a;
}
.step-summary .summary-vat-section {
  font-weight: 400;
  color: #666666;
}
.step-summary .summary-vat-item,
.step-summary .summary-fixed-tax {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #666666;
}
.step-summary .summary-shipping {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  color: #666666;
}
.step-summary .summary-divider {
  margin: 12px 0;
  border: none;
  border-top: 1px solid #e0e0e0;
}
.step-summary .summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: #1a1a1a;
}
.step-summary .summary-total .summary-total-amount {
  font-weight: 700;
}
.step-summary .summary-section-divider {
  margin: 0;
  border: none;
  border-top: 1px solid #e0e0e0;
}
.step-summary .customer-details .customer-info,
.step-summary .customer-details .customer-address {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
  font-size: 14px;
  color: #666666;
  line-height: 1.5;
}
.step-summary .customer-details .customer-address {
  margin-top: 12px;
}
.step-summary .customer-details .customer-additional-details {
  margin: 8px 0 0 0;
  padding-top: 8px;
  border-top: 1px dashed #e0e0e0;
  font-size: 13px;
  color: #666666;
  line-height: 1.5;
}
.step-summary .customer-details .customer-additional-details strong {
  color: #1a1a1a;
  font-weight: 600;
}
.step-summary .agb-checkbox-container {
  padding: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: rgba(245, 245, 245, 0.3);
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.step-summary .agb-checkbox-container .agb-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  margin: 0;
}
.step-summary .agb-checkbox-container .agb-checkbox-label .agb-checkbox {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #1a1a1a;
  transition: outline 0.3s ease;
}
.step-summary .agb-checkbox-container .agb-checkbox-label .agb-text {
  flex: 1;
  font-size: 13px;
  line-height: 1.5;
  color: #1a1a1a;
  transition: color 0.3s ease;
}
.step-summary .agb-checkbox-container .agb-checkbox-label:hover .agb-text {
  color: rgb(20.8, 20.8, 20.8);
}
.step-summary .agb-checkbox-container.invalid {
  border-color: #f44336;
  background: rgba(244, 67, 54, 0.05);
}
.step-summary .agb-checkbox-container.invalid .agb-checkbox {
  outline: 2px solid #f44336;
  outline-offset: 2px;
}
.step-summary .agb-checkbox-container.invalid .agb-text {
  color: #f44336;
}
.step-summary .agb-checkbox-container.pulse-error {
  animation: agbPulse 0.6s ease-in-out;
}

@keyframes agbPulse {
  0% {
    border-color: #e0e0e0;
    background: rgba(245, 245, 245, 0.3);
  }
  50% {
    border-color: #f44336;
    background: rgba(244, 67, 54, 0.15);
    transform: scale(1.01);
  }
  100% {
    border-color: #f44336;
    background: rgba(244, 67, 54, 0.05);
    transform: scale(1);
  }
}
.payment-loading {
  text-align: center;
  padding: 60px 20px;
}
.payment-loading .loading-spinner {
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  border: 4px solid rgba(33, 150, 243, 0.2);
  border-top-color: #2196f3;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.payment-loading p {
  color: #666;
  font-size: 16px;
  margin: 0;
}

.payment-error {
  text-align: center;
  padding: 40px 20px;
  background: rgba(244, 67, 54, 0.05);
  border-radius: 8px;
  margin-top: 24px;
}
.payment-error .error-icon {
  margin: 0 auto 16px;
}
.payment-error .error-icon svg {
  display: block;
  margin: 0 auto;
}
.payment-error h3 {
  color: #f44336;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px;
}
.payment-error .error-message {
  color: #666;
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.order-success {
  text-align: center;
  padding: 40px 20px;
}
.order-success .success-icon {
  margin: 0 auto 24px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 50%;
}
.order-success .success-icon svg {
  width: 64px;
  height: 64px;
}
.order-success h2 {
  margin: 0 0 12px 0;
  font-size: 24px;
  font-weight: 600;
  color: #4caf50;
}
.order-success p {
  margin: 0 0 8px 0;
  font-size: 16px;
  color: #666666;
}
.order-success .btn-close-success {
  margin-top: 24px;
  padding: 12px 32px;
  background: #1a1a1a;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
.order-success .btn-close-success:hover {
  background: #333333;
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 576px) {
  .cw-checkout-modal {
    padding: 0;
  }
  .cw-checkout-modal .modal-content {
    max-width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }
  .cw-checkout-modal .modal-header,
  .cw-checkout-modal .modal-body,
  .cw-checkout-modal .modal-footer {
    padding-left: 16px;
    padding-right: 16px;
  }
  .step-cart-review .cart-item {
    flex-wrap: wrap;
  }
}
.coupon-input-row {
  display: flex;
  gap: 8px;
}

.coupon-code-input {
  flex: 1;
  min-width: 0;
  text-transform: uppercase;
}
.coupon-code-input:disabled {
  background: color-mix(in srgb, currentColor 8%, transparent);
  opacity: 0.7;
}

.coupon-apply-btn {
  white-space: nowrap;
}
.coupon-apply-btn.coupon-remove {
  color: #b32d2e;
}

.coupon-message {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.4;
}

.coupon-message.coupon-error {
  color: #b32d2e;
}

.coupon-message.coupon-success {
  color: #00a32a;
}

.summary-coupon-discount {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #00a32a;
  font-weight: 500;
}

.cart-item-plan {
  margin-top: 10px;
}

.cart-plan {
  border-top: 1px solid #e0e0e0;
  padding-top: 10px;
}

.cart-plan-head {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #666666;
  margin-bottom: 6px;
}

.cart-plan-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.cart-plan-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.cart-plan-opt:hover {
  border-color: rgb(197.12, 197.12, 197.12);
}
.cart-plan-opt.is-selected {
  border-color: #1a1a1a;
  box-shadow: 0 0 0 1px #1a1a1a inset;
  background: #fafbfc;
}
.cart-plan-opt input[type=radio] {
  margin: 0;
  flex-shrink: 0;
}

.cart-plan-opt-body {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  min-width: 0;
}

.cart-plan-opt-title {
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
}

.cart-plan-opt-sub {
  font-size: 11px;
  color: #666666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 480px) {
  .cart-plan-options {
    grid-template-columns: 1fr;
  }
}
.cart-plan-detail {
  margin-top: 10px;
  padding: 10px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: #fafbfc;
}

.cart-plan-schedule {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cart-plan-schedule li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
  padding: 5px 0;
  font-size: 12px;
  border-bottom: 1px solid rgb(239.5, 239.5, 239.5);
}
.cart-plan-schedule li:last-child {
  border-bottom: none;
}

.cart-plan-schedule-label {
  font-weight: 500;
  color: #1a1a1a;
}

.cart-plan-schedule-due {
  font-size: 11px;
  color: #666666;
}

.cart-plan-schedule-amount {
  text-align: right;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.cart-plan-customize {
  margin-top: 8px;
  font-size: 12px;
  background: transparent;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 5px 10px;
  cursor: pointer;
  color: #1a1a1a;
}
.cart-plan-customize:hover {
  background: #fff;
  border-color: rgb(197.12, 197.12, 197.12);
}

.cart-plan-editor {
  margin-top: 10px;
  padding: 10px;
  border: 1px dashed #e0e0e0;
  border-radius: 6px;
  background: #fff;
}

.installments-editor-row {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.installments-editor-row input[type=text],
.installments-editor-row input[type=number],
.installments-editor-row input[type=date],
.installments-editor-row select {
  height: 30px;
  padding: 3px 6px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 12px;
  background: #fff;
}
.installments-editor-row .installments-row-amount {
  width: 80px;
}

.installments-row-label-static {
  width: 90px;
  font-weight: 500;
  font-size: 12px;
  color: #1a1a1a;
}

.installments-row-due-fixed,
.installments-row-due-readonly {
  font-size: 11px;
  color: #666666;
  font-style: italic;
}

.cart-plan-unit {
  font-size: 11px;
  color: #666666;
}

.installments-row-remove {
  font-size: 16px;
  line-height: 1;
  background: transparent;
  border: none;
  color: #f44336;
  cursor: pointer;
  padding: 0 4px;
}
.installments-row-remove:hover {
  opacity: 0.7;
}

.cart-plan-editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.cart-plan-add,
.cart-plan-cancel {
  font-size: 12px;
  background: transparent;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 4px 10px;
  cursor: pointer;
}

.cart-plan-cancel {
  color: #666666;
}

.cart-plan-validation {
  margin-top: 8px;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  background: #fef3c7;
  color: #92400e;
}
.cart-plan-validation:empty {
  display: none;
}
.cart-plan-validation.is-valid {
  background: #d1fae5;
  color: #065f46;
}
.cart-plan-validation.is-invalid {
  background: #fee2e2;
  color: #991b1b;
}

.cart-plan-due-today {
  font-weight: 700;
  color: #4caf50;
  border-top: 1px dashed #e0e0e0;
  margin-top: 4px;
  padding-top: 6px;
}

.installments-recap-box {
  padding: 12px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: #fafbfc;
  font-size: 13px;
}

.installments-recap-row {
  display: flex;
  justify-content: space-between;
  padding: 3px 0;
}
.installments-recap-row strong {
  font-weight: 700;
}

.installments-recap-note {
  margin: 8px 0 0;
  font-size: 12px;
  color: #666666;
  font-style: italic;
}/*# sourceMappingURL=checkout-modal.css.map */