/* Shopping Cart Styles */
.cart-container {
    position: relative;
    display: inline-block;
}

.cart-btn {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    position: relative;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    font-weight: 700;
    display: none;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 350px;
    background: linear-gradient(145deg, rgba(17, 24, 39, 0.98), rgba(30, 41, 59, 0.98));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 10px;
}

.cart-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cart-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: rgba(17, 24, 39, 0.98);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-bottom: none;
    border-right: none;
    transform: rotate(45deg);
}

.cart-header {
    padding: 1rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    color: #e2e8f0;
    font-weight: 600;
}

.cart-items {
    max-height: 300px;
    overflow-y: auto;
    padding: 0.5rem 0;
}

.cart-item {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item:last-child {
    border-bottom: none;
}

.item-info {
    flex: 1;
}

.item-name {
    color: #e2e8f0;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.item-price {
    color: #3b82f6;
    font-weight: 600;
    font-size: 0.85rem;
}

.item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-btn {
    width: 24px;
    height: 24px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
}

.quantity {
    color: #e2e8f0;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.remove-btn {
    width: 24px;
    height: 24px;
    border: 1px solid rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
}

.remove-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.5);
}

.empty-cart {
    padding: 2rem 1rem;
    text-align: center;
    color: #94a3b8;
    font-style: italic;
}

