:root {
    --wcmc-primary: #6366f1;
    --wcmc-secondary: #10b981;
    --wcmc-bg: #f8fafc;
    --wcmc-card-bg: #ffffff;
    --wcmc-border: #e2e8f0;
    --wcmc-text: #1e293b;
    --wcmc-text-muted: #94a3b8;
    --wcmc-danger: #ef4444;
    --wcmc-radius: 12px;
}

/* فیلدهای نامعتبر */
.woocommerce-invalid input.input-text,
.woocommerce-invalid select,
.woocommerce-invalid textarea,
.woocommerce-invalid-required-field input.input-text,
.woocommerce-invalid-required-field select,
.woocommerce-invalid-required-field textarea {
    border-color: #ef4444 !important;
    background-color: #fef2f2 !important;
}

.woocommerce-invalid input.input-text:focus,
.woocommerce-invalid select:focus,
.woocommerce-invalid textarea:focus,
.woocommerce-invalid-required-field input.input-text:focus,
.woocommerce-invalid-required-field select:focus,
.woocommerce-invalid-required-field textarea:focus {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

/* لیبل فیلدهای خطادار */
.woocommerce-invalid label,
.woocommerce-invalid-required-field label {
    color: #ef4444 !important;
}

/* پیام خطای زیر فیلد */
.wcmc-field-error {
    display: block;
    color: #dc2626;
    font-size: 13px;
    margin-top: 6px;
    padding: 8px 12px;
    background: #fef2f2;
    border-right: 3px solid #ef4444;
    border-radius: 6px;
    line-height: 1.4;
    animation: wcmcErrorSlide 0.3s ease;
}

.wcmc-field-error::before {
    font-family: 'Picon';
    content: "\e14d";
    font-size: 16px;
    margin-left: 6px;
    vertical-align: middle;
}

@keyframes wcmcErrorSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

form.woocommerce-checkout > * {
    width: 100% !important;
    max-width: 100% !important;
}

.blockUI.blockOverlay {
    background: rgba(255, 255, 255, 0.8) !important;
    opacity: 1 !important;
}

.wcmc-steps-wrapper {
    padding: 15px;
    border-radius: 15px;
    background: #fbfbfb;
}

.wcmc-steps-wrapper p {
    margin: 0;
}

.wcmc-steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}

.wcmc-step-line {
    position: absolute;
    top: 24px;
    right: 80px;
    left: 80px;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    z-index: 0;
}

.wcmc-step-line-fill {
    height: 100%;
    background: linear-gradient(to left, #dce2fd, #e1e4f5);
    border-radius: 5px;
    width: 0;
    transition: width 0.6s ease;
}

.wcmc-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
    cursor: pointer;
    min-width: 80px;
    text-decoration: none;
    color: inherit;
}

a.wcmc-step,
.wcmc-step.clickable {
    cursor: pointer;
}

a.wcmc-step:hover .wcmc-step-circle,
.wcmc-step.clickable:hover .wcmc-step-circle {
    transform: scale(1.15);
}

a.wcmc-step:hover .wcmc-step-title,
.wcmc-step.clickable:hover .wcmc-step-title {
    color: var(--wcmc-primary);
}

.wcmc-step-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e2e8f0;
    border: 3px solid #e2e8f0;
    color: #94a3b8;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.wcmc-step.active .wcmc-step-circle {
    background: #f16156;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 0 4px rgb(146 146 146 / 20%);
}

.wcmc-step.completed .wcmc-step-circle {
    background: #dce2ff;
    border-color: #9eaeff;
    color: #3f51ad;
}

.wcmc-step.completed .wcmc-step-circle svg {
    display: none;
}

.wcmc-step-title {
    display: flex;
    margin-top: 10px;
    font-size: 13px;
    color: var(--wcmc-text-muted);
    transition: color 0.3s;
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
}

.wcmc-step.active .wcmc-step-title {
    color: #555;
}

