.elementor-78 .elementor-element.elementor-element-112bbe9{--display:flex;}#elementor-popup-modal-78{background-color:rgba(0,0,0,.8);justify-content:center;align-items:center;pointer-events:all;}#elementor-popup-modal-78 .dialog-message{width:640px;height:auto;}#elementor-popup-modal-78 .dialog-close-button{display:flex;}#elementor-popup-modal-78 .dialog-widget-content{box-shadow:2px 8px 23px 3px rgba(0,0,0,0.2);}/* Start custom CSS for shortcode, class: .elementor-element-6e5a776 *//* Container styling */
.woocommerce-product-search-form div {
    background: #ffffff;
    padding: 15px;
    border-radius: 50px; /* Makes it pill-shaped and cute */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #ccc;
}

/* Input and Select fields */
.woocommerce-product-search-form input[type="search"],
.woocommerce-product-search-form select {
    border: 1px solid #ccc;
    border-radius: 25px;
    padding: 10px 20px;
    outline: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.woocommerce-product-search-form input[type="search"]:focus,
.woocommerce-product-search-form select:focus {
    border-color: var(--e-global-color-accent);
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

/* The Search Button */
.woocommerce-product-search-form button {
    background-color: var(--e-global-color-accent); /* Your requested color */
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Button Hover State */
.woocommerce-product-search-form button:hover {
    background-color: var(--e-global-color-primary); /* Your requested hover color */
    transform: scale(1.05); /* Slight pop effect for cuteness */
}
/* Styling the Select Dropdown */
.woocommerce-product-search-form select {
    appearance: none; /* Removes the default messy browser arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center; /* Positions the arrow away from the border */
    background-size: 15px;
    padding-right: 40px !important; /* Adds space so text doesn't hit the arrow */
    padding-left: 20px;
    cursor: pointer;
    background-color: #fff;
    border: 1px solid #ccc;
    height: 44px; /* Matches standard button height */
    min-width: 160px;
}

/* Hover effect for the dropdown */
.woocommerce-product-search-form select:hover {
    border-color: var(--e-global-color-accent);
    background-color: #fafafa;
}

/* Ensure the wrapper doesn't feel cramped */
.woocommerce-product-search-form div {
    gap: 15px !important; /* Increases breathing room between elements */
    padding: 10px 20px !important;
}
/* Mobile Responsiveness */
@media (max-width: 600px) {
    .woocommerce-product-search-form div {
        flex-direction: column;
        border-radius: 20px;
    }
    .woocommerce-product-search-form input, 
    .woocommerce-product-search-form select, 
    .woocommerce-product-search-form button {
        width: 100%;
    }
}/* End custom CSS */