.totl-search-icon {
    cursor: pointer;
    font-size: 24px;
    color: #333;
}

.totl-search-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: flex-start; /* Align to top for above header */
    padding-top: 20px; /* Space above header */
}

.totl-search-modal.active {
    display: flex;
}

.totl-search-form {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 100%;
	display: flex;
	gap:10px;
    justify-content: space-evenly;
}

.totl-search-form input[type="search"] {
    width: 100%;
    padding: 10px;
    font-size: 18px;
	border: 1px solid rgba(0, 0, 0, .1) !important;
    border-radius: 10px !important;
}

.totl-search-form button {
    padding: 10px 20px;
    background: #007bff;
    color: white;
    border: none;
	border-radius: 6px;
    cursor: pointer;
	background-image: linear-gradient(to right, #b4e100, #8cc500);
    font-size: 15px;
    font-weight: 500;
}
.totl-search-modal {
    position: fixed; inset: 0; background: rgba(0,0,0,0.7);
    display: none; align-items: center; justify-content: center; z-index: 9999;
}
.totl-search-modal.active { display: flex; }
.totl-search-inner {
    background: white; padding: 1rem; border-radius: 12px; width: 90%; max-width: 800px;
    max-height: 85vh; overflow-y: auto; position: relative;
}
.totl-search-results { margin-top: 1.5rem; }
.totl-search-results {
	margin-top: 1.5rem;
    flex-direction: row;
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.totl-search-results h4 {
	font-size: 15px;
    color: #2e353c;
    padding:5px;
}
.totl-search-result-item {
	border: 1px solid #EEEBEB;
    border-radius: 20px;
}
.totl-search-result-item img {
	width: 260px;
    border-radius: 20px;
}

.totl-search-result-item .woocommerce-Price-amount.amount {
    color: #2e353c;
    font-weight: 500;
    padding: 5px;
}
.loading { text-align: center; padding: 2rem; }
/*.totl-search-close {
    position: absolute; top: 10px; right: 15px; font-size: 2rem; cursor: pointer; border: none; background: none;
}*/
.totl-search-close {
	display:none;
}