/* Match dropdown styling */
.dark-dropdown select,
.wp-block-search input[type="search"] {
    background-color: #000 !important;
    color: #fff !important;
    border: 1px solid #666 !important;
    padding: 8px 10px !important;
    border-radius: 4px !important;
    height: auto !important;
    box-sizing: border-box;

    outline: none !important;
    box-shadow: none !important;
}

/* Ensure search field width behaves like the dropdown */
.wp-block-search__inside-wrapper {
    border: none !important;
    padding: 0 !important;
    background: transparent !important;
}

/* Search button */
.wp-block-search .wp-block-search__button {
    background-color: #dcdcdc !important;
    border: 1px solid #666 !important;
    color: #000 !important;
    padding: 8px 12px !important;
    border-radius: 4px !important;
    height: auto !important;
}

/* Placeholder text */
.wp-block-search input[type="search"]::placeholder {
    color: #aaa !important;
}

/* Dropdown options */
.dark-dropdown select option {
    background-color: #000;
    color: #fff;
}
/* Make product cards equal height and align the button */
ul.products li.product {
    display: flex;
    flex-direction: column;
    height: 100%;
}
@media (max-width: 768px) {

    .site-header {
        padding-top: 15px !important;
        padding-bottom: 15px !important;
        min-height: auto !important;
    }

    .site-branding {
        padding: 0 !important;
        margin: 0 !important;
    }

}
@media (max-width: 768px) {

    .header-inner,
    .header-wrapper {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        min-height: auto !important;
    }

}
@media (max-width: 768px) {

    .site-header {
        padding: 10px 0 !important;
    }

    .custom-logo {
        max-height: 70px;
        width: auto;
    }

}
@media (max-width: 599px) {

    .wp-site-blocks .site-header .wp-block-site-logo {
        flex-basis: auto !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

}
@media (max-width: 599px) {

    .wp-site-blocks .site-header {
        padding: 8px 15px !important;
    }

    .wp-site-block-site-logo img {
        max-height: 60px;
        width: auto;
    }

}
@media (max-width: 599px) {

    .wp-block-navigation__responsive-container {
        background: rgba(0, 0, 0, 0.75) !important;
        backdrop-filter: blur(8px);
    }

}
@media (max-width: 599px) {

    .wp-block-navigation__responsive-container a {
        color: #ffffff !important;
    }

}
@media (max-width: 599px) {

    /* Make the X icon visible */
    .wp-block-navigation__responsive-container-close svg {
        fill: #ffffff !important;
        width: 28px;
        height: 28px;
    }

    /* Ensure the button itself is visible */
    .wp-block-navigation__responsive-container-close {
        color: #ffffff !important;
        opacity: 1 !important;
    }

}
/* Force dark styling on WooPayments Stripe fields */

.woocommerce-checkout .wc_payment_method .payment_box {
    background: #000 !important;
    border: 1px solid #666 !important;
}

.woocommerce-checkout .wc_payment_method .payment_box iframe {
    filter: invert(1) hue-rotate(180deg);
}
.woocommerce-checkout iframe[src*="stripe"] {
    filter: invert(.70) hue-rotate(180deg) brightness(1.20);
}
select,
select option {
    background-color: #1F2527 !important;
    color: #fff !important;
}