.site-footer {
    background-color: var(--clr-7);
    color: white;
    padding: 50px 0 0;
}

.footer-section {
    margin-bottom: 15px;
}

/* Titolo Il Catalogo con font Galada */
.footer-title {
    color: white;
    font-size: 2rem;
    font-family: 'Galada', cursive;
    font-weight: 400;
    margin-bottom: 20px;
}

.footer-info {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-info p {
    margin-bottom: 10px;
}

.vat {
    margin-top: 15px;
    font-weight: 600;
}

/* Copyright Section */
.copyright-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 5px;
}

.copyright-section .small {
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.design-credit {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.design-credit p {
    font-size: 0.85rem;
    font-style: italic;
}

/* Footer Links */
.footer-links p {
    margin-bottom: 12px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #FFC107;
    padding-left: 5px;
}

/* Logo CCC */
.ccc-logo {
    padding-top: 20px;
}

.footer-logo {
    max-width: 150px;
    opacity: 0.9;
    transition: all 0.3s;
}

.footer-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Bottom Bar Nero */
.footer-bottom {
    background-color: var(--clr-9);
    padding: 20px 0;
    margin-top: 30px;
}

.footer-bottom .contacts h5 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-bottom .contacts p {
    color: white;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom .contacts i {
    color: #FFC107;
    margin-right: 8px;
}

.bottom-logo {
   height:50px;
}

.bottom-logo:hover {
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .site-footer {
        text-align: center;
        padding: 30px 0 0;
    }
    
    .footer-title {
        font-size: 1.6rem;
    }
    
    .footer-section {
        margin-bottom: 25px;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom .text-end {
        text-align: center !important;
        margin-top: 20px;
    }
}