.product-files-downloads {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}

.product-file-button {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
}

.product-file-button:hover {
    background-color: #e0e0e0;
    color: #000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.product-file-button .pdf-icon {
    margin-right: 8px;
}

.product-file-button.spec-sheet {
    background-color: #f5f5f5;
    border-color: #ddd;
}

.product-file-button.brochure {
    background-color: #f5f5f5;
    border-color: #ddd;
}

@media (max-width: 768px) {
    .product-files-downloads {
        flex-direction: column;
    }
    
    .product-file-button {
        width: 100%;
        justify-content: center;
    }
}