/* ============================================================
   angelofyou.com — FOOTER ENHANCED CSS (v3 — 2026-07-01)
   Override Magento defaults + larger fonts, better contrast
   ============================================================ */

/* Override Magento base footer font-size (12px) */
footer.page-footer,
.page-footer {
    font-size: 16px !important;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px 40px;
}
.footer-columns .footer-column h4,
.footer-column h4 {
    font-family: "Playfair Display", serif;
    font-size: 22px !important;
    font-weight: 600;
    color: #ffffff !important;
    margin: 0 0 20px;
    letter-spacing: 0.5px;
}
.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-column ul li {
    margin-bottom: 14px;
}
.footer-column ul li a {
    color: #d0d0d0 !important;
    text-decoration: none;
    font-size: 17px !important;
    line-height: 1.7;
    transition: color 0.25s ease;
    display: inline-block;
}
.footer-column ul li a:hover {
    color: #d4a574 !important;
    padding-left: 4px;
}
.brand-column .footer-logo {
    font-family: "Playfair Display", serif;
    font-size: 32px !important;
    font-weight: 600;
    color: #ffffff !important;
    display: block;
    margin-bottom: 16px;
    letter-spacing: 1px;
}
.brand-column p {
    color: #c0c0c0 !important;
    font-size: 17px !important;
    line-height: 1.8;
    margin: 0 0 20px;
    max-width: 320px;
}
.footer-contact p {
    color: #d0d0d0 !important;
    font-size: 16px !important;
    margin: 10px 0;
    line-height: 1.7;
}
.footer-contact a {
    color: #d0d0d0 !important;
    text-decoration: none;
}
.footer-contact a:hover {
    color: #d4a574 !important;
}
.social-icons {
    display: flex;
    gap: 14px;
    margin-top: 24px;
}
.social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #555;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d0d0d0;
    transition: all 0.3s ease;
    font-size: 18px;
}
.social-icons a:hover {
    border-color: #d4a574;
    color: #d4a574;
    transform: translateY(-2px);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 30px;
    border-top: 1px solid #333;
}
.footer-bottom .copyright {
    color: #bbb !important;
    font-size: 15px !important;
}
.footer-bottom .copyright a {
    color: #ddd !important;
    text-decoration: none;
}
.footer-bottom .copyright a:hover {
    color: #d4a574 !important;
}
.payment-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}
.payment-icons img {
    height: 28px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s;
}
.payment-icons img:hover {
    opacity: 1;
}

/* Newsletter subscription bar */
.footer-newsletter {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 30px;
    border-top: 1px solid #333;
    text-align: center;
}
.footer-newsletter p {
    color: #d0d0d0 !important;
    font-size: 16px !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.footer-newsletter form {
    display: flex;
    gap: 0;
    max-width: 480px;
    margin: 0 auto;
}
.footer-newsletter input[type="email"] {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid #555;
    border-right: none;
    border-radius: 4px 0 0 4px;
    background: #1a1a1a;
    color: #fff;
    font-size: 16px;
    outline: none;
}
.footer-newsletter input[type="email"]::placeholder {
    color: #888;
}
.footer-newsletter button {
    padding: 14px 28px;
    background: #d4a574;
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}
.footer-newsletter button:hover {
    background: #c49464;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .footer-columns {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 0 20px 30px;
    }
    .brand-column {
        grid-column: 1 / -1;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .footer-column h4 {
        font-size: 20px !important;
    }
    .footer-column ul li a {
        font-size: 16px !important;
    }
    .brand-column p {
        font-size: 16px !important;
    }
}
@media (max-width: 480px) {
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .footer-column ul li a {
        font-size: 17px !important;
    }
    .footer-contact p {
        font-size: 16px !important;
    }
}
