/* footer.php — винесено з inline <style> 20260908_2104 */
.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-left { text-align: left; align-items: flex-start; }
.footer-center { text-align: center; align-items: center; }
.footer-right { text-align: right; align-items: flex-end; }

.footer-left a,
.footer-center a,
.footer-right a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: all 0.3s ease;
    margin-bottom: 0.2rem;
}

.footer-left a:hover,
.footer-center a:hover,
.footer-right a:hover {
    opacity: 1;
    color: #4A90E2;
}

.address-text {
    color: #ffffff;
    font-size: 14px;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-systems {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.payment-icon {
    height: 32px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.payment-icon:hover {
    opacity: 1;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .footer .container { padding: 0 1rem; }
    .footer-content { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .footer-left, .footer-center, .footer-right { text-align: center; align-items: center; }
    .payment-icon { height: 28px; }
}

@media (max-width: 480px) {
    .footer { padding: 2rem 0 1rem; }
    .footer-content { gap: 1.5rem; }
    .footer-section { gap: 0.4rem; }
    .footer-left a, .footer-center a, .footer-right a { font-size: 13px; }
    .address-text { font-size: 13px; }
    .payment-systems { gap: 0.8rem; margin-bottom: 1rem; }
    .payment-icon { height: 24px; }
}
