.mobile-checkout-version {
    max-width: 900px;
    margin: 0 auto;
    padding: 15px;
    background: #f4f4f4;
}

.mobile-step-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.mobile-step-number {
    background: #00d100;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 10px;
    font-size: 16px;
}

.mobile-step-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.mobile-plans-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.mobile-plan-radio {
    display: block;
    cursor: pointer;
}

.mobile-plan-radio input {
    display: none;
}

.mobile-plan-item {
    background: white;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    border: 2px solid transparent;
}

.mobile-plan-radio input:checked + .mobile-plan-item {
    border-color: blue;
    box-shadow: 0 0 10px rgba(0,0,255,0.1);
}

.mobile-plan-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.mobile-plan-name {
    font-weight: 500;
}

.mobile-plan-price {
    font-weight: bold;
}

.mobile-plan-price span {
    font-size: 0.8em;
    color: #666;
    font-weight: normal;
}

.mobile-save-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background: white;
    padding: 3px 10px;
    border-radius: 15px;
    border: 1px solid #ddd;
    font-size: 12px;
}

.mobile-save-badge.green {
    background: #00ff00;
    color: white;
    border: none;
}

.mobile-checkout-box {
    background: transparent;
    border: none;
    max-width: 500px;
    margin: 0 auto;
}

.mobile-payment-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.mobile-payment-method {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    background: white;
    border: none;
    text-align: left;
    font-size: 16px;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #333;
}

.mobile-payment-method i {
    margin-right: 10px;
    width: 20px;
    font-size: 18px;
}

.mobile-payment-method.active {
    background: #8080ff;
    color: white;
}

.mobile-payment-method.active::after {
    content: "✓";
    margin-left: auto;
}

.mobile-payment-method.disabled {
    background: #f5f5f5;
    opacity: 0.7;
    cursor: not-allowed;
    color: #999;
}
.mobile-payment-method i {
    margin-right: 10px;
    width: 20px;
}

.mobile-device-control {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: 8px;
    margin: 15px 0;
}

.mobile-counter {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-counter button {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    border: 1px solid #ddd;
    background: #e04e7f;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.mobile-counter input {
    width: 30px;
    text-align: center;
    border: none;
    font-size: 16px;
    background: transparent;
}

.mobile-plan-summary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    margin: 15px 0;
}

.mobile-plan-icon {
    color: #666;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.mobile-plan-icon i {
    font-size: 20px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.mobile-summary-text {
    flex-grow: 1;
    font-size: 15px;
}

.mobile-summary-price {
    font-weight: bold;
    font-size: 1.1em;
}

.mobile-checkout-button {
    width: 100%;
    padding: 15px;
    background: #00d100;
    color: white;
    border: none;
    border-radius: 25px;
    margin: 20px 0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.mobile-guarantee-text {
    text-align: center;
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mobile-guarantee-text i {
    color: #00d100;
}

.fab, .fas {
    font-family: "Font Awesome 5 Free", sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.fab {
    font-family: "Font Awesome 5 Brands", sans-serif;
}
/* Mobile version styles */
.mobile-payment-method .custom-p-logo,
.mobile-payment-method .custom-cc-logo,
.mobile-payment-method .custom-crypto-logo {
    margin-right: 10px;
}

.mobile-payment-method.active .custom-p-logo,
.mobile-payment-method.active .custom-cc-logo,
.mobile-payment-method.active .custom-crypto-logo {
    background-color: white;
}

.mobile-payment-method.active .custom-p-logo {
    color: #8080ff;
}

.mobile-payment-method.active .custom-cc-logo {
    color: #2C2E35;
}

.mobile-payment-method.active .custom-cc-logo::after {
    background-color: #2C2E35;
    opacity: 0.7;
}

.mobile-payment-method.active .custom-crypto-logo {
    color: #F7931A;
}

.mobile-payment-method.disabled .custom-p-logo,
.mobile-payment-method.disabled .custom-cc-logo,
.mobile-payment-method.disabled .custom-crypto-logo {
    background-color: #d0d0d0;
    color: #999;
    opacity: 0.7;
}

.mobile-payment-method.disabled .custom-cc-logo::after {
    background-color: #999;
    opacity: 0.5;
}