/*
Theme Name: Hello Elementor Child
Theme URI: https://dein-videofon.de
Description: Hello Elementor Child Theme
Author: dein-videofon
Author URI: https://dein-videofon.de
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

/* ── Cart Drawer: fix white space (max-height override from Customizer) ─── */
.elementor-menu-cart__main {
    max-height: none !important;
    height: 100% !important;
    padding-bottom: 0 !important;
    overflow-y: visible !important;
    box-sizing: border-box !important;
}
/* ──────────────────────────────────────────────────────────────────────── */

/* ── Hide WooCommerce page-level add-to-cart notice ────────────────────── */
.woocommerce-message[role="alert"] {
    display: none !important;
}

/* ── Cart Drawer: Add-to-Cart Notice Strip ──────────────────────────────── */
#dvf-cart-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #e9f7ef;
    border-left: 4px solid #2ecc71;
    color: #1a7a42;
    font-size: 13px;
    font-weight: 600;
    padding: 12px 16px;
    margin: 0 -20px 12px;   /* bleed to edges of __main padding */
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
#dvf-cart-notice.dvf-cart-notice--visible {
    opacity: 1;
    transform: translateY(0);
}
.dvf-cart-notice__icon {
    font-size: 16px;
    flex-shrink: 0;
}
.dvf-cart-notice__text {
    line-height: 1.4;
}

/* ── Cart Drawer: Hide newly added item row ─────────────────────────────── */
.elementor-menu-cart__product.dvf-cart-item--hidden {
    display: none !important;
}
/* ──────────────────────────────────────────────────────────────────────── */


/* -- Single Product: Add to Cart Button ------------------------------- */
.woocommerce div.product form.cart button.single_add_to_cart_button.button.alt {
    background: transparent !important;
    border: 1px solid #2997ff !important;
    border-radius: 50px !important;
    color: #2997ff !important;
    font-family: "Poppins", sans-serif !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 1;
    padding: 14px 21px !important;
    text-transform: uppercase !important;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.woocommerce div.product form.cart button.single_add_to_cart_button.button.alt:hover,
.woocommerce div.product form.cart button.single_add_to_cart_button.button.alt:focus {
    background: #2997ff !important;
    border-color: #2997ff !important;
    color: #ffffff !important;
}
/* ---------------------------------------------------------------------- */

/* PEWC Addons group — hide field sub-headings, keep "Addons" group title */
#pewc-group-6042 .pewc-field-label {
    display: none;
}