/* ================================================================
   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; }
}




/* ══════════════════════════════════════════════════
   TADEFOOTWEARS - TRANSPARENT PRODUCT CARD
   No background, no border, shoe floats freely
══════════════════════════════════════════════════ */

/* Nuke ViserMart default product-card styles */
html body .product-card,
html body .product-card:hover,
html body .product-card.active {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

/* ── Card wrapper - fully transparent ── */
.tfc {
    position: relative;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    transition: transform 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.tfc:hover {
    transform: translateY(-8px);
}

/* ── Discount badge ── */
.tfc__badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #D4A63F;
    color: #002A5C;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 3;
    letter-spacing: 0.3px;
}

/* ── Action buttons ── */
.tfc__actions {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.tfc:hover .tfc__actions { opacity: 1; }
.tfc__action-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.9);
    color: #002A5C;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.tfc__action-btn:hover,
.tfc__action-btn.active {
    background: #D4A63F;
    color: #002A5C;
}

/* ── Image - no background box ── */
.tfc__img-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 260px;
    background: transparent;
    text-decoration: none;
    overflow: visible;
    flex-shrink: 0;
    margin-bottom: 14px;
}
.tfc__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 12px 24px rgba(0,42,92,0.15));
}
.tfc:hover .tfc__img {
    transform: scale(1.05);
    filter: drop-shadow(0 20px 36px rgba(0,42,92,0.22));
}

/* ── Thin separator line ── */
.tfc__img-link::after {
    display: none;
}

/* ── Card body ── */
.tfc__body {
    padding: 0 4px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

/* Product name */
.tfc__name {
    display: block;
    font-family: 'Montserrat', 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #002A5C;
    text-decoration: none;
    line-height: 1.3;
    transition: color 0.3s ease;
}
.tfc__name:hover { color: #D4A63F; }

/* Category */
.tfc__cat {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
}

/* Price */
.tfc__price { margin: 4px 0; }
.tfc__price ins,
.tfc__price .main-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #002A5C;
    text-decoration: none;
}
.tfc__price del,
.tfc__price .del-price {
    font-size: 12px;
    color: #bbb;
    font-weight: 400;
    text-decoration: line-through;
    margin-left: 4px;
}

/* Rating */
.tfc__rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    margin-bottom: 4px;
}
.tfc__rating-count { color: #aaa; }

/* Add to Cart button */
.tfc__cart {
    width: 100%;
    padding: 10px 14px;
    background: transparent;
    border: 1.5px solid #002A5C;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #002A5C;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: auto;
}
.tfc__cart:hover {
    background: #002A5C;
    color: #ffffff;
}
.tfc__cart i { font-size: 15px; }

/* Mobile */
@media (max-width: 767px) {
    .tfc__img-link { height: 200px; }
    .tfc__name { font-size: 13px; }
    .tfc__cart { padding: 9px; font-size: 10px; }
}
@media (max-width: 480px) {
    .tfc__img-link { height: 170px; }
}