.wcmc-step.completed .wcmc-step-title {
    color: #555
}

.wcmc-step-content {
    animation: wcmcFadeIn 0.4s ease;
    background: #fbfbfb;
    padding: 25px;
    border-radius: 15px;
    overflow: hidden;
}


@keyframes wcmcSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* استایل فیلدهای خطادار */
.woocommerce-invalid-required-field input,
.woocommerce-invalid-required-field select,
.woocommerce-invalid-required-field textarea,
.woocommerce-invalid-email input,
.woocommerce-invalid-phone input,
.woocommerce-invalid-postcode input {
    border-color: #ef4444 !important;
    background: #fef2f2 !important;
}

.woocommerce-invalid-required-field input:focus,
.woocommerce-invalid-required-field select:focus,
.woocommerce-invalid-required-field textarea:focus {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

/* لیبل فیلدهای الزامی */
.woocommerce-billing-fields .form-row.validate-required label abbr,
.woocommerce-shipping-fields .form-row.validate-required label abbr {
    color: #ef4444;
    text-decoration: none;
    border: none;
}

@keyframes wcmcFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wcmc-step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 0 10px;
    border-bottom: 2px solid #f3f3f3;
    text-align: right;
}

.wcmc-step-header h3 {
    font-size: 16px;
    margin: 0;
}

.wcmc-step-header p {
    font-size: 13px;
    opacity: 0.85;
    margin: 0;
}

.wcmc-step-desc {
    font-size: 14px;
}

.wcmc-step-header-cart .wcmc-step-header-icon:before {
    font-family: 'Picon';
    content: "\e552";
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f06259;
}

.wcmc-step-header-address .wcmc-step-header-icon:before {
    font-family: 'Picon';
    content: "\e418";
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f16156;
}

.wcmc-cart-page-wrapper {
    background: #fbfbfb;
    padding: 25px;
    border-radius: 15px;
    overflow: hidden;
}

.wcmc-cart-page-wrapper h2 {
    display: none;
}

.wcmc-cart-page-wrapper .shop_table {
    border: none;
    margin-bottom: 0;
}

.wcmc-cart-page-wrapper .shop_table td {
    vertical-align: middle;
    border-bottom: 1px solid #f1f5f9;
}

.wcmc-cart-page-wrapper .shop_table .product-thumbnail img {
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.wcmc-cart-page-wrapper .shop_table .product-name a:hover {
    color: var(--wcmc-primary);
}

.wcmc-cart-page-wrapper .shop_table .product-remove a:hover {
    background: #ef4444;
    color: #fff;
}

.wcmc-cart-page-wrapper .quantity input[type="number"]:focus {
    border-color: var(--wcmc-primary);
    outline: none;
}

.wcmc-cart-page-wrapper .calculated_shipping {
    padding: 20px 0 0;
}

.wcmc-cart-page-wrapper .wc-proceed-to-checkout {
    margin-top: 20px;
    display: inline-block;
    float: left;
}

.wcmc-step-content .woocommerce-billing-fields {
    display: flex;
    flex-direction: column;
}

.wcmc-step-content .woocommerce-billing-fields h3 {
    display: none;
}

.woocommerce-form-coupon-toggle {
    padding-top: 15px;
    text-align: right;
}

#order_review_heading {
    display: none;
}

.wcmc-step-2 .woocommerce-shipping-fields__field-wrapper,
.wcmc-step-2 #ship-to-different-address {
    display: none;
}

.wcmc-step-2 .woocommerce-additional-fields {
    padding-top: 20px;
    border-top: 1px dashed #e2e8f0;
}

.wcmc-step-2 .woocommerce-additional-fields h3 {
    font-size: 15px;
    font-weight: 700;
    color: #475569;
    margin-bottom: 12px;
}

.wcmc-step-2 .woocommerce-additional-fields textarea {
    min-height: 100px;
    resize: vertical;
}

