/* PIX Payment Sidebar Styles */

.pix-open #pixSidebar {
    transform: translateX(0);
    z-index: 110;
}

.pix-open .cart-overlay {
    opacity: 1;
    visibility: visible;
    z-index: 105;
}

.pix-payment-card {
    background: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

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

.pix-qr-wrapper {
    padding: 0.5rem;
    background: white;
    border-radius: 1rem;
    border: 2px solid #dbeafe;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 0.5rem;
}

.pix-qr-image {
    width: 12rem;
    height: 12rem;
    object-fit: contain;
    border-radius: 0.75rem;
}

.pix-qr-label {
    font-size: 0.625rem;
    color: #94a3b8;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.pix-amount-section {
    text-align: center;
}

.pix-amount-label {
    color: #64748b;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pix-amount-value {
    font-size: 2.25rem;
    font-weight: 900;
    color: #2563eb;
    margin-top: 0.25rem;
}

.pix-info-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pix-code-box {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    position: relative;
}

.pix-code-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.pix-code-header i {
    font-size: 0.75rem;
    color: #94a3b8;
}

.pix-code-label {
    font-size: 0.625rem;
    color: #475569;
    font-weight: 700;
    text-transform: uppercase;
}

.pix-code-value {
    font-size: 0.875rem;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: #1e293b;
    word-break: break-all;
    padding-right: 6rem;
}

.pix-btn-copy {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.5rem 0.75rem;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    transition: all 0.2s;
}

.pix-btn-copy:active {
    transform: translateY(-50%) scale(0.95);
}

.pix-recipient-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #dbeafe;
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid #93c5fd;
}

.pix-recipient-box i {
    font-size: 1.25rem;
    color: #2563eb;
}

.pix-recipient-info {
    text-align: left;
}

.pix-recipient-label {
    font-size: 0.625rem;
    color: #3b82f6;
    font-weight: 700;
    text-transform: uppercase;
}

.pix-recipient-name {
    font-size: 0.75rem;
    font-weight: 900;
    color: #1e3a8a;
    text-transform: uppercase;
}

.pix-instructions {
    width: 100%;
}

.pix-instructions-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.pix-instructions-title i {
    font-size: 1rem;
    color: #2563eb;
}

.pix-instructions-list {
    font-size: 0.75rem;
    color: #475569;
    list-style: decimal;
    padding-left: 1rem;
    font-weight: 500;
}

.pix-instructions-list li {
    margin: 0.5rem 0;
}

.pix-secure-badge {
    margin-top: 1rem;
    width: 100%;
    max-width: 280px;
}

.pix-secure-badge img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}