/* ============================================================
   Ventova Store — Footer Styles
   ============================================================ */

.vs-footer {
    background: var(--vs-bg-dark);
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--vs-space-3xl);
}

/* ── Footer Widgets ── */
.vs-footer-widgets {
    padding: var(--vs-space-3xl) 0 var(--vs-space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vs-footer-widgets .vs-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--vs-space-2xl);
}

.vs-footer .widget-title {
    font-family: var(--vs-font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--vs-space-lg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vs-footer .widget ul li {
    margin-bottom: var(--vs-space-sm);
}

.vs-footer .widget ul li a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    transition: color 0.15s ease, padding-left 0.15s ease;
}

.vs-footer .widget ul li a:hover {
    color: var(--vs-accent);
    padding-left: 6px;
}


/* ── Footer Bottom ── */
.vs-footer-bottom {
    padding: var(--vs-space-lg) 0;
}

.vs-footer-bottom .vs-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--vs-space-md);
}

.vs-footer-copyright {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
}

.vs-footer-social {
    display: flex;
    gap: var(--vs-space-sm);
}

.vs-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--vs-radius-full);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    transition: var(--vs-transition);
}

.vs-footer-social a:hover {
    background: var(--vs-accent);
    color: var(--vs-bg-dark);
    transform: translateY(-2px);
}


/* ── Responsive ── */
@media (max-width: 768px) {
    .vs-footer-widgets .vs-container {
        grid-template-columns: 1fr;
        gap: var(--vs-space-xl);
    }

    .vs-footer-bottom .vs-container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .vs-footer-widgets {
        padding: var(--vs-space-xl) 0 var(--vs-space-lg);
    }

    .vs-footer-social a {
        width: 32px;
        height: 32px;
        font-size: 0.82rem;
    }
}