/**
 * IceStrong Product PDF Generator - Frontend Styles
 * Estilos para o botão de download PDF na página do produto
 */

/* Botão PDF na página do produto */
.icestrong-pdf-button {
    margin: 20px 0;
    padding: 15px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    text-align: center;
}

.pdf-download-btn {
    background-color: rgb(102,81,69) !important;
    color: white !important;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.pdf-download-btn:hover {
    background-color: rgb(82,61,49) !important; /* Cor mais escura para hover */
    color: white !important;
    text-decoration: none;
}

.pdf-download-btn i {
    margin-right: 8px;
}

/* Se quiseres estilizar a aba onde o botão aparece */
.woocommerce-tabs .panel h2 {
    margin-bottom: 15px;
}

/* Loading state (opcional) */
.pdf-download-btn.loading {
    opacity: 0.6;
    cursor: not-allowed;
}

.pdf-download-btn.loading::after {
    content: " (A gerar...)";
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .icestrong-pdf-button {
        margin: 15px 0;
        padding: 10px;
    }
    
    .pdf-download-btn {
        padding: 10px 15px;
        font-size: 14px;
    }
}