/* Search Toggle Styles */

.search-holder {
    position: relative;
    overflow: visible;
}

#search {
    position: relative;
    overflow: visible;
}

.search-holder .search_input {
    display: none;
    position: fixed;
    min-width: 300px;
    padding: 10px 12px;
    border: 1px solid #ddd; 
    border-radius: 4px;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.search-holder.active .search_input {
    display: block;
    animation: slideDown 0.3s ease-out;
}

.search-holder .button-search {
    cursor: pointer;
    transition: color 0.3s ease;
    display: inline-block;
    width: 28px;
    height: 28px;
    vertical-align: middle;
}

.search-holder.active .button-search {
    color: #333;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .search-holder .search_input {
        min-width: 250px;
        right: 10px;
    }
}

/* Shopping Cart Styles */
#cart.shortcut {
    position: relative;
    display: inline-block;
    margin-left: 10px;
}

#cart .shortcut_heading {
    position: relative;
    display: inline-block;
    border: 0 !important;
    text-decoration: none;
    padding: 0 !important;
    margin: 0 !important;
    width: 28px !important;
    height: 28px !important;
    line-height: 28px !important;
}

#cart .shortcut_heading .cart-icon {
    width: 28px;
    height: 28px;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    padding: 0;
}

#cart .shortcut_heading .fa::before {
    display: none;
}

#cart .shortcut_heading .total {
    display: none;
}

/* Cart count badge */
#cart .shortcut_heading .cart-count {
    position: absolute;
    top: -9px;
    right: 6px;
    color: #000;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    display: flex
;
    align-items: flex-end;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    min-width: 10px;
    border: 1px solid;
}

#cart .content {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 100;
    min-width: 300px;
    display: none;
    margin-top: 10px;
}

#cart.active .content {
    display: block;
}

#cart .content .empty {
    padding: 20px;
    text-align: center;
    color: #999;
}

.language_current .head {
    color: #000;
    font-weight: 100;
}

.language_current i {
    margin-left: 5px;
    display: none;
}

.language_current {
    display: inline-block;
    line-height: 24px;
    margin-left: 10px;
    padding-left: 6px;
    padding-right: 6px;
    position: relative;
    cursor: default;
    border: 0;
    margin-right: 5px;
    font-size: 22px;
    padding-top: 6px;
}


.phone-holder {
    font-weight: 200;
    padding-top: 6px;
}

.main-phone {
    font-size: 22px;
    padding-top: 6px;
}

/* Phone Icon Styles */
.phone-holder .phone-icon{
    width: 28px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    flex-shrink: 0;
    position: absolute;
    left: -29px;
    top: 3px;
}
