/* ===== DoodiSho Checkout Page ===== */

/* WooCommerce Error Notices */
.woocommerce-NoticeGroup-checkout,
.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.7;
}

.woocommerce-NoticeGroup-checkout .woocommerce-error,
.woocommerce-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    list-style: none;
    padding: 14px 18px;
}

.woocommerce-NoticeGroup-checkout .woocommerce-error li,
.woocommerce-error li {
    list-style: none;
    padding: 2px 0;
}

.woocommerce-NoticeGroup-checkout .woocommerce-error li::before,
.woocommerce-error li::before {
    content: '!';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: #dc2626;
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    margin-inline-start: 6px;
    vertical-align: middle;
}

.woocommerce-info {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1e40af;
}

.woocommerce-message {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.doodisho-checkout-page {
    padding: 30px 0 50px;
}

/* Login Gate */
.doodisho-checkout-login-gate {
    text-align: center;
    padding: 60px 24px;
    background: var(--color-card, #fff);
    border-radius: var(--radius-lg, 16px);
    border: 1px solid var(--color-border, #e8e8e8);
    box-shadow: var(--shadow-sm, 0 2px 8px rgba(0,0,0,0.06));
    max-width: 500px;
    margin: 0 auto;
}

.doodisho-checkout-login-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #fef7f0 0%, #fff5ed 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary, #fd9153);
}

.doodisho-checkout-login-gate h2 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 800;
}

.doodisho-checkout-login-gate p {
    color: #666;
    margin: 0 0 24px;
    font-size: 15px;
}

.doodisho-checkout-digits-form {
    max-width: 400px;
    margin: 0 auto;
    text-align: right;
}

.doodisho-checkout-digits-form input[type="tel"],
.doodisho-checkout-digits-form input[type="text"],
.doodisho-checkout-digits-form input[type="email"],
.doodisho-checkout-digits-form input[type="password"],
.doodisho-checkout-digits-form input[type="number"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border, #e5e7eb);
    border-radius: 10px;
    font-family: "Vazirmatn", sans-serif;
    font-size: 14px;
    margin-bottom: 12px;
    transition: border-color 0.2s;
}

.doodisho-checkout-digits-form input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.doodisho-checkout-digits-form button,
.doodisho-checkout-digits-form input[type="submit"] {
    width: 100%;
    padding: 12px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: "Vazirmatn", sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s;
}

.doodisho-checkout-digits-form button:hover,
.doodisho-checkout-digits-form input[type="submit"]:hover {
    opacity: 0.9;
}

/* Progress Steps */
.doodisho-checkout-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 32px;
    padding: 24px;
    background: var(--color-card, #fff);
    border-radius: var(--radius-lg, 16px);
    border: 1px solid var(--color-border, #e8e8e8);
    box-shadow: var(--shadow-sm, 0 2px 8px rgba(0,0,0,0.06));
}

.doodisho-progress-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 12px;
    transition: all 0.3s;
}

.doodisho-progress-step.active {
    background: linear-gradient(135deg, #fef7f0 0%, #fff5ed 100%);
}

.doodisho-progress-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8e8e8;
    color: #888;
    font-size: 14px;
    font-weight: 800;
    transition: all 0.3s;
    flex-shrink: 0;
}

.doodisho-progress-step.active .doodisho-progress-num {
    background: var(--color-primary, #fd9153);
    color: #fff;
    box-shadow: 0 4px 12px rgba(253, 145, 83, 0.35);
}

.doodisho-progress-step.completed .doodisho-progress-num {
    background: #16a34a;
    color: #fff;
}

.doodisho-progress-label {
    font-size: 14px;
    font-weight: 600;
    color: #888;
    transition: color 0.3s;
}

.doodisho-progress-step.active .doodisho-progress-label {
    color: var(--color-text, #333);
    font-weight: 700;
}

.doodisho-progress-step.completed .doodisho-progress-label {
    color: #16a34a;
}

.doodisho-progress-line {
    width: 60px;
    height: 2px;
    background: #e8e8e8;
    margin: 0 8px;
    border-radius: 2px;
    transition: background 0.3s;
}

.doodisho-progress-line.active {
    background: var(--color-primary, #fd9153);
}

/* Layout */
.doodisho-checkout-layout {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 24px;
    align-items: start;
}

/* Section Cards */
.doodisho-checkout-section {
    background: var(--color-card, #fff);
    border-radius: var(--radius-lg, 16px);
    border: 1px solid var(--color-border, #e8e8e8);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm, 0 2px 8px rgba(0,0,0,0.06));
    transition: box-shadow 0.3s;
}

.doodisho-checkout-section:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.doodisho-checkout-section h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 800;
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
    border-bottom: 1px solid var(--color-border, #e8e8e8);
}

.doodisho-checkout-section h3 svg {
    color: var(--color-primary, #fd9153);
}

.doodisho-checkout-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary, #fd9153) 0%, #e87a3a 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(253, 145, 83, 0.3);
}

.doodisho-checkout-section-body {
    padding: 24px;
}

/* Order Review Table */
.woocommerce-checkout-review-order-table {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    padding: 14px 18px;
    text-align: right;
    border-bottom: 1px solid #f4f4f4;
    font-size: 14px;
}

.woocommerce-checkout-review-order-table th {
    font-weight: 700;
    color: #666;
    font-size: 13px;
    background: #fafafa;
}

.woocommerce-checkout-review-order-table tr:last-child td {
    border-bottom: none;
}

.woocommerce-checkout-review-order-table tr.order-total td {
    color: var(--color-primary, #fd9153);
    font-size: 18px;
    font-weight: 800;
    border-top: 2px solid var(--color-border, #e8e8e8);
    background: linear-gradient(135deg, #fef7f0 0%, #fff5ed 100%);
}

/* Place Order Section */
.doodisho-checkout-place-order {
    padding: 24px;
    background: var(--color-card, #fff);
    border-radius: var(--radius-lg, 16px);
    border: 1px solid var(--color-border, #e8e8e8);
    box-shadow: var(--shadow-sm, 0 2px 8px rgba(0,0,0,0.06));
}

.doodisho-checkout-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 24px !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    text-align: center;
    margin-top: 14px;
    border-radius: 14px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 14px rgba(253, 145, 83, 0.35) !important;
}

.doodisho-checkout-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(253, 145, 83, 0.4) !important;
}

/* Secure Badge */
.doodisho-checkout-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
    color: #888;
    font-size: 12px;
}

.doodisho-checkout-secure svg {
    color: #16a34a;
}

/* Checkout Form Fields */
.doodisho-checkout-form .form-row {
    margin-bottom: 16px;
}

.doodisho-checkout-form .form-row label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text, #333);
}

.doodisho-checkout-form .form-row label .required {
    color: #dc2626;
    margin-inline-end: 2px;
}

.doodisho-checkout-form .form-row input.input-text,
.doodisho-checkout-form .form-row textarea,
.doodisho-checkout-form .form-row select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--color-border, #e0e0e0);
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    background: #fafafa;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: auto;
    appearance: auto;
}

.doodisho-checkout-form .form-row input.input-text:focus,
.doodisho-checkout-form .form-row textarea:focus,
.doodisho-checkout-form .form-row select:focus {
    outline: none;
    border-color: var(--color-primary, #fd9153);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(253, 145, 83, 0.12);
}

.doodisho-checkout-form .form-row .select2-container {
    width: 100% !important;
}

.doodisho-checkout-form .form-row .select2-container--default .select2-selection--single {
    height: 44px;
    border: 1px solid var(--color-border, #e0e0e0);
    border-radius: 12px;
    padding: 0 14px;
    font-size: 14px;
    background: #fafafa;
}

.doodisho-checkout-form .form-row .select2-container--default .select2-selection--single:focus,
.doodisho-checkout-form .form-row .select2-container--default.select2-container--open .select2-selection--single {
    border-color: var(--color-primary, #fd9153);
    box-shadow: 0 0 0 3px rgba(253, 145, 83, 0.12);
}

.doodisho-checkout-form .form-row .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 42px;
    padding-inline-end: 30px;
    color: var(--color-text, #333);
}

.doodisho-checkout-form .form-row .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 42px;
}

/* Payment Section */
.doodisho-checkout-payment {
    display: none !important;
}

.woocommerce-checkout-payment ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce-checkout-payment li {
    padding: 14px 18px;
    margin-bottom: 8px;
    background: #fff;
    border: 2px solid var(--color-border, #e8e8e8);
    border-radius: 12px;
    transition: all 0.2s;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.woocommerce-checkout-payment li:has(input:checked) {
    border-color: var(--color-primary, #fd9153);
    background: linear-gradient(135deg, #fef7f0 0%, #fff5ed 100%);
    box-shadow: 0 2px 12px rgba(253, 145, 83, 0.12);
}

.woocommerce-checkout-payment li:hover {
    border-color: var(--color-primary, #fd9153);
}

.woocommerce-checkout-payment input[type="radio"],
.woocommerce-checkout-payment input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-border, #d1d5db);
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s;
    margin: 0;
}

.woocommerce-checkout-payment input[type="radio"]:checked,
.woocommerce-checkout-payment input[type="checkbox"]:checked {
    border-color: var(--color-primary, #fd9153);
    background: var(--color-primary, #fd9153);
}

.woocommerce-checkout-payment input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}

.woocommerce-checkout-payment label {
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    flex: 1;
}

.woocommerce-checkout_payment_box {
    background: #f9fafb;
    border: 1px solid var(--color-border, #e8e8e8);
    border-radius: 10px;
    padding: 14px 16px;
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.7;
    color: #555;
}

/* Shipping Methods */
#shipping_method {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

#shipping_method li {
    padding: 14px 18px;
    margin-bottom: 8px;
    background: #fff;
    border: 2px solid var(--color-border, #e8e8e8);
    border-radius: 12px;
    transition: all 0.2s;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

#shipping_method li:has(input:checked) {
    border-color: var(--color-primary, #fd9153);
    background: linear-gradient(135deg, #fef7f0 0%, #fff5ed 100%);
    box-shadow: 0 2px 12px rgba(253, 145, 83, 0.12);
}

#shipping_method li:hover {
    border-color: var(--color-primary, #fd9153);
}

#shipping_method input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-border, #d1d5db);
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s;
    margin: 0;
}

#shipping_method input[type="radio"]:checked {
    border-color: var(--color-primary, #fd9153);
    background: var(--color-primary, #fd9153);
}

#shipping_method input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}

#shipping_method label {
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    flex: 1;
}

#shipping_method .shipping-method-price {
    font-weight: 700;
    color: var(--color-primary, #fd9153);
    font-size: 14px;
}

.shipping-method-description {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
    padding-right: 30px;
}

/* Terms & Conditions */
.doodisho-checkout-place-order .woocommerce-terms-and-conditions {
    margin-bottom: 16px;
    padding: 16px;
    background: #fafafa;
    border-radius: 12px;
    border: 1px solid var(--color-border, #e8e8e8);
    font-size: 13px;
    line-height: 1.8;
}

.doodisho-checkout-place-order .woocommerce-terms-and-conditions a {
    color: var(--color-primary, #fd9153);
    text-decoration: underline;
}

/* Validation Error Styles */
.doodisho-field-error {
    color: #dc2626;
    font-size: 12px;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.doodisho-field-error::before {
    content: '!';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: #fee2e2;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
}

input.doodisho-input-invalid,
select.doodisho-input-invalid,
textarea.doodisho-input-invalid {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1) !important;
}

/* Responsive */
@media (max-width: 960px) {
    .doodisho-checkout-layout {
        grid-template-columns: 1fr;
    }

    .doodisho-checkout-progress {
        padding: 16px;
        gap: 0;
        overflow-x: auto;
    }

    .doodisho-progress-step {
        padding: 6px 10px;
    }

    .doodisho-progress-label {
        display: none;
    }

    .doodisho-progress-line {
        width: 40px;
    }

    .doodisho-checkout-section-body {
        padding: 18px;
    }
}

@media (max-width: 640px) {
    .doodisho-checkout-section h3 {
        padding: 14px 18px;
        font-size: 15px;
    }

    .doodisho-checkout-section-body {
        padding: 16px;
    }

    .doodisho-checkout-btn {
        font-size: 15px !important;
        padding: 16px 20px !important;
    }
}

/* ========================================
   Thank You Page
   ======================================== */
.doodisho-thankyou {
    padding: 40px 0 60px;
}

.doodisho-thankyou-hero {
    text-align: center;
    margin-bottom: 32px;
}

.doodisho-thankyou-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #28a745;
    margin-bottom: 20px;
}

.doodisho-thankyou-icon svg {
    width: 48px;
    height: 48px;
}

.doodisho-thankyou-icon-error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #dc3545;
}

.doodisho-thankyou-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--color-text, #333);
}

.doodisho-thankyou-subtitle {
    font-size: 15px;
    color: #666;
    margin: 0;
}

.doodisho-thankyou-order-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    background: var(--color-primary, #fd9153);
    border: none;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 24px;
}

.doodisho-thankyou-info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.doodisho-thankyou-info-label {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.6);
}

.doodisho-thankyou-info-value {
    font-size: 15px;
    font-weight: 700;
    color: #000;
}

.doodisho-thankyou-price {
    color: #000;
    font-size: 20px;
    text-shadow: none;
}

.doodisho-thankyou-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 24px;
}

.doodisho-thankyou-notice-success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.doodisho-thankyou-notice-pending {
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #92400e;
}

.doodisho-thankyou-bank-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: #fff7ed;
    border: 2px solid #fb923c;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #1a1a2e;
    font-weight: 700;
}

.doodisho-thankyou-bank-notice svg {
    flex-shrink: 0;
    color: #f97316;
    margin-top: 2px;
}

.doodisho-thankyou-bank-notice strong {
    color: #1a1a2e;
    font-size: 16px;
}

.doodisho-thankyou-bank-section {
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    line-height: 2;
    background: #fef7f0;
    border: 2px solid #fdba74;
}

.doodisho-thankyou-bank-section table {
    width: 100%;
    border-collapse: collapse;
}

.doodisho-thankyou-bank-section table th,
.doodisho-thankyou-bank-section table td {
    padding: 10px 16px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 16px;
}

.doodisho-thankyou-bank-section table th {
    font-weight: 700;
    color: #1a1a2e;
    text-align: right;
    white-space: nowrap;
    font-size: 15px;
}

.doodisho-thankyou-bank-section table td {
    color: #1a1a2e;
    font-weight: 700;
    word-break: break-all;
    font-size: 17px;
    direction: ltr;
    text-align: right;
    letter-spacing: 0.5px;
}

.doodisho-thankyou-section {
    background: #fff;
    border: 1px solid var(--color-border, #e8e8e8);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
}

.doodisho-thankyou-section-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    padding: 16px 20px;
    border-bottom: 1px solid var(--color-border, #e8e8e8);
    background: #fafafa;
}

.doodisho-thankyou-table {
    width: 100%;
    border-collapse: collapse;
}

.doodisho-thankyou-table th {
    text-align: right;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    background: #fafafa;
    border-bottom: 1px solid var(--color-border, #e8e8e8);
}

.doodisho-thankyou-table td {
    padding: 12px 20px;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.doodisho-thankyou-table tfoot td {
    font-weight: 700;
    font-size: 15px;
    border-bottom: none;
}

.woocommerce-Price-amount.amount {
    color: #1a1a2e !important;
}

.woocommerce-Price-amount.amount bdi {
    color: #1a1a2e !important;
}

.doodisho-thankyou-table tfoot tr:last-child td {
    border-top: 2px solid var(--color-border, #e8e8e8);
    font-size: 17px;
    color: #1a1a2e;
}

.doodisho-thankyou-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 8px;
}

@media (max-width: 640px) {
    .doodisho-thankyou {
        padding: 16px 0 32px;
    }

    .doodisho-thankyou-hero {
        margin-bottom: 20px;
    }

    .doodisho-thankyou-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 12px;
    }

    .doodisho-thankyou-icon svg {
        width: 36px;
        height: 36px;
    }

    .doodisho-thankyou-title {
        font-size: 16px;
        margin: 0 0 4px;
    }

    .doodisho-thankyou-subtitle {
        display: none;
    }

    .doodisho-thankyou-order-info {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 14px;
        margin-bottom: 16px;
    }

    .doodisho-thankyou-info-label {
        font-size: 11px;
    }

    .doodisho-thankyou-info-value {
        font-size: 13px;
    }

    .doodisho-thankyou-price {
        font-size: 16px;
    }

    .doodisho-thankyou-bank-notice {
        padding: 12px 14px;
        font-size: 14px;
        gap: 8px;
        margin-bottom: 14px;
    }

    .doodisho-thankyou-bank-notice svg {
        width: 18px;
        height: 18px;
    }

    .doodisho-thankyou-bank-notice strong {
        font-size: 14px;
    }

    .doodisho-thankyou-bank-hr {
        border: none;
        border-top: 1px solid #e0e0e0;
        margin: 0 0 12px 0;
    }

    .doodisho-thankyou-bank-section {
        padding: 16px;
        padding-bottom: 0;
        margin-bottom: 16px;
    }

    .doodisho-thankyou-bank-section h2,
    .doodisho-thankyou-bank-section .woocommerce-column-title {
        text-align: center;
        margin-bottom: 4px;
        padding-bottom: 4px;
    }

    .doodisho-thankyou-bank-section table th,
    .doodisho-thankyou-bank-section table td {
        padding: 8px 10px;
        font-size: 14px;
    }

    .doodisho-thankyou-bank-section table td {
        font-size: 15px;
    }

    .doodisho-thankyou-notice-pending {
        display: none !important;
    }

    .doodisho-thankyou-table th,
    .doodisho-thankyou-table td {
        padding: 10px 14px;
        font-size: 13px;
    }

    .doodisho-thankyou-section {
        margin-bottom: 16px;
    }

    .doodisho-thankyou-actions {
        flex-direction: column;
    }

    .doodisho-thankyou-actions a {
        text-align: center;
    }
}

/* Invoice Button */
.doodisho-order-view-actions .doodisho-btn-sm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    background: var(--color-primary, #fd9153);
    color: #fff;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s;
}

.doodisho-order-view-actions .doodisho-btn-sm:hover {
    opacity: 0.85;
    color: #fff;
}