#wcmc-step-2 .checkout-order-review {
    display: none;
}

.wcmc-step-3 {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.woocommerce-checkout-review-order {
    width: 100%;

}

.wcmc-address-summary {
    width: 100%;
}

/* مخفی کردن فقط thead و tbody جدول خلاصه سفارش - tfoot (شامل ارسال و پرداخت) نمایش داده می‌شود */
.wcmc-step-3 .woocommerce-checkout-review-order .shop_table.woocommerce-checkout-review-order-table thead {
    display: none !important;
}

.wcmc-step-3 .woocommerce-checkout-review-order .shop_table.woocommerce-checkout-review-order-table tbody {
    display: none !important;
}

/* مخفی کردن عنوان بررسی سفارش */
.wcmc-step-3 #order_review_heading {
    display: none !important;
}

/* استایل جدول در مرحله 3 */
.wcmc-step-3 .shop_table.woocommerce-checkout-review-order-table {
    border: none;
    margin: 0;
}

.woocommerce-checkout-review-order-table tfoot tr {
    padding: 0px 10px;
}

.woocommerce-checkout-payment, .wcmc-step-3 .shop_table.woocommerce-checkout-review-order-table .woocommerce-shipping-totals {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 0px 2px 0px #00000040;
}

.wcmc-step-3 .shop_table.woocommerce-checkout-review-order-table tfoot th,
.wcmc-step-3 .shop_table.woocommerce-checkout-review-order-table tfoot td {
    text-align: right;
}

/* مخفی کردن ردیف جمع جزء و مجموع */
.wcmc-step-3 .cart-subtotal,
.wcmc-step-3 .order-total {
    display: none !important;
}

.wcmc-step-3 .shop_table .order-total td {
    font-weight: 700;
    font-size: 16px;
    color: var(--wcmc-primary);
}

.wcmc-address-summary {
    background: var(--wcmc-card-bg);
    border-radius: var(--wcmc-radius);
    margin-bottom: 25px;
    overflow: hidden;
    box-shadow: 0px 0px 2px 0px #00000040;
}

.wcmc-address-summary-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 15px;
    background: #eee;
    border-bottom: 1px solid #c7c7c7;
    font-size: 14px;
}

.wcmc-address-summary-header p {
    margin-bottom: 0;
}

.wcmc-address-summary-body {
    padding: 15px;
    text-align: right;
}

.wcmc-address-summary-icon {
    width: 36px;
    height: 36px;
    background: #f16156;
    border-radius: 8px;
    display: flex;
    align-items: center;
    color: #fff;
    justify-content: center;
}

.wcmc-address-summary-icon:before {
    font-family: 'Picon';
    content: "\e417";
    font-size: 20px;
    display: flex;
    align-items: center;
    font-weight: 500;
    justify-content: center;
}

.wcmc-address-info p {
    margin: 0 0 6px;
    font-size: 14px;
    color: #475569;
    line-height: 1.8;
}

.wcmc-address-name strong {
    color: #1e293b;
    font-size: 15px;
}

.wcmc-address-meta {
    font-size: 13px;
    color: #94a3b8;
    margin-top: 8px;
}

.wcmc-edit-address {
    margin-right: 10px;
    background: #ffffff !important;
    border: none;
    border-radius: 10px !important;
    color: var(--wcmc-primary);
    font-size: 13px !important;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: inherit;
}

.wcmc-edit-address:hover {
    color: #4338ca;
}

