        /* Хлібні крихти */
        .breadcrumbs {
            margin-bottom: 30px;
            font-size: 14px;
            color: #666;
			margin-top: 10px;
        }
        
        .breadcrumbs a {
            color: #2c3e50;
            text-decoration: none;
        }
        
        .breadcrumbs a:hover {
            text-decoration: none;
        }
        
        /* Заголовок сторінки */
        .page-title {
            font-size: 32px;
            margin-bottom: 30px;
            color: #2c3e50;
            position: relative;
            padding-bottom: 15px;
        }
        
        .page-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 3px;
            background: #e67e22;
        }
        
        /* Основний контент */
        .page-content {
            display: flex;
            gap: 30px;
        }
        
        /* Бокова панель з категоріями */
        .sidebar {
            flex: 0 0 250px;
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .categories-title {
            font-size: 18px;
            margin-bottom: 15px;
            color: #2c3e50;
        }
        
        .categories-list {
            list-style: none;
        }
        
        .categories-list li {
            margin-bottom: 10px;
        }
        
        .categories-list a {
            color: #555;
            text-decoration: none;
            display: block;
            padding: 8px 10px;
            border-radius: 4px;
            transition: all 0.3s;
        }
        
        .categories-list a:hover,
        .categories-list a.active {
            background-color: #f1f8ff;
            color: #e67e22;
        }
        
        /* Сітка товарів */
        .products-grid {
            flex: 1;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
        }
        
        .product-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
			height: 620px;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
        }
        
.product-image {
    width: 100%;
    height: 400px; /* або будь-яка інша висота, яку ви хочете */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* обрізає зображення, щоб заповнити контейнер, зберігаючи пропорції */
}
        
        .product-info {
            padding: 15px;
        }
        
        .product-title {
            font-size: 16px;
            margin-bottom: 30px;
			margin-top: 30px;
            color: #2c3e50;
			text-align: center;
        }
        
.product-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px; 
    margin-top: 15px;
}

.btn {
    padding: 8px 15px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
    text-align: center;
    text-decoration: none;
    width: 100%; 
	height: 40px;
}
        
        .btn-details {
            background: #FFB75F;
            color: white;
			width: 120px;
			margin: 0 auto;
        }
        
        .btn-details:hover {
            background: #F0990E;
        }
        
        .btn-calculate {
            background: #141A26;
            color: white;
			width: 200px;
			margin: 0 auto;
        }
        
        .btn-calculate:hover {
            background: #b3b3b3;
        }
        
        /* Кнопка дивитися ще */
        .load-more {
            display: block;
            margin: 60px auto;
            padding: 12px 30px;
            background: #141A26;
            color: white;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            font-size: 16px;
            transition: background 0.3s;
        }
        
        .load-more:hover {
            background: #1a252f;
        }
        
/* Форма зворотного зв'язку */
.feedback-section {
    background: white;
    padding: 30px;
    border-radius: 8px;
    margin-top: 80px;
    text-align: center;
}

.feedback-title {
    font-size: 16px;
    margin-bottom: 20px;
    margin-top: 30px;
    color: #2c3e50;
}

.feedback-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 30px;
    position: relative;
    text-align: left;
}

.form-group label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
    transition: all 0.3s ease;
    background: white;
    padding: 0 5px;
    margin-bottom: 0;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    background: transparent;
    z-index: 1;
    position: relative;
}

.form-control:focus {
    outline: none;
    border-color: #FFB75F;
}

.form-control:focus + label,
.form-control:not(:placeholder-shown) + label {
    top: 0;
    font-size: 12px;
    color: #FFB75F;
    background: white;
}

.form-control::placeholder {
    color: transparent;
}

.submit-btn {
    background: #FFB75F;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #d35400;
}


		
       
        /* Адаптивність */
        @media (max-width: 992px) {
            .page-content {
                flex-direction: column;
            }
            
            .sidebar {
                flex: 0 0 auto;
                margin-bottom: 20px;
            }
}
        

		
        @media (max-width: 576px) {
            .products-grid {
                grid-template-columns: 1fr;
            }
            
            .product-buttons {
                flex-direction: column;
            }
        }
		
