input.hagroy-product-search-input {
height: 41px;
padding-left: 3.2em;
font-size: 14px;
font-family: 'Inter';
}
.hagroy-search-wrapper {
width: 100%;
max-width: 900px;
margin: 0 auto;
position: relative;
font-family: inherit;
}
.hagroy-search-box {
position: relative;
width: 100%;
}
.hagroy-product-search-input {
width: 100%;
height: 40px;
padding: 0 55px;
border: 1px solid #d9d9d9;
border-radius: 8px;
background: #fff;
font-size: 16px;
color: #222;
outline: none;
box-sizing: border-box;
transition: .2s ease;
}
.hagroy-product-search-input:focus {
border-color: #315BEA;
box-shadow: 0 0 0 3px rgba(49,91,234,.10);
}
.hagroy-search-icon {
position: absolute;
left: 14px;
top: 50%;
transform: translateY(-50%);
color: #00B0B9;
z-index: 2;
pointer-events: none;
}
.hagroy-search-loading {
display: none;
position: absolute;
right: 20px;
top: 50%;
width: 18px;
height: 18px;
margin-top: -9px;
border: 2px solid #ddd;
border-top-color: #315BEA;
border-radius: 50%;
animation: hagroy-spin .7s linear infinite;
}
.hagroy-search-loading.active {
display: block;
}
@keyframes hagroy-spin {
to { transform: rotate(360deg); }
}
.hagroy-search-results {
display: none;
position: absolute;
left: 0;
right: 0;
top: calc(100% + 8px);
background: #fff;
border: 1px solid #e3e3e3;
border-radius: 8px;
box-shadow: 0 10px 30px rgba(0,0,0,.12);
z-index: 9999;
overflow: hidden;
}
.hagroy-search-results.active {
display: block;
}
.hagroy-search-item {
display: flex;
align-items: center;
gap: 15px;
padding: 12px 16px;
text-decoration: none !important;
color: inherit;
border-bottom: 1px solid #eee;
transition: background .15s ease;
}
.hagroy-search-item:last-child {
border-bottom: 0;
}
.hagroy-search-item:hover {
background: #f6f8fc;
}
.hagroy-search-image {
width: 60px;
height: 60px;
flex: 0 0 60px;
border-radius: 5px;
background: #f5f5f5;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}
.hagroy-search-image img {
width: 100%;
height: 100%;
object-fit: contain;
}
.hagroy-search-info {
flex: 1;
min-width: 0;
}
.hagroy-search-name {
font-size: 15px;
font-weight: 600;
line-height: 1.35;
color: #222;
margin-bottom: 5px;
}
.hagroy-search-sku {
font-size: 12px;
color: #777;
margin-bottom: 4px;
}
.hagroy-search-price {
font-size: 14px;
font-weight: 600;
color: #315BEA;
}
.hagroy-search-arrow {
color: #aaa;
font-size: 20px;
padding-left: 5px;
}
.hagroy-search-message {
padding: 20px;
text-align: center;
font-size: 14px;
color: #777;
}
@media (max-width: 767px) {
.hagroy-product-search-input {
height: 52px;
font-size: 15px;
padding-left: 48px;
}
.hagroy-search-icon {
left: 16px;
}
.hagroy-search-image {
width: 50px;
height: 50px;
flex-basis: 50px;
}
.hagroy-search-name {
font-size: 14px;
}
.hagroy-search-arrow {
display: none;
}
}