/**
 * ICT4YOU WhatsApp — Frontend Styles
 */

/* ============================================
   Shop/Archive page button
   ============================================ */
.ict4you-whatsapp-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background-color: #25D366 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 10px 20px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    font-family: 'Inter', sans-serif !important;
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    width: 100%;
    box-sizing: border-box;
    margin-top: 10px;
}

.ict4you-whatsapp-btn:hover {
    background-color: #1DA851 !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* ============================================
   Single product page button
   ============================================ */
.ict4you-whatsapp-single-wrap {
    margin-top: 20px;
    margin-bottom: 20px;
}

.ict4you-whatsapp-btn-single {
    padding: 14px 32px !important;
    font-size: 16px !important;
    width: auto;
    min-width: 280px;
}

.ict4you-whatsapp-hint {
    color: #888888;
    font-size: 13px;
    margin-top: 8px;
    font-style: italic;
}

@media (max-width: 767px) {
    .ict4you-whatsapp-btn-single {
        width: 100% !important;
        min-width: unset;
        padding: 12px 24px !important;
        font-size: 15px !important;
    }
}

/* ============================================
   Floating WhatsApp Button
   ============================================ */
.ict4you-wa-float {
    position: fixed;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.ict4you-wa-float:hover {
    transform: scale(1.05);
}

.ict4you-wa-float-icon {
    width: 56px;
    height: 56px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease;
    flex-shrink: 0;
}

.ict4you-wa-float:hover .ict4you-wa-float-icon {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.ict4you-wa-float-icon svg {
    width: 30px;
    height: 30px;
    fill: #ffffff;
}

.ict4you-wa-float-label {
    background-color: #ffffff;
    color: #333333;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    line-height: 1.3;
}

@media (max-width: 767px) {
    .ict4you-wa-float-icon {
        width: 50px;
        height: 50px;
    }

    .ict4you-wa-float-icon svg {
        width: 26px;
        height: 26px;
    }

    .ict4you-wa-float-label {
        display: none;
    }
}
