/**
 * Craftando PIX Inter Blocks Styles
 * 
 * Estilos para o método de pagamento PIX Inter nos blocks do WooCommerce
 */

.wc-block-checkout__payment-method--craftando-pix-inter {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    background-color: #f9f9f9;
}

.wc-block-checkout__payment-method--craftando-pix-inter .wc-block-components-radio-control__label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #333;
}

.craftando-pix-inter-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
}

.craftando-pix-inter-description {
    margin-top: 12px;
    padding: 12px;
    background-color: #fff;
    border-left: 4px solid #00bb2d;
    border-radius: 4px;
    font-size: 14px;
    color: #555;
}

.craftando-pix-inter-steps {
    margin-top: 12px;
    padding: 0;
    list-style: none;
}

.craftando-pix-inter-steps li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 13px;
    color: #666;
}

.craftando-pix-inter-steps li:last-child {
    border-bottom: none;
}

.craftando-pix-inter-steps li:before {
    content: "✓";
    color: #00bb2d;
    font-weight: bold;
    margin-right: 8px;
}

.craftando-pix-inter-warning {
    margin-top: 12px;
    padding: 10px;
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 4px;
    font-size: 12px;
    color: #856404;
}

.craftando-pix-inter-important {
    font-weight: bold;
    color: #d63031;
}

/* Animações */
.craftando-pix-inter-fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .wc-block-checkout__payment-method--craftando-pix-inter {
        padding: 12px;
    }
    
    .craftando-pix-inter-description {
        font-size: 13px;
    }
    
    .craftando-pix-inter-steps li {
        font-size: 12px;
    }
}

/* Estados de foco e hover */
.wc-block-checkout__payment-method--craftando-pix-inter:hover {
    border-color: #00bb2d;
    box-shadow: 0 2px 4px rgba(0, 187, 45, 0.1);
}

.wc-block-checkout__payment-method--craftando-pix-inter.is-active {
    border-color: #00bb2d;
    background-color: #f0fff4;
}

/* Acessibilidade */
.craftando-pix-inter-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Componentes específicos */
.craftando-pix-inter-loading {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #00bb2d;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.craftando-pix-inter-success {
    color: #00bb2d;
    font-weight: bold;
}

.craftando-pix-inter-error {
    color: #d63031;
    font-weight: bold;
}

/* Melhorias para o checkout block */
.wc-block-components-checkout-step__content .craftando-pix-inter-description {
    margin-top: 8px;
}

.wc-block-components-payment-method-options .craftando-pix-inter-icon {
    margin-right: 8px;
}