.wcmc-edit-address:before {
    font-family: 'Picon';
    content: "\e295";
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wcmc-step-3 .woocommerce-shipping-methods {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wcmc-step-3 .woocommerce-shipping-methods li {
    margin-bottom: 0;
    border-radius: 10px;
    padding: 15px;
    transition: all 0.2s ease;
}

.wcmc-step-3 .woocommerce-shipping-methods li:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
}

.wcmc-step-3 .woocommerce-shipping-methods li label {
    padding: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0;
    width: 100%;
}

.wcmc-step-3 .woocommerce-shipping-methods li:has(input:checked) {
    background: #faead7;
}

/* استایل بخش ارسال */
.wcmc-step-3 .woocommerce-shipping-totals {
    margin-bottom: 25px;
}

.wcmc-step-3 .woocommerce-shipping-totals th {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    padding: 0 0 15px 0;
    display: block;
    border: none;
}

.wcmc-step-3 .woocommerce-shipping-totals td {
    padding: 0;
    display: block;
    border: none;
}

.wcmc-step-3 .wc_payment_methods {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.wcmc-payment-title-wrapper, .wcmc-shipping-title-wrapper {    text-align: right;padding-right:10px;margin-bottom: 10px;}
.wcmc-payment-title-wrapper h3, .wcmc-shipping-title-wrapper h3{     font-size: 16px;
    color: #1e293b;
    padding: 0;
    margin: 0px;}
	
	
.wcmc-step-content .shipping-description {color: #444; font-size: 12px; font-weight: normal;margin-top:8px;display:block}
.wcmc-payment-title-wrapper h3:before {
    font-family: 'Picon';
    content: "\e201";
    font-size: 24px;
    font-weight: 500;
    vertical-align: middle;
    padding-left: 5px;
    color: #f16156;
}


	
.wcmc-shipping-title-wrapper h3:before {
    font-family: 'Picon';
    content: "\e289";
    font-size: 24px;
    font-weight: 500;
    vertical-align: middle;
    padding-left: 5px;
    color: #f16156;
}
	
/* مخفی کردن تیترهای تکراری */
.wcmc-shipping-title-wrapper:not(:first-child) {
    display: none !important;
}
	
.wcmc-payment-title-wrapper p, .wcmc-shipping-title-wrapper p{     font-size: 14px;
    padding: 0 0 0px 0;
    margin: 0px;}

.wcmc-step-3 .wc_payment_method {
    border-radius: 10px;
    background: #f9f9f9;
    overflow: hidden;
    transition: all 0.2s ease;
    padding: 10px 15px;
    text-align: right;
}

.wcmc-step-3 .wc_payment_method:hover {
    border-color: #cbd5e1;
}

.wcmc-step-3 .wc_payment_method input:checked ~ label {
    background: rgba(16, 185, 129, 0.04);
}

.wcmc-step-3 .wc_payment_method.payment_method_selected,
.wcmc-step-3 .wc_payment_method:has(input:checked) {
    background: #dae4ef;
}

.wcmc-step-3 .payment_box {
    border-radius: 10px;
    padding: 10px 15px !important;
    background: #ffffff;
    font-size: 13px;
}

.wcmc-step-3 #place_order {
    width: 100%;
    background: #36bb8f;
    color: #fff;
    border: none;
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wcmc-step-3 #place_order:hover {
    transform: translateY(-1px);
}

.wcmc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: 10px !important;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-decoration: none;
}

.wcmc-btn-next {
    width: 100%;
    background: #36bb8f;
    color: #fff !important;
    font-size: 16px;
}

.wcmc-btn-next:hover {
    background: #27a37a;
    color: #fff !important;
}

.wcmc-btn-next.loading {
    opacity: 0.7;
    pointer-events: none;
}

.wcmc-btn-next.loading::after {
    content: '';
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: wcmcSpin 0.6s linear infinite;
    margin-right: 8px;
}

.wcmc-btn-prev {
    background: #fff;
    color: #64748b;
    border: 2px solid #e2e8f0;
    padding: 12px 24px;
}

.wcmc-btn-prev:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #64748b;
}

.wcmc-next-wrapper {
    margin-top: 20px;
}

.wcmc-nav-buttons {
    display: flex;
    gap: 12px;
}

.wcmc-nav-buttons-step2 {
    flex-direction: row-reverse;
    padding: 30px 0 0;
    border-top: 1px solid #e2e8f0;
}

