.site-footer {
    background-color: #0c0c0e;
    border-top: 1px solid var(--primary);
    color: #fff;
    padding-top: 60px;
    position: relative;
    z-index: 92;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: flex-start;
}

.footer-col-logo { flex: 0 0 180px; display: flex; align-items: flex-start; padding-top: 5px; }
.footer-logo { display: block; text-decoration: none; }
.footer-logo img { max-height: 28px; width: auto; display: block; }

.footer-col-nav { flex: 1 1 auto; max-width: 460px; }

.footer-heading { color: #666; font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; }

/* ФІКС ВІДСТУПІВ У ФУТЕРІ (gap: 5px 35px;) */
.footer-nav-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px 35px; /* ПРІРВУ ПРИБРАНО (було 12px) */
}

.footer-nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
    padding: 4px 0; /* Щільніші рядки */
}
.footer-nav-link:hover { color: var(--primary); }
.footer-nav-link .menu-icon { height: 16px; width: auto; object-fit: contain; flex-shrink: 0; }

.footer-col-contacts { flex: 0 0 260px; }
.fc-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.fc-icon { height: 18px; width: auto; object-fit: contain; flex-shrink: 0; }
.fc-value { font-size: 20px; font-weight: 700; color: #fff; }
.fc-link { text-decoration: none; transition: color 0.3s; }
.fc-link:hover { color: var(--primary); }

.footer-col-actions { flex: 0 0 220px; display: flex; flex-direction: column; gap: 15px; }
.footer-catalog-btn { width: 100% !important; aspect-ratio: unset !important; height: 50px; position: relative; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.footer-catalog-content { display: flex !important; align-items: center; gap: 10px; font-size: 11px !important; letter-spacing: 0.5px; }
.footer-cat-icon { display: flex; align-items: center; width: 14px; height: 14px; }
.footer-cat-icon svg { width: 100%; height: 100%; }
.footer-contact-btn { width: 100%; text-align: center; text-decoration: none; padding: 14px 0; font-size: 13px; }

.footer-bottom { margin-top: 60px; padding: 25px 0; text-align: center; color: #555; font-size: 12px; }
.footer-bottom-line { width: 100%; height: 1px; background: rgba(255, 255, 255, 0.08); margin-bottom: 25px; }

@media (max-width: 1440px) {
    .footer-container { gap: 25px; padding: 0 35px; }
    .footer-col-nav { max-width: 420px; }
    .footer-nav-grid { gap: 6px 28px; }
}
@media (max-width: 1200px) {
    .footer-container { gap: 20px; padding: 0 25px; }
    .footer-col-contacts { flex: 0 0 230px; }
    .footer-col-actions { flex: 0 0 200px; }
}
@media (max-width: 1024px) {
    .footer-container { display: grid; grid-template-columns: 1fr 1fr; gap: 35px 30px; padding: 0 40px; justify-items: center; text-align: center; }
    .footer-col-logo { justify-content: center; }
    .footer-col-nav { max-width: none; width: 100%; }
    .footer-col-contacts { flex: unset; width: 100%; }
    .footer-col-actions { flex: unset; width: 100%; }
    .footer-heading { text-align: center; }
    .fc-row { justify-content: center; }
    .footer-nav-grid { justify-items: center; }
}
@media (max-width: 768px) {
    .footer-container { grid-template-columns: 1fr; gap: 30px; padding: 0 20px; }
    .footer-col-logo, .footer-col-nav, .footer-col-contacts, .footer-col-actions { width: 100%; }
    .footer-nav-grid { grid-template-columns: 1fr; gap: 10px; }
    .footer-col-actions { flex-direction: column; }
    .footer-catalog-btn, .footer-contact-btn { width: 100%; }
}


/* =========================================
   НОВІ СТИЛІ ДЛЯ ДИНАМІЧНИХ СОЦМЕРЕЖ ТА EMAIL
========================================= */
.socials-row { 
    display: flex; 
    align-items: center; 
    gap: 20px; /* Відстань між іконками */
    flex-wrap: wrap;
}

.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icon-link:hover {
    transform: translateY(-4px); /* При наведенні іконка підстрибує */
    filter: brightness(1.3); /* І стає трохи яскравішою */
}

.social-icon-img {
    height: 26px; /* Розмір іконок соцмереж (можеш змінити, якщо треба більші) */
    width: auto;
    object-fit: contain;
}

/* Колір email адреси при наведенні */
.fc-link:hover { color: var(--primary); }