﻿body {
    padding: 0;
    margin: 0;
    height: 96vh;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.logo {
    margin: 0 auto 10px;
    width: 80%;
    text-align: center;
}

    .logo img {
        width: 200px;
        height: auto;
    }

.search-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    margin-top: 100px;
}

.search-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
    margin: 0 auto;
}

.search-btn {
    font-size: 1.1rem;
    height: 40px;
    width: calc(100% - 20px);
}

.suggestions-container {
    position: absolute;
    top: 100%;
    width: calc(80% - 20px);
    left: calc(10% + 10px);
    z-index: 1;
    background: white;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 8px 8px;
    overflow: hidden;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #ebedf0;
}

.popup-content {
    padding: 15px;
    height: 70vh;
    overflow-y: auto;
}

.product-item {
    margin-bottom: 20px;
}

    .product-item:last-child {
        margin-bottom: 60px;
    }

.product-name {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #323233;
}

.product-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-bottom: 5px;
}

    .product-images img {
        width: 100%;
        object-fit: cover;
        border-radius: 4px;
        flex-shrink: 0;
    }

.close-btn {
    color: #1989fa;
    font-size: 1rem;
}

.van-search {
    flex: 1;
}

.van-image {
    aspect-ratio: 1/1;
}
