/* Simple Footer - 3 Columns Side by Side */

.footer-widgets-area {
    background: #f5f5f5;
    padding: 40px 0;
}

.footer-widgets-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 20px !important;
    padding: 0 2em !important;
    box-sizing: border-box !important;
    width: 100% !important;
}

.footer-column {
    flex: 1 !important;
    background: #fff;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 8px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
}

/* Footer column headings */
.footer-column h3 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #000 !important;
    margin-bottom: 15px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    text-align: center !important;
}

/* Address text - Yoast Local SEO */
.wpseo-address-wrapper {
    font-size: 16px !important;
    line-height: 1.8 !important;
    color: #333 !important;
    margin-bottom: 20px !important;
}

.wpseo-address-wrapper .street-address {
    font-size: 16px !important;
    font-weight: 600 !important;
    display: block !important;
    margin-bottom: 5px !important;
}

.wpseo-address-wrapper .locality,
.wpseo-address-wrapper .region,
.wpseo-address-wrapper .postal-code {
    font-size: 16px !important;
}

/* Opening hours styling - Yoast Local SEO table */
.wpseo-opening-hours-wrapper {
    margin-top: 20px !important;
    padding: 20px !important;
    background: #f9f9f9 !important;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    text-align: center !important;
}

.wpseo-opening-hours {
    font-size: 16px !important;
    width: auto !important;
    margin: 0 auto !important;
    display: inline-block !important;
}

.wpseo-opening-hours td.day {
    font-weight: 700 !important;
    color: #000 !important;
    padding: 8px 12px 8px 0 !important;
    font-size: 16px !important;
    text-align: left !important;
}

.wpseo-opening-hours td.time {
    padding: 8px 0 !important;
    font-size: 16px !important;
    color: #333 !important;
    text-align: left !important;
}

.wpseo-opening-hours td.time span {
    font-size: 16px !important;
}

/* Footer Bottom Bar */
.footer-bottom {
    background: #fff;
    padding: 30px 20px;
    border-top: 1px solid #e0e0e0;
}

.footer-bottom-content {
    text-align: center;
}

.footer-branding {
    margin-bottom: 15px;
}

.footer-branding img {
    max-height: 60px;
    width: auto;
}

.footer-copyright {
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.footer-navigation {
    display: none;
}

.footer-social {
    margin-top: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
    color: #fff;
    font-size: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* Mobile - stack vertically */
@media (max-width: 767px) {
    .footer-widgets-grid {
        flex-direction: column;
        padding: 0 1em !important;
    }
    
    .footer-column {
        width: 100%;
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
}
