/**
 * Footer V2 Styles
 * Стили для standalone footer
 */

/* Преимущества V2 */
.advantages-v2 {
    background: linear-gradient(135deg, #f0f9f4 0%, #e8f5e9 100%);
    padding: 24px 20px;
}

.advantages-v2-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.advantages-v2-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.advantage-v2-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 12px 18px;
    border-radius: 50px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.advantage-v2-icon {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
}

.advantage-v2-text {
    font-size: 13px;
    font-weight: 500;
    color: #333;
}

/* Footer Main */
.footer-main {
    background: #fff;
    padding: 40px 20px;
    border-top: 1px solid #e9ecef;
}

.footer-main-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 50px;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-logo img {
    width: 140px;
    height: auto;
    display: block;
}

.footer-stores {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 10px;
}

.footer-store {
    display: flex;
    align-items: baseline;
    gap: 12px;
    font-size: 13px;
    line-height: 1.4;
}

.footer-store-addr {
    color: #555;
}

.footer-store-phone {
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    font-weight: 500;
}

.footer-store-phone:hover {
    color: #28a745;
}

.footer-all-contacts {
    color: #28a745;
    text-decoration: none;
    font-size: 13px;
    margin-top: 4px;
}

.footer-all-contacts:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-main-inner {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    
    .footer-logo img {
        width: 100px;
        height: auto;
    }
    
    .footer-stores {
        padding-top: 0;
        align-items: center;
    }
    
    .footer-store {
        flex-direction: column;
        align-items: center;
        gap: 4px;
        text-align: center;
    }
}

/* Copyright */
.footer-copyright {
    background: linear-gradient(135deg, #2d3436 0%, #343a40 100%);
    color: #adb5bd;
    padding: 24px 0;
    font-size: 13px;
}

.footer-copyright a {
    color: #fff;
    text-decoration: none;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .advantages-v2 {
        padding: 20px 16px;
    }
    
    .advantages-v2-container {
        gap: 8px;
    }
    
    .advantages-v2-row {
        gap: 8px;
    }
    
    .advantage-v2-item {
        padding: 10px 14px;
        border-radius: 40px;
    }
    
    .advantage-v2-icon {
        font-size: 18px;
    }
    
    .advantage-v2-text {
        font-size: 12px;
    }
}

@media (max-width: 500px) {
    .advantages-v2-row {
        flex-direction: column;
        width: 100%;
    }
    
    .advantage-v2-item {
        justify-content: center;
    }
}


