.floating-actions .cta-button {
    margin-top: 0;
}
.welcome-wrapper {
    display: none;
}
/* ===================================
   SCHOVÁNÍ PŮVODNÍ SHOPTET PATIČKY
   =================================== */
#footer {
    display: none !important;
}

/* ===================================
   NOVÝ DESIGN PATIČKY
   =================================== */
.custom-footer {
    background: #FAF6F3;
    padding: 60px 20px 30px;
    font-family: krete, sans-serif;
}

.custom-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Levá část - Logo + tlačítko */
.footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-logo {
    width: 150px;
    height: auto;
}

.footer-contact-btn {
    background: #D64B1A;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: background 0.3s ease;
}

.footer-contact-btn:hover {
    background: #B83E15;
    text-decoration: none;
    color: white;
}

.footer-contact-detail {
    color: #513318 !important;
}

.footer-contact-detail.email {
    text-decoration: underline;
    margin-bottom: 6px;
}

/* Pravá část - Kontakty */
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contacts-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1F421C;
    margin: 0 0 20px 0;
}

.footer-contact-person {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 0;
}

.footer-contact-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-contact-name {
    font-size: 22px;
    font-weight: 600;
    color: #513318;
    margin: 0;
}

.footer-contact-detail {
    font-size: 14px;
    color: #513318;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-detail:hover {
    color: #D64B1A;
    text-decoration: none;
}

/* Spodní část - odkazy + copyright */
.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid #E5E0DC;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-link {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #D64B1A;
    text-decoration: none;
}

.footer-copyright {
    font-size: 14px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-shoptet {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-shoptet:hover {
    color: #D64B1A;
    text-decoration: none;
}

.footer-shoptet img {
    width: 17px;
    height: 17px;
}

/* ===================================
   RESPONZIVITA
   =================================== */
@media (max-width: 768px) {
    .custom-footer {
        padding: 40px 20px 20px;
    }
    
    .custom-footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-left {
        align-items: center;
        text-align: center;
    }
    
    .footer-right {
        align-items: center;
    }
    
    .footer-contacts-title {
        text-align: center;
    }
    
    .footer-contact-person {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        gap: 15px;
    }
    
    .footer-copyright {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .footer-links {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .footer-link {
        display: block;
    }
}