.custom-woocommerce-search-title {
    background-color: var(--ast-global-color-7);
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    transition: transform 0.3s ease-in-out;
    margin-bottom: 15px;
    text-align: center; /* Centers the text horizontally */
}

.custom-woocommerce-search-title:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.custom-woocommerce-search-title a {
    display: block; /* Makes the <a> fill the entire title container */
    width: 100%; /* Ensures the anchor takes full width */
    height: 100%; /* Ensures the anchor takes full height */
    text-decoration: none; /* Removes underline */
    color: inherit; /* Inherits the text color */
    box-sizing: border-box; /* Ensures padding doesn't affect width */
    padding:5px;
}

