.search-bar {
    background: #fff;
    padding: 10px 15px;
    display: flex;
    align-items: center;
}

.search-bar i {
    color: #FF8FB1;
    margin-right: 10px;
}

.search-bar input {
    border: none;
    outline: none;
    font-size: 14px;
    width: 100%;
}

.banner {
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.categories {
    background: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-item img {
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
}

.category-item span {
    font-size: 12px;
    color: #666;
}

.category-item i {
    color: #87CEEB;
}

.product-list {
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.product-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.product-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.product-info {
    padding: 10px;
}

.product-name {
    font-size: 14px;
    margin-bottom: 5px;
}

.product-price {
    color: #FF8FB1;
    font-size: 16px;
    font-weight: bold;
} 