.woocommerce-message{
	display:none;
}

.woocommerce span.onsale{
	color:#3D2B1F;
	background-color:#C5A059;
}
.main-header-bar{
	padding:0;
}
.woocommerce-info {
    border-top-color: #1e85be;
    display: none;
}
.woocommerce-thankyou-order-received{
    margin-bottom: 1.6em;
    color: #1ed71e;
}
.woocommerce div.product form.cart .button.single_add_to_cart_button {
    margin-right: 10px;
}
/* Container to align items perfectly */
.wp-block-search__inside-wrapper {
	background-color:#C5A059 !important;
	padding:0px !important;
    display: flex !important;
    align-items: stretch !important; /* Forces same height */
    gap: 0 !important; /* Removes gap between box and button */
}

/* Style the Input Field */
.wp-block-search__input {
    border: 2px solid #333 !important;
    border-right: none !important; /* Removes double border in middle */
    border-radius: 5px 0 0 5px !important; /* Rounds only left corners */
    padding: 10px 15px !important;
    margin: 0 !important;
    height: 35px !important; /* Fixed height for both */
    box-sizing: border-box !important;
}

/* Style the Search Button */
.wp-block-search__button {
    background-color: grey !important;
    color: #ffffff !important;
    border: 2px solid #333 !important;
    border-radius: 0 5px 5px 0 !important; /* Rounds only right corners */
    padding: 10 15px !important;
    margin: 0 !important;
    height: 35px !important; /* Matches input height exactly */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
}
/* WooCommerce Product Card Design */
.woocommerce ul.products li.product {
    background: #ffffff;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    text-align: center;
}

/* Hover Effect */
.woocommerce ul.products li.product:hover {
    border-color: transparent;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

/* Product Image */
.woocommerce ul.products li.product img {
    border-radius: 5px;
    margin-bottom: 15px;
}

/* Product Title */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
    padding: 10px 0;
}

/* Price */
.woocommerce ul.products li.product .price {
    color: #2ecc71; /* Green color */
    font-weight: bold;
    margin-bottom: 10px;
}

/* Add to Cart Button */
.woocommerce ul.products li.product .button {
    background-color: #333;
    color: #fff;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 0.85em;
    padding: 10px 15px;
    transition: background 0.3s;
}

.woocommerce ul.products li.product .button:hover {
    background-color: #555; /* Darker on hover */
}

