.mont-search-container {
    position: relative;
    margin: 0 auto;
}

.mont-search-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.mont-search-input:focus {
    outline: none;
    border-color: #aaa;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.mont-search-button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    padding: 0 15px;
    background: #f7f7f7;
    border: 1px solid #ddd;
    border-left: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s;
}

.mont-search-button:hover {
    background: #eee;
}

.mont-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.mont-search-results.mont-search-active {
    display: block;
}

.mont-search-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s;
}

.mont-search-item:last-child {
    border-bottom: none;
}

.mont-search-item:hover {
    background-color: #f9f9f9;
}

.mont-search-item-image {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    object-fit: cover;
}

.mont-search-item-content {
    flex: 1;
}

.mont-search-item-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.mont-search-item-price {
    color: #777;
}

.mont-search-no-results {
    padding: 15px;
    text-align: center;
    color: #777;
}

.mont-search-loading {
    text-align: center;
    padding: 15px;
    color: #777;
}

@media (max-width: 480px) {
    .mont-search-item-image {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
    
    .mont-search-item {
        padding: 8px;
    }
    
    .mont-search-button {
        padding: 0 10px;
    }
}