#ld-search-results {
display: none; } .ld-header-style {
position: relative;
width: 100vw;
max-width: 600px; } .ld-search-icon {
position: absolute;
top: 50%;
left: 14px;
transform: translateY(-50%);
width: 18px;
height: 18px;
opacity: 0.55;
pointer-events: none;
}
.ld-search-icon svg {
width: 100%;
height: 100%;
fill: #666;
} #ld-search-input {
width: 100%;
padding: 10px 16px 10px 42px; border-radius: 30px;
border: 1px solid #d0d0d0;
background: #fff;
font-size: 14px;
color: #333;
outline: none;
transition: all 0.2s ease;
box-shadow: inset 0 1px 2px rgba(0,0,0,0.08);
}
#ld-search-input:focus {
border-color: #3aa69b;
box-shadow: 0 0 0 3px rgba(58,166,155,0.15);
} #ld-search-results {
display: none;
position: absolute;
top: 48px;
left: 0;
width: 100%;
background: #fff;
border-radius: 12px;
border: 1px solid #e5e5e5;
box-shadow: 0 6px 20px rgba(0,0,0,0.12);
z-index: 9999;
padding: 10px 0;
} .ld-result {
display: flex;
gap: 12px;
padding: 10px 16px;
text-decoration: none;
color: #333;
transition: background 0.2s ease;
}
.ld-result:hover {
background: #f7fdfc;
}
.ld-result img {
width: 50px;
height: 50px;
object-fit: cover;
border-radius: 6px;
}
.ld-meta { flex: 1; }
.ld-title { font-weight: 600; font-size: 14px; }
.ld-type { font-size: 12px; color: #777; }
.ld-price { color: #3aa69b; font-weight: 600; }
.ld-excerpt { font-size: 12px; color: #666; margin-top: 4px; }
.ld-view-all {
padding: 12px 18px;
text-align: center;
border-top: 1px solid #eee;
}
.ld-view-all a {
font-weight: 600;
color: #3aa69b;
text-decoration: none;
}
.ld-view-all a:hover {
text-decoration: underline;
}
@media screen and (max-width: 900px) {
.ld-header-style {
max-width: 450px;
}
}
@media screen and (max-width: 600px) {
.ld-header-style {
width: 90vw;
max-width: 100%;
}
}