.black-line-footer {
    background-color: #f8f8f8;
    border-top: 1px solid #e0e0e0;
    padding: 30px 0 0 0;
    font-family: inherit;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-column {
    flex: 1;
    min-width: 260px;
}

/* Brand Column */
.footer-logo {
    text-align: left;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 6px;
    display: block;
}

.tagline {
    color: #666666;
    font-size: 14px;
    margin: 0 0 20px 0;
    font-style: italic;
}

.impact-counter h4 {
    color: #111111;
    font-size: 16px;
    margin: 0 0 10px 0;
}

.counter-stat {
    margin-bottom: 10px;
}

.counter-number {
    display: block;
    color: #111111;
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
}

.counter-label {
    color: #666666;
    font-size: 14px;
}

.trail-partners {
    color: #666666;
    font-size: 12px;
    margin: 0;
    line-height: 1.4;
}

/* Support Column */
.footer-support h4 {
    color: #111111;
    font-size: 16px;
    margin: 0 0 15px 0;
}

.footer-support ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.footer-support li {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-support a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-support a:hover {
    color: #111111;
    text-decoration: underline;
}

.footer-support li:not(:has(a)) {
    color: #666666;
}

/* Connect Column */
.footer-connect h4 {
    color: #111111;
    font-size: 16px;
    margin: 0 0 15px 0;
}

.social-links-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.social-link-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.social-link-footer:hover {
    color: #111111;
}

.social-link-footer img {
    width: 20px;
    height: 20px;
}

/* Newsletter */
.newsletter-signup {
    margin-bottom: 20px;
}

.newsletter-signup h4 {
    color: #111111;
    font-size: 16px;
    margin: 0 0 8px 0;
}

.newsletter-signup p {
    color: #666666;
    font-size: 14px;
    margin: 0 0 15px 0;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.newsletter-input:focus {
    outline: none;
    border-color: #111111;
}

.newsletter-button {
    padding: 8px 16px;
    background-color: #111111;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-button:hover {
    background-color: #333333;
}

/* Trust Signals */
.trust-signals {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trust-item {
    font-size: 12px;
    color: #666666;
    padding: 4px 8px;
    background-color: #f0f0f0;
    border-radius: 3px;
    text-align: center;
}

/* Bottom Bar */
.footer-bottom {
    background-color: #111111;
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: #cccccc;
    font-size: 14px;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-column {
        min-width: auto;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-links {
        justify-content: center;
    }
}


/* === WooCommerce Attribute Swatch: Selected State - Black BG, White Text === */
.variations .variable-item.selected,
.variations .variable-item[aria-checked="true"] {
    background: #111111 !important;
    border-color: #111111 !important;
}
.variations .variable-item.selected .variable-item-span,
.variations .variable-item[aria-checked="true"] .variable-item-span {
    color: #FFFFFF !important;
}