/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

.wpcf7-form label.is-sold {
    opacity: 0.5;
    cursor: not-allowed;
}

.wpcf7-form label.is-sold .wpcf7-list-item-label {
    text-decoration: line-through;
}

.pm-floating-download-button {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 9999;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 16px 22px;

    background: #b8956a; /* beige/goud */
    color: #ffffff;
    text-decoration: none;

    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.043em;
    font-family: 'Henriette';

    border-radius: 0; /* klein afgerond, kan ook 0 */
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
}

.pm-floating-download-button.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pm-floating-download-button:hover {
    background: #a7835b; /* iets donkerder bij hover */
    color: #fff;
}

.pm-download-icon {
    width: 16px;   /* bepaalt grootte */
    height: auto;
    flex-shrink: 0;
    fill: #ffffff; /* match met tekst */
    transform: translateY(1px); /* optische alignment */
}

.pm-floating-download-button {
    display: inline-flex;
    align-items: center;
    gap: 12px; /* ruimte tussen icoon en tekst */
}

body.coming-soon-mode :is(.header-right-toggle, .footer-menu) {
    display: none !important;
}

@media (max-width: 767px) {
    .pm-floating-download-button {
        left: 15px;
        right: 15px;
        bottom: 15px;
        width: auto;
        text-align: center;
    }
}