/* CashApp Payment Section Styles */

.cashapp-payment {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.cashapp-payment:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}

.cashapp-header {
    margin-bottom: 1.5rem;
}

.cashapp-header h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.cashapp-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.cashapp-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.cashapp-qr-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cashapp-qr-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.cashapp-qr-image {
    width: 250px;
    height: 250px;
    max-width: 100%;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.cashapp-qr-image:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.cashapp-qr-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cashapp-qr-placeholder {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
    padding: 2rem;
}

.cashapp-info-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cashapp-cashtag {
    background: var(--bg-darker);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin: 1rem 0;
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 1px;
    min-width: 200px;
    max-width: 100%;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.cashapp-instructions {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 1rem;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.cashapp-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(0, 240, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.cashapp-note p {
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.6;
    font-size: 0.9rem;
}

.cashapp-note strong {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .cashapp-payment {
        padding: 1.5rem 1rem;
        margin: 1.5rem 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .cashapp-header h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .cashapp-header p {
        font-size: 0.85rem;
    }

    .cashapp-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .cashapp-qr-section {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .cashapp-qr-image {
        width: 200px;
        height: 200px;
        max-width: 90%;
        box-sizing: border-box;
    }
    
    .cashapp-info-section {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .cashapp-cashtag {
        font-size: 1.5rem;
        padding: 1rem 1.5rem;
        min-width: auto;
        width: 100%;
        max-width: 100%;
        word-break: break-word;
        overflow-wrap: break-word;
        box-sizing: border-box;
    }

    .cashapp-instructions {
        width: 100%;
        max-width: 100%;
        padding: 0 0.5rem;
        box-sizing: border-box;
    }

    .cashapp-note {
        font-size: 0.85rem;
        padding: 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .cashapp-note p {
        font-size: 0.85rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

@media (max-width: 480px) {
    .cashapp-payment {
        padding: 1.25rem 0.75rem;
        margin: 1rem 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .cashapp-header h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .cashapp-header p {
        font-size: 0.8rem;
    }

    .cashapp-content {
        gap: 1.25rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .cashapp-qr-image {
        width: 180px;
        height: 180px;
        max-width: 85%;
        box-sizing: border-box;
    }

    .cashapp-cashtag {
        font-size: 1.15rem;
        padding: 0.875rem 1rem;
        min-width: auto;
        width: 100%;
        max-width: 100%;
        letter-spacing: 0.5px;
        word-break: break-word;
        overflow-wrap: break-word;
        box-sizing: border-box;
    }

    .cashapp-instructions {
        font-size: 0.8rem;
        padding: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .cashapp-note {
        font-size: 0.8rem;
        padding: 0.875rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .cashapp-note p {
        font-size: 0.8rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

