/* NOWA STOPKA FOTOFERIA */

.ff-footer {
    background: #1a1a1a;
    color: #d0d0d0;
    padding: 60px 20px 20px;
    border-top: 1px solid #333;
}

.ff-footer__cols {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.ff-footer__col h4 {
    color: #f6c343;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ff-footer__col p {
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 14px;
}

.ff-footer__col strong {
    color: #f6c343;
    font-weight: 600;
}

.ff-footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ff-footer__col ul li {
    margin-bottom: 12px;
}

.ff-footer__col ul li a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}

.ff-footer__col ul li a:hover {
    color: #f6c343;
    padding-left: 5px;
}

.ff-footer__col a {
    color: #f6c343;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.ff-footer__col a:hover {
    opacity: 0.8;
}

.ff-social li a {
    color: #f6c343 !important;
    font-weight: 500;
}

.ff-footer__bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
    color: #999;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.ff-footer__bottom p {
    margin: 0;
}

.ff-footer__social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ff-footer__social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #252525;
    color: #f6c343;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.ff-footer__social-icon:hover {
    background: #f6c343;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(246, 195, 67, 0.3);
}

.ff-legal {
    font-size: 12px;
    color: #999;
    line-height: 1.6;
}

/* Minimalistyczne ikony płatności - premium style */
.ff-payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: flex-start;
}

.ff-payment-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    background: #252525;
    border: 1px solid #333;
    border-radius: 6px;
    transition: all 0.3s ease;
    min-width: 60px;
    height: 40px;
}

.ff-payment-logo:hover {
    border-color: #f6c343;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(246, 195, 67, 0.2);
}

/* Responsywność */
@media (max-width: 1024px) {
    .ff-footer__cols {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .ff-footer {
        padding: 40px 15px 15px;
    }
    
    .ff-footer__cols {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ff-footer__col h4 {
        font-size: 16px;
    }
    
    .ff-footer__bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .ff-footer__social {
        justify-content: center;
    }
}

/* Ukryj starą stopkę modern-footer */
.modern-footer {
    display: none !important;
}