.wcmc-nav-buttons-step2 .wcmc-btn-next {
    background: #36bb8f;
    flex: 1;
}

.wcmc-nav-buttons-step2 .wcmc-btn-next:hover {
    background: #27a37a;
}

.wcmc-nav-buttons-step3 {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

@keyframes wcmcSpin {
    to {
        transform: rotate(360deg);
    }
}

.step1-icon:before {
    font-family: 'Picon';
    content: "\e202";
    font-size: 20px;
    display: flex;
    align-items: center;
    font-weight: 500;
    justify-content: center;
}

.wcmc-step.completed .step1-icon:before {
    font-family: 'Picon';
    content: "\e229";
    font-size: 24px;
}

.step2-icon:before {
    font-family: 'Picon';
    content: "\e413";
    font-size: 20px;
    display: flex;
    align-items: center;
    font-weight: 500;
    justify-content: center;
}

.step3-icon:before {
    font-family: 'Picon';
    content: "\e201";
    font-size: 20px;
    display: flex;
    align-items: center;
    font-weight: 500;
    justify-content: center;
}

.next-step-icon:before {
    font-family: 'Picon';
    content: "\e121";
    font-size: 20px;
    display: flex;
    align-items: center;
    font-weight: 500;
    justify-content: center;
}

.custom-cart-summary {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    direction: rtl;
}

.custom-cart-summary h3 {
    margin: 0 0 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #dee2e6;
    font-size: 18px;
    color: #333;
}

.custom-cart-summary h3:before {
    font-family: 'Picon';
    content: "\e515";
    font-size: 28px;
    align-items: center;
    justify-content: center;
    color: #f06259;
    font-weight: 500;
    vertical-align: middle;
    padding-left: 10px;
}

.custom-cart-summary .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed #e9ecef;
}

.custom-cart-summary .summary-row:last-child {
    border-bottom: none;
}

.custom-cart-summary .summary-row .label {
    color: #555;
    font-size: 14px;
}

.custom-cart-summary .summary-row .value {
    color: #333;
    font-size: 15px;
}

.custom-cart-summary .summary-row.discount .value {
    color: #e74c3c;
}

.custom-cart-summary .summary-row.total {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 2px solid #333;
    border-bottom: none;
}

.custom-cart-summary .summary-row.total .label,
.custom-cart-summary .summary-row.total .value {
    font-size: 18px;
    color: #27ae60;
}

.custom-cart-summary .discount-row .label:before {
    font-family: 'Picon';
    content: "\e607";
    font-size: 21px;
    align-items: center;
    justify-content: center;
    color: #F44336;
    font-weight: 500;
    vertical-align: middle;
    padding-left: 6px;
}

.custom-cart-summary .savings-row .label:before {
    font-family: 'Picon';
    content: "\e372";
    font-size: 21px;
    align-items: center;
    justify-content: center;
    color: #F44336;
    font-weight: 500;
    vertical-align: middle;
    padding-left: 6px;
}

.custom-cart-summary .sum-row .labels {
    color: #333;
    font-size: 14px;
}

.custom-cart-summary .sum-row .values {
    color: #333;
    font-size: 17px;
}

.sum-row {
    background: #e8edf3;
    padding: 10px 15px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 10px;
    font-size: 20px;
    margin-top: 15px;
}

.aabed-cart-process-btn .wd-icon {
    vertical-align: middle;
}

