/* ================================================================
   TADE FOOTWEARS - Global Custom Styles
   File: assets/templates/basic/css/custom.css
================================================================ */

/* ── HEADER LOGO SIZE ─────────────────────────────────────────── */
.header-wrapper .logo a {
    width: 130px !important;
    max-width: 130px !important;
}
.header-wrapper .logo img {
    width: 100% !important;
    height: auto !important;
    max-height: 50px !important;
    object-fit: contain !important;
}
@media (max-width: 991px) {
    .header-wrapper .logo a {
        width: 100px !important;
        max-width: 100px !important;
    }
}

/* ── FOOTER LOGO SIZE ─────────────────────────────────────────── */
.footer-logo {
    max-width: 120px !important;
    width: 120px !important;
    height: auto !important;
    margin-bottom: 1rem !important;
    object-fit: contain !important;
}
.footer-widget .logo {
    max-width: 120px !important;
}

/* ── WHATSAPP FLOATING BUTTON ─────────────────────────────────── */
.tade-whatsapp-btn {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    padding: 10px 16px 10px 12px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: all 0.3s ease;
    animation: tadeWABounce 2.5s ease-in-out infinite;
}
.tade-whatsapp-btn:hover {
    background: #128C7E;
    color: #ffffff;
    transform: scale(1.06);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
    animation: none;
}
.tade-whatsapp-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.tade-whatsapp-text {
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: 0.3px;
}
@keyframes tadeWABounce {
    0%, 100% { transform: translateY(0px); box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
    50%       { transform: translateY(-6px); box-shadow: 0 10px 28px rgba(37,211,102,0.55); }
}
@media (max-width: 575px) {
    .tade-whatsapp-btn {
        bottom: 80px;
        right: 16px;
        padding: 12px;
        border-radius: 50%;
    }
    .tade-whatsapp-text { display: none; }
}/* Your custom css */