/* استایل پاپ‌آپ */
#search-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 600px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

/* دکمه بستن پاپ‌آپ */
#close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

/* نتایج جستجو */
#search-results {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

/* هر آیتم محصول */
.product-item {
    width: calc(33.33% - 10px);
    box-sizing: border-box;
    text-align: center;
    border: 1px solid #ddd;
    padding: 10px;
}

.product-item img {
    max-width: 100%;
    height: auto;
}

.product-item h3 {
    font-size: 16px;
    margin: 10px 0;
}

.product-item p {
    font-size: 14px;
    color: #333;
}