/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.3.0.1739831253
Updated: 2025-02-17 22:27:33

*/
/* 🌿 BFM Global Button Styling (Dark Green) */
button,
input[type="submit"],
.woocommerce button.button,
.woocommerce input.button,
.bfm-florist-finder .bfm-button,
.elementor-button {
    background-color: #1f3322;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 0.75em 1.5em;
    font-weight: 600;
    font-size: 1em;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover,
input[type="submit"]:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.bfm-florist-finder .bfm-button:hover,
.elementor-button:hover {
    background-color: #2e4b32;
    color: #ffffff;
}
/* Force text color fixes on Dokan registration form */
form.dokan-vendor-register-form label,
form.dokan-vendor-register-form input,
form.dokan-vendor-register-form select,
form.dokan-vendor-register-form textarea {
    color: #333333 !important;
}

/* Placeholder fix */
form.dokan-vendor-register-form input::placeholder,
form.dokan-vendor-register-form textarea::placeholder {
    color: #666666 !important;
}
/* Ensure consistent product image sizing */
.woocommerce ul.products li.product img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}
/* Force readable styling for ACF fields on product page */
.single-product .woocommerce .product .acf-field,
.single-product .woocommerce .product .acf-field * {
    color: #1D3C2D !important;
    opacity: 1 !important;
}
.single-product .woocommerce .product .acf-fields {
    background-color: #f8f8f8; /* or #ffffff or #EDEDED */
    padding: 1em;
    border-radius: 10px;
}
/* Add to your child theme's style.css */
.woocommerce-shipping-destination {
    display: none !important;
}
/* --- Dokan Vendor Dashboard: Dropdown text fix --- */
body.dokan-dashboard select,
body.dokan-dashboard .select2-container--default .select2-selection--single .select2-selection__rendered,
body.dokan-dashboard .select2-container--default .select2-results__option {
  color: #111 !important; /* dark text */
  background-color: #fff !important;
}

body.dokan-dashboard .select2-dropdown,
body.dokan-dashboard .select2-results,
body.dokan-dashboard .select2-container--default .select2-selection--single {
  background-color: #fff !important;
}

body.dokan-dashboard .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #555 !important; /* readable placeholder */
}

body.dokan-dashboard .select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #f0f0f0 !important;
  color: #111 !important;
}

/* Native <option> tags */
body.dokan-dashboard select option {
  color: #111 !important;
  background-color: #fff !important;
}

/* WordPress media modal: make "Upload Files" and "Media Library" tabs visible */
.media-modal .media-router,
.media-frame .media-router {
  background: #fff !important;
}

.media-modal .media-router .media-menu-item,
.media-frame .media-router .media-menu-item {
  color: #111 !important;      /* visible when idle */
  opacity: 1 !important;       /* undo any theme fade */
  text-shadow: none !important;
}

.media-modal .media-router .media-menu-item:hover,
.media-modal .media-router .media-menu-item:focus,
.media-modal .media-router .media-menu-item.active,
.media-frame .media-router .media-menu-item:hover,
.media-frame .media-router .media-menu-item:focus,
.media-frame .media-router .media-menu-item.active {
  color: #111 !important;
  background: #f5f5f5 !important;
  border-bottom: 2px solid #2271b1 !important; /* clear active indicator */
}

/* Ensure inactive tab isn't transparent */
.media-modal .media-router .media-menu-item:not(.active),
.media-frame .media-router .media-menu-item:not(.active) {
  background: #fff !important;
}

/* Hide T&C and Vacation UI remnants inside the Dokan Store settings page */
body.dokan-dashboard .dokan-settings .dokan-form-group[id*="tnc"],
body.dokan-dashboard .dokan-settings .dokan-form-group[class*="tnc"],
body.dokan-dashboard .dokan-settings .dokan-form-group[id*="vacation"],
body.dokan-dashboard .dokan-settings .dokan-form-group[class*="vacation"],
body.dokan-dashboard .dokan-settings a[href*="vacation"],
body.dokan-dashboard .dokan-settings .dokan-vacation,
body.dokan-dashboard .dokan-settings .go-to-vacation {
  display: none !important;
}
/* Make all vendor dashboard text dark except the side menu tab headings */
body.dokan-dashboard {
    color: #222 !important; /* Dark gray, easy to read */
}

/* Make sure headings and form labels are dark */
body.dokan-dashboard h1,
body.dokan-dashboard h2,
body.dokan-dashboard h3,
body.dokan-dashboard h4,
body.dokan-dashboard h5,
body.dokan-dashboard h6,
body.dokan-dashboard label,
body.dokan-dashboard .dokan-form-group label,
body.dokan-dashboard th {
    color: #222 !important;
}

/* Ensure input, select, textarea text is dark */
body.dokan-dashboard input,
body.dokan-dashboard select,
body.dokan-dashboard textarea {
    color: #222 !important;
}

/* Keep the side menu tab headings their default color */
body.dokan-dashboard .dokan-dashboard-menu li a {
    color: inherit !important;
}