.search-results {
        font-family: Arial, sans-serif;
        margin: 5px;
        padding: 5px;
        border: 1px solid #000000;
        border-radius: 5px;
        background-color: #c5e5cc;
    }
    .search-results h3 {
        color: #333;
        border-bottom: 2px solid #007bff;
        padding-bottom: 5px;
        margin-top: 20px;
    }
    .search-results ul {
        list-style-type: none;
        padding-left: 0px;
    }
    .search-results ul li {
        padding: 5px 0;
        border-bottom: 1px solid #eee;
    }
    .search-results .highlight {
        background-color: yellow;
        font-weight: bold;
        padding: 0 3px;
    }
    .search-results .count-badge {
        background-color: #007bff;
        color: white;
        padding: 2px 10px;
        border-radius: 12px;
        font-size: 10px;
        margin-left: 10px;
    }
    .search-results .product-item {
        padding: 8px;
        margin: 5px 0;
        background-color: #f9f9f9;
        border-radius: 3px;
    }
    .search-results .product-item:hover {
        background-color: #f0f0f0;
    }
    .search-header {
        text-align: center;
        margin-bottom: 15px;
    }
    .search-header .highlight {
        font-size: 18px;
        background-color: yellow;
        padding: 2px 8px;
        border-radius: 3px;
    }
    .search-stats {
        text-align: center;
        color: #555;
        font-size: 14px;
        margin-bottom: 20px;
        padding: 10px;
        background: #f0f8f0;
        border-radius: 5px;
    }
.search-results .product-item {
    display: flex;
    align-items: flex-start;
	text-align:center;
    /*gap: 20px;*/
    /*padding: 8px;*/
    margin: 5px 0;
    background-color: #f9f9f9;
	border: 2px solid #000000;
    border-radius: 5px;
    min-height: 120px;
	width:95%;
	max-width: 900px;
}
.search-results .product-item .product-image {
    flex-shrink: 0;
    width: 110px;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-results .product-item .product-image img {
													width: 100%;
													height: 100%;
													object-fit: cover;
													}
.search-results .product-item .product-info {	/*  общий размер блока для описалова */
												flex: 1;
												display: flex;
												flex-direction: column;
												justify-content: flex-start;
												text-align:left;
												padding-left:5px;
												/*border: 1px solid #000000;*/
											}
.search-results .product-item .product-info strong {
    font-size: 14px;
    width: 96%;
    /*border: 2px solid #000000;*/
    display: block; /* или inline-block, чтобы работали ограничения */
    overflow: hidden;
    word-wrap: break-word; /* перенос длинных слов */
    word-break: break-word; /* перенос при необходимости */
    max-height: 60px; /* ограничение высоты (подберите под свой размер) */
    line-height: 1.4; /* межстрочный интервал */
    padding: 4px 6px; /* внутренние отступы */
    box-sizing: border-box; /* чтобы ширина считалась с padding */
    text-overflow: ellipsis; /* многоточие в конце, если нужно */
}
.search-results .product-item .product-info .product-details {	/* цена и Lager*/
																	color: #666;
																	font-size: 16px;
																	line-height: 1.4;
																}
																
																
																
																

/******************************************************** КНОПКА ZURÜCK ************************************************/
.back-button-container {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 1000;
}

.back-button {
    display: inline-block;
    padding: 10px 22px;
    background: rgba(76, 175, 80, 0.9);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.25);
}

.back-button:hover {
    background: rgba(76, 175, 80, 1);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.35);
}

.back-button::before {
    content: "← ";
}

.back-button-container-center {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
/*----------------------------------------------------------------------------------------------------------------------*/




.product-link {
    display: block;
    width: 95%;
    max-width: 900px;
    text-decoration: none;
    color: inherit;
}


