.shopping-cart-wrapper .cart-list-item {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/* Order Box Styles - Works on both cart-list and checkout pages */
.shopping-cart-wrapper .order-box,
.order-box {
    background: #f3f3f3;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}


.vaie-avail-offer {
    padding: 7px 20px;
    border-radius: 50px;
    position: relative;
    background: #fff;
}

.vaie-avail-offer::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    /* border width */
    border-radius: 50px;
    background: linear-gradient(to right, #b74eff, #4a95ff, #ffec4a, #4ae3ff);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}


.vaie-avail-offer button.btn {
    z-index: 9;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0px;
}

.shopping-cart-wrapper .cart-list-img-wrapper {
    max-width: 120px;
    width: 100%;
}

.shopping-cart-wrapper .cart-list-qty-btn {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    /* padding: 2px !important; */
}

.shopping-cart-wrapper .cart-list-qty-number {
    min-width: 32px;
    text-align: center;
    font-weight: 600;
}

.shopping-cart-wrapper .icon-text {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

/* Checkout Button Styles - Works on both cart-list and checkout pages */
.shopping-cart-wrapper .checkout-btn,
.checkout-btn {
    background: #0053f2;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.shopping-cart-wrapper .checkout-btn:hover:not(.disabled),
.checkout-btn:hover:not(.disabled) {
    background: #003ec4;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 83, 242, 0.3);
}

.shopping-cart-wrapper .checkout-btn.disabled,
.checkout-btn.disabled {
    background: #ccc;
    color: #999;
    cursor: not-allowed;
    opacity: 0.6;
    pointer-events: none;
}

.shopping-cart-wrapper .checkout-btn.disabled:hover,
.checkout-btn.disabled:hover {
    transform: none;
    box-shadow: none;
}

.action-checkout-function.disabled {
    pointer-events: none;
    cursor: not-allowed;
}

.shopping-cart-wrapper .cart-list-price {
    font-weight: 700;
    font-size: 18px;
}

.shopping-cart-wrapper .cart-list-discount {
    color: #0d6efd;
    font-size: 12px;
    font-weight: 600;
}

.shopping-cart-wrapper .cart-list-item-title {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    max-width: 360px;
    font-size: 14px;
}

.shopping-cart-wrapper .cart-list-in-stock {
    font-size: 13px;
    font-weight: 500;
}

.shopping-cart-wrapper .cart-list-icon-text {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}


.shopping-cart-wrapper .cart-list-qty-wrapper {
    background: #efeded;
    border-radius: 50px;
    padding: 2px 5px;
}

/* Order Box Input Group Styles - Works on both pages */
.shopping-cart-wrapper .order-box .input-group input,
.order-box .input-group input {
    border-radius: 50px;
    border: none;
}

.shopping-cart-wrapper .order-box .input-group button,
.order-box .input-group button {
    border-radius: 50px !important;
}

.shopping-cart-wrapper .order-box .input-group,
.order-box .input-group {
    background: white;
    border-radius: 50px;
}

.shopping-cart-wrapper .order-box .input-group button,
.order-box .input-group button {
    border-radius: 50px !important;
    background: transparent;
    color: #2979c4;
    border: 2px solid #2979c4;
}

.shopping-cart-wrapper .order-box .input-group input,
.order-box .input-group input {
    border-radius: 50px;
    border: none;
}

/* Sub Total Wrap - Works on both pages */
.shopping-cart-wrapper .sub-total-wrap h6,
.sub-total-wrap h6 {
    font-weight: bolder !important;
    font-size: 20px;
}

/* Purchase Protected - Works on both pages */
.PurchaseProtected span {
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
}

/* ============================================
   CHECKOUT PAGE STYLES
   ============================================ */

/* Checkout Section Card */
.checkout-section-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.checkout-section-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* Checkout Section Header */
.checkout-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f5f5f5;
    flex-wrap: wrap;
    gap: 16px;
}

.checkout-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    display: flex;
    align-items: center;
}

.checkout-section-title i {
    font-size: 22px;
}

/* Saved Address Dropdown */
.saved-address-dropdown-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.saved-address-btn {
    border-radius: 8px;
    padding: 8px 16px;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.saved-address-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 83, 242, 0.2);
}

.saved-address-dropdown {
    min-width: 320px;
    max-height: 400px;
    overflow-y: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid #e0e0e0;
    padding: 8px;
}

.saved-address-dropdown .dropdown-item {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 4px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.saved-address-dropdown .dropdown-item:hover,
.saved-address-dropdown .dropdown-item.active {
    background: #f0f7ff;
    color: #0053f2;
}

.saved-address-dropdown .dropdown-item:last-child {
    margin-bottom: 0;
}

/* No Saved Address Message */
.saved-address-dropdown .no-saved-address {
    cursor: default;
    pointer-events: none;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.saved-address-dropdown .no-saved-address:hover {
    background: transparent;
}

.saved-address-btn.no-address-btn {
    opacity: 0.7;
}

.saved-address-btn.no-address-btn:hover {
    opacity: 1;
}

/* Checkout Form */
.checkout-form {
    margin-top: 0;
}

.checkout-form-body {
    padding: 0;
}

/* Checkout Form Group */
.checkout-form-group {
    margin-bottom: 0;
}

.checkout-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    letter-spacing: 0.2px;
}

.checkout-form-label .text-danger {
    color: #dc3545;
    margin-left: 2px;
}

/* Checkout Form Input */
.checkout-form-input {
    width: 100%;
    padding: 4px 16px;
    font-size: 15px;
    color: #333;
    background: #ffffff;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    transition: all 0.3s ease;
    outline: none;
    height: 39px;
    border-radius: 50px !important;
}

.checkout-form-input:focus {
    background: #fff;
    border-color: #0053f2;
    box-shadow: 0 0 0 4px rgba(0, 83, 242, 0.1);
}

.checkout-form-input::placeholder {
    color: #999;
    font-size: 14px;
}

.checkout-form-input:disabled {
    background: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Checkout Form Textarea */
.checkout-form-textarea {
    min-height: 100px;
    resize: vertical;
    font-family: inherit;
    line-height: 1.6;
    border-radius: 25px !important;
}

/* Checkout Form Alert */
.checkout-form-alert {
    display: flex;
    align-items: center;
    margin-top: 8px;
    font-size: 13px;
    color: #dc3545;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.checkout-form-alert.opacity-0 {
    opacity: 0;
    visibility: hidden;
}

.checkout-form-alert.opacity-100 {
    opacity: 1;
    visibility: visible;
}

.checkout-form-alert i {
    font-size: 14px;
    margin-right: 4px;
}

/* Checkout Form Footer */
.checkout-form-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.checkout-form-footer .form-check {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkout-form-footer .form-check-input {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    border: 2px solid #ddd;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.checkout-form-footer .form-check-input:checked {
    background-color: #0053f2;
    border-color: #0053f2;
}

.checkout-form-footer .form-check-label {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin: 0;
}

.checkout-form-footer .form-check-label i {
    font-size: 16px;
    color: #0053f2;
}

/* Checkout Info Alert */
.checkout-info-alert {
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f7ff 100%);
    border-left: 4px solid #0053f2;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #1a4d7a;
    line-height: 1.6;
}

.checkout-info-alert i {
    font-size: 20px;
    color: #0053f2;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Select Picker Styling for Checkout */
.checkout-form-input.selectpicker {
    background: #fafafa;
}

.checkout-form-input.selectpicker:focus {
    background: #fff;
}

/* Bootstrap Select Customization */
.bootstrap-select .dropdown-toggle {
    background: #fafafa !important;
    border: 2px solid #e8e8e8 !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    font-size: 15px !important;
    transition: all 0.3s ease !important;
}

.bootstrap-select .dropdown-toggle:focus {
    background: #fff !important;
    border-color: #0053f2 !important;
    box-shadow: 0 0 0 4px rgba(0, 83, 242, 0.1) !important;
}

.bootstrap-select .dropdown-menu {
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid #e0e0e0 !important;
    margin-top: 8px !important;
}

/* Phone Input Styling */
.phone-input-with-country-picker-3,
.phone-input-with-country-picker-2 {
    border: 2px solid #e8e8e8 !important;
    padding: 12px 16px !important;
    transition: all 0.3s ease !important;
}

.phone-input-with-country-picker-3:focus,
.phone-input-with-country-picker-2:focus {
    background: #fff !important;
    border-color: #0053f2 !important;
    box-shadow: 0 0 0 4px rgba(0, 83, 242, 0.1) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .checkout-section-card {
        padding: 20px;
        border-radius: 12px;
    }

    .checkout-section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .checkout-section-title {
        font-size: 18px;
    }

    .saved-address-dropdown {
        min-width: 100%;
    }

    .checkout-form-input {
        padding: 10px 14px;
        font-size: 14px;
    }

    .checkout-info-alert {
        padding: 12px 16px;
        font-size: 13px;
    }
}

/* Scrollbar Styling for Saved Address Dropdown */
.scroll-bar-saved-address::-webkit-scrollbar {
    width: 6px;
}

.scroll-bar-saved-address::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.scroll-bar-saved-address::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

.scroll-bar-saved-address::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* ============================================
   PAYMENT PAGE STYLES
   ============================================ */

.payment-methods-container {
    padding: 0;
}

/* Payment Method Card */
.payment-method-card {
    background: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.payment-method-card:hover {
    border-color: #0053f2;
    box-shadow: 0 4px 12px rgba(0, 83, 242, 0.1);
    transform: translateY(-2px);
}

.payment-method-card:has(.payment-method-radio:checked) {
    border-color: #0053f2;
    background: #f0f7ff;
    box-shadow: 0 4px 16px rgba(0, 83, 242, 0.15);
}

/* Payment Method Label */
.payment-method-label {
    display: block;
    cursor: pointer;
    margin: 0;
    padding: 0;
}

.payment-method-radio {
    display: none;
}

/* Payment Method Content */
.payment-method-content {
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 16px;
    position: relative;
}

.payment-method-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.payment-method-icon i {
    font-size: 28px;
    color: #0053f2;
}

.payment-method-icon img {
    max-width: 40px;
    max-height: 40px;
    object-fit: contain;
}

.payment-method-card:has(.payment-method-radio:checked) .payment-method-icon {
    background: linear-gradient(135deg, #0053f2 0%, #4a95ff 100%);
    box-shadow: 0 4px 12px rgba(0, 83, 242, 0.3);
}

.payment-method-card:has(.payment-method-radio:checked) .payment-method-icon i {
    color: #fff;
}

.payment-method-info {
    flex: 1;
    min-width: 0;
}

.payment-method-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
    text-transform: capitalize;
}

.payment-method-desc {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.payment-method-check {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.payment-method-check i {
    font-size: 20px;
    color: #0053f2;
}

.payment-method-card:has(.payment-method-radio:checked) .payment-method-check {
    opacity: 1;
    transform: scale(1);
    background: #0053f2;
}

.payment-method-card:has(.payment-method-radio:checked) .payment-method-check i {
    color: #fff;
}

/* Payment Methods Quick Section */
.payment-methods-quick {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Payment Methods Online Section */
.payment-methods-online {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Payment Methods Divider */
.payment-methods-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 32px 0 24px 0;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e8e8e8, transparent);
}

.divider-text {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.divider-text i {
    font-size: 18px;
}

/* Offline Payment Methods */
.payment-method-offline {
    margin-top: 0;
}

.offline-payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px;
    background: #fafafa;
    border-radius: 8px;
    margin-top: 16px;
}

.offline-payment-method-btn {
    padding: 12px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    background: #fff;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.offline-payment-method-btn:hover {
    border-color: #0053f2;
    background: #f0f7ff;
    color: #0053f2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 83, 242, 0.1);
}

.offline-payment-method-btn.active {
    border-color: #0053f2;
    background: #0053f2;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .payment-method-content {
        padding: 16px;
        gap: 12px;
    }

    .payment-method-icon {
        width: 48px;
        height: 48px;
    }

    .payment-method-icon i {
        font-size: 24px;
    }

    .payment-method-name {
        font-size: 15px;
    }

    .payment-method-desc {
        font-size: 12px;
    }

    .payment-methods-divider {
        margin: 24px 0 20px 0;
    }

    .divider-text {
        font-size: 13px;
    }

    .offline-payment-methods {
        gap: 8px;
    }

    .offline-payment-method-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* Map Address Alert - Compatibility */
.map-address-alert {
    display: flex;
    align-items: center;
    margin-top: 8px;
    font-size: 13px;
    color: #dc3545;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.map-address-alert.opacity-0 {
    opacity: 0;
    visibility: hidden;
}

.map-address-alert.opacity-100 {
    opacity: 1;
    visibility: visible;
}

/* Billing Address Form Wrapper - Hidden when same as shipping */
.billing-address-form-wrapper {
    transition: all 0.3s ease;
    overflow: hidden;
}

.billing-address-form-wrapper[style*="display: none"],
.billing-address-form-wrapper.hidden {
    display: none !important;
}

/* Hide billing form when checkbox is checked (initial state) */
#same_as_shipping_address:checked ~ .checkout-section-header ~ .billing-info-alert,
#same_as_shipping_address:checked ~ .checkout-section-header ~ .billing-address-form-wrapper {
    display: none !important;
}

/* Alternative selector for when checkbox is in header */
.checkout-section-header:has(#same_as_shipping_address:checked) ~ .billing-info-alert,
.checkout-section-header:has(#same_as_shipping_address:checked) ~ .billing-address-form-wrapper {
    display: none !important;
}

.billing-info-alert {
    transition: all 0.3s ease;
}

.billing-info-alert[style*="display: none"],
.billing-info-alert.hidden {
    display: none !important;
}

/* ============================================
   CHECKOUT STEPS STYLES
   ============================================ */

.checkout-steps-wrapper {
    background: #fff;
    border-radius: 16px;
    padding: 17px 24px;
    margin-bottom: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.checkout-steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

/* Progress Line */
.checkout-steps-progress-line {
    position: absolute;
    top: 21px;
    left: 15%;
    right: 15%;
    height: 4px;
    background: #e8e8e8;
    border-radius: 2px;
    z-index: 1;
    overflow: hidden;
}

.checkout-steps-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #0053f2 0%, #4a95ff 100%);
    border-radius: 2px;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px rgba(0, 83, 242, 0.3);
}

/* Step Item */
.checkout-step-item {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    justify-content: center;
}

.checkout-step-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
}

.checkout-step-link.disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.checkout-step-link:hover:not(.disabled) {
    transform: translateY(-2px);
}

/* Step Icon Wrapper */
.checkout-step-icon-wrapper {
    margin-bottom: 12px;
    position: relative;
}

.checkout-step-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f5f5f5;
    border: 3px solid #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.checkout-step-icon i {
    font-size: 24px;
    color: #999;
    transition: all 0.3s ease;
}

/* Active Step */
.checkout-step-item.active .checkout-step-icon {
    background: linear-gradient(135deg, #0053f2 0%, #4a95ff 100%);
    border-color: #0053f2;
    box-shadow: 0 4px 16px rgba(0, 83, 242, 0.3);
    transform: scale(1.1);
}

.checkout-step-item.active .checkout-step-icon i {
    color: #fff;
    font-size: 26px;
}

/* Completed Step */
.checkout-step-item.completed .checkout-step-icon {
    background: linear-gradient(135deg, #0800ff 0%, #6dadff 100%);
    border-color: #acadff;
    box-shadow: 0 4px 16px rgb(52 40 167 / 39%);
}
.checkout-step-item.completed .checkout-step-icon i {
    color: #fff;
    font-size: 20px;
}
.checkout_details>.px-3.px-md-3.mb-4 {
    padding: 0px !important;
}
/* Step Content */
.checkout-step-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.checkout-step-number {
    font-size: 12px;
    font-weight: 700;
    color: #999;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: none;
}

.checkout-step-label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
    line-height: 1.3;
}

/* Active Step Content */
.checkout-step-item.active .checkout-step-number {
    color: #0053f2;
}

.checkout-step-item.active .checkout-step-label {
    color: #0053f2;
    font-weight: 700;
}

/* Completed Step Content */
.checkout-step-item.completed .checkout-step-number {
    color: #28a745;
    display: none;
}

.checkout-step-item.completed .checkout-step-label {
    color: #0b00ff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .checkout-steps-wrapper {
        padding: 24px 16px;
        border-radius: 12px;
    }

    .checkout-steps-container {
        flex-direction: column;
        gap: 24px;
    }

    .checkout-steps-progress-line {
        display: none;
    }

    .checkout-step-item {
        width: 100%;
    }

    .checkout-step-link {
        flex-direction: row;
        width: 100%;
        text-align: left;
        padding: 12px;
        border-radius: 12px;
        background: #fafafa;
    }

    .checkout-step-item.active .checkout-step-link {
        background: #f0f7ff;
    }

    .checkout-step-item.completed .checkout-step-link {
        background: #f0fff4;
    }

    .checkout-step-icon-wrapper {
        margin-bottom: 0;
        margin-right: 16px;
    }

    .checkout-step-icon {
        width: 48px;
        height: 48px;
    }

    .checkout-step-icon i {
        font-size: 20px;
    }

    .checkout-step-item.active .checkout-step-icon {
        transform: scale(1);
    }

    .checkout-step-content {
        flex: 1;
        text-align: left;
        align-items: flex-start;
    }

    .checkout-step-label {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .checkout-steps-wrapper {
        padding: 20px 12px;
    }

    .checkout-step-icon {
        width: 40px;
        height: 40px;
    }

    .checkout-step-icon i {
        font-size: 18px;
    }

    .checkout-step-item.active .checkout-step-icon i {
        font-size: 20px;
    }

    .checkout-step-label {
        font-size: 12px;
    }

    .checkout-step-number {
        font-size: 11px;
    }
}