
        /* Crypto Payment Modal Styles */
.crypto-modal-header {
    background: linear-gradient(135deg, #2d46c9, #561db6);
    color: white;
    border-bottom: none;
}

.crypto-steps {
    position: relative;
}

.crypto-step {
    display: none;
}

.crypto-step.active {
    display: block;
}

.crypto-step-title {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
    font-weight: 600;
}

.crypto-step-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.order-summary-box {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
}

/* Crypto Options */
.crypto-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.crypto-option {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.crypto-option:hover {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(45, 70, 201, 0.1);
}

.crypto-option.active {
    border-color: var(--primary);
    background-color: rgba(45, 70, 201, 0.05);
    box-shadow: 0 0 15px rgba(45, 70, 201, 0.1);
}

.crypto-icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: rgba(45, 70, 201, 0.1);
    margin-right: 15px;
    font-size: 18px;
    color: var(--primary);
}

.crypto-option[data-crypto="btc"] .crypto-icon {
    color: #f7931a;
    background: rgba(247, 147, 26, 0.1);
}

.crypto-option[data-crypto="eth"] .crypto-icon {
    color: #627eea;
    background: rgba(98, 126, 234, 0.1);
}

.crypto-option[data-crypto="usdt"] .crypto-icon {
    color: #26a17b;
    background: rgba(38, 161, 123, 0.1);
}

.crypto-option[data-crypto="xmr"] .crypto-icon {
    color: #ff6600;
    background: rgba(255, 102, 0, 0.1);
}

.crypto-details {
    display: flex;
    flex-direction: column;
}

.crypto-name {
    font-weight: 600;
}

.crypto-ticker {
    font-size: 0.8rem;
    color: #6c757d;
}

/* QR Code Styles */
.qr-container {
    margin: 20px 0;
}

.qr-code-box {
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    display: inline-block;
}

.qr-code-img {
    max-width: 100%;
    height: auto;
}

/* Payment Timer */
.payment-timer {
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 10px;
    display: inline-block;
}

.timer-countdown {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

/* Crypto Info Sidebar */
.crypto-info-sidebar {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    height: 100%;
}

.crypto-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.crypto-feature-icon {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    background: rgba(45, 70, 201, 0.1);
    margin-right: 15px;
    font-size: 14px;
    color: var(--primary);
    flex-shrink: 0;
}

.crypto-feature-text h6 {
    margin-bottom: 5px;
    font-weight: 600;
}

.crypto-feature-text p {
    margin-bottom: 0;
}

/* Price conversion box */
.price-conversion {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
}

/* Copy button tooltip */
.copy-btn {
    position: relative;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .crypto-options {
        grid-template-columns: 1fr;
    }
}