@media (max-width: 768px) {

    .wcmc-step-line {
        right: 50px;
        left: 50px;
        top: 15px;
    }

    .wcmc-step-circle {
        width: 40px;
        height: 40px;
    }

    .wcmc-step-title {
        font-size: 11px;
    }

    .wcmc-step-header {
        margin-bottom: 15px;
    }

    .wcmc-step-header h3 {
        font-size: 15px;
    }

    .wcmc-btn-next {
        font-size: 14px;
        padding: 14px 20px;
    }

    .wcmc-nav-buttons,
    .wcmc-nav-buttons-step2 {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .wcmc-step-line {
        right: 35px;
        left: 35px;
    }

    .wcmc-step {
        min-width: 60px;
    }

    .wcmc-step-circle {
        width: 42px;
        height: 42px;
    }

    .wcmc-step-title {
        font-size: 12px;
    }
}

/* استایل شورتکد order_items_review */
.wcmc-order-review-shortcode {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    direction: rtl;
}

.wcmc-order-review-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    color: #1e293b;
    margin: 0 0 20px;
    padding-bottom: 15px;
    background: #fff;
    padding: 8px 10px;
    border-radius: 10px;
}

.wcmc-order-review-icon:before {
    font-family: 'Picon';
    content: "\e515";
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f06259;
    font-weight: 500;
}

.wcmc-order-review-shortcode .shop_table {
    width: 100%;
    border: none;
    margin: 0;
}

.wcmc-order-review-shortcode .shop_table thead {
    background: #f8fafc;
}

.wcmc-order-review-shortcode .shop_table thead th {
    padding: 12px 15px;
    font-size: 14px;
    border-bottom: 1px solid #e2e8f0;
}

.wcmc-order-review-shortcode .shop_table tbody tr {
    border-bottom: 1px solid #f1f5f9;
}

.wcmc-order-review-shortcode .shop_table tbody td {
    vertical-align: middle;
    padding: 10px;
}

.wcmc-order-review-shortcode .product-name-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex-direction: column;
}

.wcmc-order-review-shortcode .product-thumbnail {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.wcmc-order-review-shortcode .product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wcmc-order-review-shortcode .product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wcmc-order-review-shortcode .product-title {
    font-size: 14px;
    color: #1e293b;
    line-height: 1.4;
}

.wcmc-order-review-shortcode .product-quantity {
    font-size: 13px;
    color: #64748b;
}

.wcmc-order-review-shortcode .product-total {
    text-align: left;
    font-size: 15px;
    color: #1e293b;
}

/* استایل tfoot شورتکد */
.wcmc-order-review-shortcode .shop_table tfoot th {
    padding: 12px 15px;
    font-size: 14px;
    color: #475569;
    text-align: right;
    border-top: 1px dashed #ddd;
    border-bottom: 1px dashed #ddd;
}

.wcmc-order-review-shortcode .shop_table tfoot td {
    padding: 12px 15px;
    font-size: 14px;
    color: #1e293b;
    text-align: left;
    border-top: 1px dashed #ddd;
    border-bottom: 1px dashed #ddd;
}

.order-total th, .order-total td {    border-bottom: none !important;}

/* استایل ردیف جمع جزء */
.wcmc-order-review-shortcode .cart-subtotal th,
.wcmc-order-review-shortcode .cart-subtotal td {
    color: #64748b;
    font-size: 14px;
}

/* استایل کدهای تخفیف */
.wcmc-order-review-shortcode .cart-discount th {
    color: #dc2626;
}

.wcmc-order-review-shortcode .cart-discount td {
    color: #dc2626;
}

/* استایل ارسال */
.wcmc-order-review-shortcode .woocommerce-shipping-totals th,
.wcmc-order-review-shortcode .woocommerce-shipping-totals td {
    color: #475569;
}

/* استایل مجموع کل */
.wcmc-order-review-shortcode .order-total {
    background: #f8fafc;
}

/* رسپانسیو */
@media (max-width: 768px) {
    .wcmc-order-review-shortcode .product-thumbnail {
        width: 50px;
        height: 50px;
    }
    
    .wcmc-order-review-shortcode .product-name-wrapper {
        gap: 10px;
    }
    
    .wcmc-order-review-title {
        font-size: 16px;
    }
	
	.wcmc-step-3 {
    background: none;
    padding: 0px;
}

}