.select2-selection__arrow {
    display: none;
}

.mySelect {
    display: grid;
    height: auto !important;
}

.crypto-icon {
    margin-right: 5px;
}

.card-methods-wrapper {
    margin-top: 30px;
    padding: 20px 22px;
    border-radius: 20px;
    background: rgba(14, 14, 19, 0.92);
    border: 1px solid rgba(255, 162, 0, 0.18);
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.48);
}

.card-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.card-method-option {
    flex: 1 1 calc(50% - 12px);
    min-width: 140px;
    padding: 14px 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(18, 18, 26, 0.9);
    color: #f7f7fb;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.25s ease;
    cursor: pointer;
}

.card-method-option span {
    pointer-events: none;
}

.card-method-option:hover {
    border-color: rgba(255, 162, 0, 0.55);
    box-shadow: 0 18px 32px rgba(255, 162, 0, 0.18);
    transform: translateY(-2px);
    color: #fff;
}

.card-method-option.active {
    background: linear-gradient(135deg, #ffc85d, var(--primary));
    border-color: transparent;
    color: #1b1408;
    box-shadow: 0 20px 40px rgba(255, 162, 0, 0.35);
}

@media (max-width: 767px) {
    .card-method-option {
        flex: 1 1 100%;
    }
}

.payment-tab-item-disabled {
    pointer-events: none;
    opacity: 0.6;
}

.flag-icon {
    width: 20px;
    height: 20px;
}

.badge {
    margin-left: 5px;
    background: #28a745;
}

.payment .row.equal-height {
    align-items: stretch;
    row-gap: 2rem;
}

.payment .product-information,
.payment .payment-content {
    height: 100%;
}

.payment .product-information {
    background-color: #0e0e13;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.payment .product-information-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 30px 80px 30px;
}

.payment-tab-wrapper {
    position: relative;
    display: inline-block;
}

.payment-tab {
    background: #16141d;
    border-radius: 16px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 10px;
    display: flex;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: visible;
    height: 70px;
}

.payment-tab-item {
    background: transparent;
    border: none;
    color: #cfd2de;
    padding: 0 24px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 100%;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 15% 100%);
    border-radius: 16px;
}

.payment-tab-item:first-child {
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
    margin-right: -15px;
    border-radius: 16px 0 0 16px;
}

.payment-tab-item:last-child {
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    margin-left: -15px;
    border-radius: 0 16px 16px 0;
}

.payment-tab-item:hover {
    color: #fff;
    background: rgba(229, 90, 43, 0.15);
    transform: translateY(-2px);
}

.payment-tab-item-active {
    background: linear-gradient(135deg, #ffd27a, var(--primary)) !important;
    color: #1b1408 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 15px 30px rgba(255, 162, 0, 0.32);
}

.payment-tab-item-active::before {
    content: '✓';
    font-weight: bold;
    font-size: 14px;
}

.payment-tab-item-card:not(.payment-tab-item-active)::before {
    content: '💳';
    font-size: 22px;
    opacity: 0.65;
}

.payment-tab-item-crypto:not(.payment-tab-item-active)::before {
    content: '₿';
    font-size: 22px;
    opacity: 0.65;
}

.payment-tab-item-crypto {
    position: relative;
}

.crypto-discount-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    color: #041014;
    font-size: 13px;
    padding: 5px 12px;
    border-radius: 999px;
    font-weight: bold;
    border: 1px solid #fff;
    z-index: 5;
    animation: bounce 2s infinite;
    box-shadow: 0 8px 20px rgba(8, 187, 97, 0.35);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.crypto-discount-badge.card-active {
    background: linear-gradient(135deg, var(--success), #0adf7d);
}

.crypto-discount-badge.crypto-active {
    background: linear-gradient(135deg, #ffc85d, var(--primary));
    box-shadow: 0 10px 22px rgba(255, 162, 0, 0.4);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-3px); }
    60% { transform: translateY(-2px); }
}

.product-information-price {
    background: linear-gradient(135deg, #ffd27a, var(--primary));
    color: white !important;
    padding: 15px;
    border-radius: 12px;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 25px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    border: 2px solid transparent;
    position: absolute;
    bottom: 15px;
    left: 50px;
    right: 50px;
    overflow: hidden;
}

@media only screen and (max-width: 1024px) {
    .product-information-price {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        width: 100% !important;
        margin: 20px 0 !important;
        display: block !important;
    }
}

@media only screen and (max-width: 480px) {
    .product-information-price {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        width: 100% !important;
        margin: 20px 0 !important;
        display: block !important;
    }
}

.product-information-price::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.product-information-price span {
    color: #fff !important;
    font-size: 25px;
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.secure-card-section {
    background: #13111b;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 20px;
    margin-top: 30px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.secure-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.secure-card-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
}

.secure-card-alert {
    background: linear-gradient(135deg, #2847d5, #3655e5);
    border-radius: 14px;
    padding: 15px;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(40, 71, 213, 0.35);
    display: flex;
    align-items: center;
    gap: 12px;
}

.secure-card-alert svg {
    flex-shrink: 0;
}

.secure-card-note {
    margin: 18px 0 0;
    color: #d6dae8;
    font-size: 0.95rem;
    text-align: center;
}

.select2-container .select2-selection--single{
    border-radius: 0.375rem !important;
    height: 38px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered{
    line-height: 38px !important;
}

