/* --- PREMIUM LUXURY FOOTER --- */
.site-footer-premium {
    background: #3d2b1f; /* Un maro cald, nu negru */
    color: #fdfaf7;
    padding: 80px 0 0;
    border-top: 3px solid #d4af37; /* Linie aurie de demarcație */
    font-family: 'Inter', sans-serif;
}

.footer-grid-lx {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 50px;
}

.footer-logo {
    color: #d4af37 !important;
    font-size: 2.5rem !important;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #cebeae;
    max-width: 300px;
}

.footer-title {
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: #d4af37;
}

.footer-links-list, .footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li, .footer-contact-info li {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-links-list a {
    color: #cebeae;
    transition: 0.3s;
}

.footer-links-list a:hover {
    color: #d4af37;
    padding-left: 5px;
}

.footer-contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-info i {
    color: #d4af37;
}

.delivery-sticker {
    margin-top: 25px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px dashed rgba(212, 175, 55, 0.4);
}

.footer-copyright {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    color: #8d756b;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Ajustare Mobil */
@media (max-width: 768px) {
    .site-footer-premium { padding: 50px 0 0; text-align: center; }
    .footer-title::after { left: 50%; transform: translateX(-50%); }
    .footer-contact-info li { justify-content: center; }
    .footer-tagline { margin: 0 auto 20px; }
}