#checkoutFormnew .btn {
    background: #e14337 !important;
    color: #fff;
}

#checkoutFormnew .btn:hover {
    opacity: 0.9;
    color: #fff;
}

.Checkout_page_section {
    padding: 30px 0 60px;
    background: #fafafa;
}

.checkout-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px 24px 28px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    border: 1px solid #e5e7eb;
    margin-bottom: 24px;
}

.checkout-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Horizontal step wizard */
.checkout-steps {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.step-indicator {
    flex: 1 1 0;
    min-width: 150px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    background: #f3f4f6;
    color: #4b5563;
    font-size: 0.85rem;
}

.step-indicator-number {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid #d4d4d8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    background: #fff;
}

.step-indicator-label {
    font-weight: 600;
}

.step-indicator-desc {
    font-size: 0.75rem;
    color: #9ca3af;
}

.step-indicator.active {
    background: #f6dcda;
    color: #e14337;
}

.step-indicator.active .step-indicator-number {
    border-color: #e14337;
    background: #e14337;
    color: #fff;
}

.step-indicator.completed {
    background: #f6dcda;
    color: #e14337;
}

.step-indicator.completed .step-indicator-number {
    border-color: #e14337;
    color: #e14337;
    background: #fff;
}

.checkout-step {
    display: none;
}

.checkout-step.active {
    display: block;
}

.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #374151;
}

.form-control {
    border-radius: 10px;
    border-color: #e5e7eb;
    font-size: 0.9rem;
}

.form-control:focus {
    border-color: #2dc6b6;
    box-shadow: 0 0 0 0.15rem rgba(45, 198, 182, 0.25);
}

.invalid-feedback {
    font-size: 0.8rem;
}

.order-summary-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.order-summary-table th,
.order-summary-table td {
    font-size: 0.9rem;
    padding: 6px 0;
}

.order-summary-table tfoot th {
    font-weight: 700;
}

.order-summary-table tfoot td {
    font-weight: 700;
}

.address-card {
    display: flex;
    gap: 12px;
    padding: 10px 15px;
    border-radius: 12px;
    border: 2px solid #ddd;
    background: #fff;
    cursor: pointer;
    width: 100%;
}

.newaddress-card {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: #fff;
    cursor: pointer;
    width: 100%;
}

.address-card:hover {
    border-color: #e14337;
    background: #fffafa;
}

.address-card input[type="radio"] {
    transform: scale(1.3);
    margin-top: 6px;
}

.address-card-body {
    line-height: 1.4;
    font-size: 0.9rem;
}

.address-zip {
    font-weight: 700;
    color: #e14337;
}

.address-line {
    color: #555;
}

/* Full page loader */
.page-loader {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-content {
    text-align: center;
    font-size: 0.95rem;
    color: #374151;
}

/* Spinner */
.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #e5e7eb;
    border-top-color: #e14337;
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
    margin: 0 auto 12px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


.old-postage-price {
  text-decoration: line-through;
  color: red;
  margin-right: 10px;
}