.cart-footer {
    padding: 1rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.cart-total {
    color: #3b82f6;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: white;
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Checkout Modal */
.checkout-modal, .success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.checkout-modal.show, .success-modal.show {
    opacity: 1;
}

.checkout-content, .success-content {
    background: linear-gradient(145deg, rgba(17, 24, 39, 0.95), rgba(30, 41, 59, 0.95));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.success-content {
    max-width: 400px;
    text-align: center;
    padding: 2rem;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.checkout-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout-header h2 {
    color: #e2e8f0;
    margin: 0;
}

.close-checkout {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.close-checkout:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.checkout-body {
    padding: 1.5rem;
}

.order-summary, .customer-info, .payment-info {
    margin-bottom: 2rem;
}

.order-summary h3, .customer-info h3, .payment-info h3 {
    color: #3b82f6;
    margin-bottom: 1rem;
    font-weight: 600;
}

.order-items {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.order-item:last-child {
    border-bottom: none;
}

.item-name {
    color: #e2e8f0;
    flex: 1;
}

.item-qty {
    color: #94a3b8;
    margin: 0 1rem;
}

.item-total {
    color: #3b82f6;
    font-weight: 600;
}

.order-total {
    text-align: right;
    color: #3b82f6;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.form-row {
    margin-bottom: 1rem;
}

.form-row input {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    background: rgba(59, 130, 246, 0.05);
    color: #e2e8f0;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-row input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-row input::placeholder {
    color: #94a3b8;
}

#card-element {
    padding: 12px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    background: rgba(59, 130, 246, 0.05);
    transition: all 0.3s ease;
}

#card-element:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

#card-errors {
    color: #ef4444;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.checkout-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.btn-secondary {
    background: rgba(107, 114, 128, 0.2);
    color: #9ca3af;
    border: 1px solid rgba(107, 114, 128, 0.3);
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(107, 114, 128, 0.3);
    color: #d1d5db;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: all 0.3s ease;
    z-index: 3000;
}

.cart-notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.notification-icon {
    font-size: 1.2rem;
}

/* Add to Cart Buttons */
.add-to-cart-btn {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

.quantity-label {
    color: #e2e8f0;
    font-weight: 500;
}

.quantity-input {
    width: 60px;
    padding: 8px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 6px;
    background: rgba(59, 130, 246, 0.05);
    color: #e2e8f0;
    text-align: center;
}

/* Payment Method Selection */
.payment-method-selection {
    margin-bottom: 2rem;
}

.payment-method-selection h3 {
    color: #e2e8f0;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: center;
    font-weight: 600;
}

/* Payment Type Selection */
.payment-type-selection {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-type-option {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.payment-type-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.payment-type-option:hover::before {
    left: 100%;
}

.payment-type-option:hover,
.payment-type-option.active {
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border-color: rgba(59, 130, 246, 0.6);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.3);
}

.payment-type-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-type-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.payment-type-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.payment-type-name {
    color: #e2e8f0;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Crypto and Venmo Sections */
.crypto-section,
.venmo-section {
    margin-top: 1.5rem;
}

.crypto-section h4,
.venmo-section h4 {
    color: #e2e8f0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-align: center;
    font-weight: 600;
}

/* Crypto Payment Styles */
.crypto-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.crypto-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.crypto-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.crypto-option:hover::before {
    left: 100%;
}

.crypto-option:hover,
.crypto-option.active {
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border-color: rgba(59, 130, 246, 0.6);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.3);
}

.crypto-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.crypto-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.crypto-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.crypto-name {
    color: #e2e8f0;
    font-weight: 600;
    font-size: 1rem;
}

.crypto-symbol {
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 500;
    background: rgba(59, 130, 246, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
}

.crypto-info {
    text-align: center;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 1rem;
}

.crypto-info p {
    color: #10b981;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Crypto Payment Modal */
.crypto-payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.crypto-payment-modal.show {
    opacity: 1;
}

.crypto-payment-content {
    background: linear-gradient(145deg, rgba(17, 24, 39, 0.95), rgba(30, 41, 59, 0.95));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.crypto-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.crypto-header h2 {
    color: #e2e8f0;
    margin: 0;
}

.crypto-timer {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-family: monospace;
    font-size: 1.1rem;
}

.crypto-body {
    padding: 1.5rem;
}

.payment-summary {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.payment-summary h3 {
    color: #3b82f6;
    margin-bottom: 1rem;
    font-weight: 600;
}

.crypto-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #e2e8f0;
}

.crypto-detail:last-child {
    margin-bottom: 0;
    font-weight: 700;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.payment-instructions h3 {
    color: #3b82f6;
    margin-bottom: 1rem;
    font-weight: 600;
}

.instruction-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.step-number {
    background: #3b82f6;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.crypto-address-container {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
}

.crypto-address {
    flex: 1;
    color: #3b82f6;
    font-family: monospace;
    font-weight: 600;
    word-break: break-all;
    line-height: 1.4;
}

.copy-btn {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.payment-warnings {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin: 1.5rem 0;
}

.warning-item {
    color: #fca5a5;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.warning-item:last-child {
    margin-bottom: 0;
}

.order-info {
    background: rgba(107, 114, 128, 0.1);
    border: 1px solid rgba(107, 114, 128, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1.5rem;
}

.order-info p {
    color: #9ca3af;
    margin: 0.25rem 0;
    font-family: monospace;
    font-size: 0.9rem;
}

.crypto-actions {
    padding: 1.5rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cart-dropdown {
        width: 300px;
        right: -50px;
    }
    
    .checkout-content, .crypto-payment-content {
        width: 95%;
        margin: 1rem;
    }
    
    .checkout-actions, .crypto-actions {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
    }
    
    .payment-options {
        gap: 0.5rem;
    }
    
    .crypto-address-container {
        flex-direction: column;
    }
    
    .copy-btn {
        width: 100%;
    }
}

/* Payment Instructions Modal Styles */
.payment-instructions-modal,
.discord-instructions-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.payment-instructions-modal.show,
.discord-instructions-modal.show {
    opacity: 1;
}

.payment-instructions-content,
.discord-instructions-content {
    background: linear-gradient(145deg, rgba(17, 24, 39, 0.95), rgba(30, 41, 59, 0.95));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    backdrop-filter: blur(20px);
    position: relative;
}

.payment-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.payment-header h2 {
    color: #e2e8f0;
    margin: 0;
    font-size: 1.5rem;
}

.order-summary {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.order-summary h3 {
    color: #3b82f6;
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
}

.order-items {
    margin-bottom: 1rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    color: #e2e8f0;
}

.item-name {
    flex: 1;
}

.item-qty {
    margin: 0 1rem;
    color: #94a3b8;
}

.item-total {
    font-weight: 700;
    color: #3b82f6;
}

.order-total {
    padding-top: 1rem;
    border-top: 1px solid rgba(59, 130, 246, 0.3);
    text-align: right;
    color: #e2e8f0;
    font-size: 1.1rem;
}

.payment-method-info {
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.payment-method-info h3 {
    color: #06b6d4;
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
}

.payment-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
    color: #e2e8f0;
}

.payment-detail:last-child {
    margin-bottom: 0;
}

.payment-address {
    font-family: monospace;
    font-weight: 700;
    color: #06b6d4;
    background: rgba(6, 182, 212, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.payment-amount {
    font-weight: 700;
    color: #3b82f6;
    font-size: 1.1rem;
}

.copy-address-container {
    text-align: center;
    margin: 1.5rem 0;
}

.copy-address-btn {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.copy-address-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.payment-steps {
    margin-bottom: 2rem;
}

.payment-steps h3 {
    color: #e2e8f0;
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
}

.payment-steps .step-number {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step span:last-child {
    color: #e2e8f0;
    line-height: 1.5;
}

.payment-actions,
.discord-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.payment-actions .btn-secondary,
.payment-actions .btn-primary,
.discord-actions .btn-secondary,
.discord-actions .btn-discord {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.payment-actions .btn-secondary,
.discord-actions .btn-secondary {
    background: rgba(71, 85, 105, 0.8);
    color: #e2e8f0;
}

.payment-actions .btn-secondary:hover,
.discord-actions .btn-secondary:hover {
    background: rgba(71, 85, 105, 1);
    transform: translateY(-2px);
}

.payment-actions .btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.payment-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

/* Discord Instructions Modal */
.success-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.success-header h2 {
    color: #10b981;
    margin: 0;
    font-size: 1.5rem;
}

.next-steps h3 {
    color: #e2e8f0;
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
}

.next-steps p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.discord-step {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 12px;
}

.discord-step .step-content h4 {
    color: #5865F2;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.discord-step .step-content p {
    color: #e2e8f0;
    margin: 0 0 0.5rem 0;
}

.discord-step .step-content ul {
    margin: 0.5rem 0 0 1rem;
    color: #94a3b8;
}

.discord-step .step-content li {
    margin-bottom: 0.25rem;
}

.support-info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.support-info h3 {
    color: #3b82f6;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.support-info p {
    color: #e2e8f0;
    margin: 0;
}

.discord-actions .btn-discord {
    background: #5865F2;
    color: white;
}

.discord-actions .btn-discord:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4);
}

/* Crypto Payment Info Styles */
.crypto-payment-info {
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.crypto-header-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.3);
}

.crypto-icon-large {
    font-size: 3rem;
}

.crypto-details h3 {
    color: #e2e8f0;
    margin: 0 0 0.5rem 0;
    font-size: 1.4rem;
    font-weight: 700;
}

.crypto-details .crypto-symbol {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: white;
    padding: 0.3rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.payment-address-section {
    margin-bottom: 2rem;
}

.payment-address-section label {
    display: block;
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.address-container {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    background: rgba(15, 20, 25, 0.8);
    border: 2px solid rgba(59, 130, 246, 0.4);
    border-radius: 12px;
    padding: 1rem;
}

.address-container .payment-address {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #06b6d4;
    font-weight: 600;
    word-break: break-all;
    background: none;
    padding: 0;
    border-radius: 0;
}

.copy-btn {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: white;
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.copy-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.amount-section {
    text-align: center;
}

.amount-section label {
    display: block;
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.amount-display {
    font-size: 2rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.conversion-note {
    color: #94a3b8;
    font-size: 0.85rem;
    margin: 0;
    font-style: italic;
}

.order-summary-mini {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.total-amount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.total-amount span:first-child {
    color: #94a3b8;
    font-size: 1rem;
}

.total-amount .amount {
    color: #8b5cf6;
    font-size: 1.3rem;
    font-weight: 700;
}

.item-count {
    color: #8b5cf6;
    font-size: 0.9rem;
    opacity: 0.8;
}

.payment-steps {
    margin-bottom: 0;
}

.payment-steps .step {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.payment-actions .btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.payment-actions .btn-primary span:first-child {
    font-size: 1.2rem;
}

/* Venmo Styles */
.venmo-info {
    text-align: center;
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    padding: 2rem;
}

.venmo-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.venmo-info h4 {
    color: #e2e8f0;
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
    font-weight: 700;
}

.venmo-info p {
    color: #94a3b8;
    margin: 0.5rem 0;
    font-size: 1rem;
}

.venmo-info strong {
    color: #3b82f6;
    font-weight: 700;
    background: rgba(59, 130, 246, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
}

/* Venmo Payment Info Modal */
.venmo-payment-info {
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.venmo-header-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.3);
}

.venmo-icon-large {
    font-size: 3rem;
}

.venmo-details h3 {
    color: #e2e8f0;
    margin: 0 0 0.5rem 0;
    font-size: 1.4rem;
    font-weight: 700;
}

.venmo-username {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: white;
    padding: 0.3rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
} 