:root {
    --footer-bg: #fff0f3;
    --footer-text: #000000;
    --footer-white: #371f33;
    --footer-accent: #ff8fa3; /* El rosa de Lucy's System */
    --footer-border: #371f33;
}

.shop-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 60px;
}

.footer-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-text {
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.footer-title {
    color: var(--footer-white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: var(--footer-accent);
}

/* Enlaces */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--footer-text);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--footer-accent);
    padding-left: 5px;
}

/* Contacto */
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-item i {
    color: var(--footer-accent);
}

/* Redes Sociales */
.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: white;
    color: var(--footer-white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.social-icon:hover {
    background-color: var(--footer-accent);
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    background-color: #0b0f19;
    padding: 25px 20px;
    border-top: 1px solid var(--footer-border);
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 0.85rem;
}


/* Responsividad */
@media (max-width: 992px) {
    .footer-main-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-main-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-item {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 20px;
    }
}