/*
Theme Name: Astra Child
Template: astra
Version: 1.0.0
*/

/* Remove underlines */
.footer a,
.widget a,
.woocommerce-loop-product__title a,
.woocommerce ul.products li.product a,
a:hover {
    text-decoration: none !important;
}

/* Header icon styles */
.custom-header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 20px;
}

.custom-search-toggle {
    position: relative;
    display: flex;
    align-items: center;
}

.custom-search-toggle .dashicons-search {
    font-size: 20px;
    cursor: pointer;
}

.custom-search-input {
    width: 0;
    opacity: 0;
    transition: width 0.3s ease, opacity 0.3s ease;
    margin-left: 8px;
    padding: 2px 5px;
    font-size: 14px;
}

.custom-search-toggle.active .custom-search-input {
    width: 150px;
    opacity: 1;
}

