/* Cart dropdown: disable hover, use click only */
#header-outer .nectar-woo-cart:hover .widget_shopping_cart,
#header-outer .nectar-woo-cart.sfHover .widget_shopping_cart {
    opacity: 0 !important;
    pointer-events: none !important;
    display: none !important;
}
#header-outer .nectar-woo-cart .widget_shopping_cart.open,
#header-outer .nectar-woo-cart.sfHover .widget_shopping_cart.open {
    opacity: 1 !important;
    pointer-events: auto !important;
    display: block !important;
}
#header-outer .nectar-woo-cart,
#header-outer .nectar-woo-cart *,
#header-outer .nectar-woo-cart .cart-menu-wrap,
#header-outer .nectar-woo-cart .cart-menu,
#header-outer .nectar-woo-cart .cart-contents,
#header-outer .nectar-woo-cart .cart-icon-wrap,
#header-outer .nectar-woo-cart .cart-icon-wrap i,
#header-outer .nectar-woo-cart .cart-wrap,
#header-outer .nectar-woo-cart .cart-wrap span {
    cursor: pointer !important;
}
/* Header icon hover effect */
#header-outer .nectar-woo-cart .cart-icon-wrap,
#header-outer #search-btn a,
#header-outer #nectar-user-account a,
#header-outer .slide-out-widget-area-toggle a {
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}
#header-outer .nectar-woo-cart .cart-menu-wrap:hover .cart-icon-wrap,
#header-outer #search-btn:hover a,
#header-outer #nectar-user-account:hover a,
#header-outer .slide-out-widget-area-toggle:hover a {
    opacity: 0.7;
    transform: scale(1.1);
}

.anotify-form-container {
    max-width: 600px;
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f9f9f9;
}

.anotify-form h3 {
    margin-top: 0;
    color: #333;
}

.anotify-field {
    margin-bottom: 15px;
}

.anotify-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.anotify-field input,
.anotify-field textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 14px;
    box-sizing: border-box;
}

.anotify-field input:focus,
.anotify-field textarea:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 3px rgba(0, 115, 170, 0.3);
}

.anotify-submit-btn {
    background: #0073aa;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}

.anotify-submit-btn:hover {
    background: #005a87;
}

.anotify-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.anotify-message {
    padding: 10px;
    margin-top: 10px;
    border-radius: 3px;
    font-weight: bold;
}

.anotify-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.anotify-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
