/* Загальні стилі футера */
#custom-footer {
    background-color: #fafafc;
    color: #262626;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
		padding: 40px 15px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.footer-section {
    text-align: left;
}

.footer-section > p {
	margin-bottom: 8px;
}

.footer-title {
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer__working-hours {
		font-weight: bold;
}

/* Стилі для списків */
.footer__contacts-list,
.footer__nav-list,
.footer__social-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__contacts-list li,
.footer__nav-list li {
    margin-bottom: 8px;
}

.footer__link {
    text-decoration: none;
    color: #262626;
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: #000; /* Виділення при наведенні */
}

/* Соцмережі */
.footer__social-list {
    display: flex;
    gap: 10px;
}

.footer__social-link img {
    width: 36px;
    height: 36px;
    transition: opacity 0.3s ease;
}

.footer__social-link:hover img {
    opacity: 0.7;
}

/* Нижній блок */
.footer-bottom {
	padding: .5rem;
	text-align: center;
    font-size: 12px;
	font-weight: 500;
    border-top: 1px solid #ddd;
}
