/*
CTC Separate Stylesheet
Updated: 2026-01-18 20:07:13
*/


/* ==== HEADER === */
.templines-mega-menu-wrap > ul {
   display: flex;
   padding: 0;
   justify-content: center;
}

.icon-container {
	gap: 14px;
}
/* == SEARCH == */

/* Контейнер іконки */
.templines-cart-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
}

/* Посилання */
.templines-cart-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem; 
    height: 2.8rem;
    border-radius: 50%;
    background-color:#2d9f17; 
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Іконка всередині */
.templines-cart-icon a i {
    font-size: 14px;
    line-height: 1;
}

/* Hover ефект */
.templines-cart-icon a:hover {
    background-color: #45a049;  
    transform: scale(1.1);  
}

/* Фокус */
.templines-cart-icon a:focus {
    outline: 1px solid #2e7d32;
    outline-offset: 2px;
}

/* Модальне вікно */
.search-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%;
	height: 100%;
    background: rgba(0,0,0,0.7);
    transition: opacity 0.3s ease;
}

.search-modal.show {
    display: block;
    opacity: 1;
}

/* Контент модального пошуку */
.search-modal-content {
    background: #fff;
	opacity:0.9;
    max-width:70%;
    margin: 10% auto;
    border-radius: 50px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
} 

/* Кнопка закриття */
.search-close {
    position: absolute;
    right: -10px;
    top: -40px;
    font-size: 28px;
    cursor: pointer;
    color: #ffffff;
}

/* Форма пошуку */

.woocommerce-product-search {
    display: flex;
    align-items: center;
    border: 1px solid #4CAF50;
    border-radius: 50px;
    overflow: hidden;
    margin: 0 auto;
}

/* Поле вводу */
.woocommerce-product-search .search-field {
    flex: 1;
    border: none;
    font-size: 16px;
    outline: none;
    color: #333;
}

.woocommerce-product-search .search-field::placeholder {
    color: #999;
}

.search-modal-content button.submit-btn.submit-btn__top {
    margin-right: 30px;
}
.submit-btn i {
    font-size: 18px;
} 

@media(max-width:768px){
	.search-modal-content {
    max-width: 90%;
    }
}





