/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/
/* Cobra Cali Flower - Floating Social Buttons */

.cobra-social-floating {
    position: fixed !important;
    right: 20px !important;
    bottom: 120px !important;
    z-index: 999999 !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 14px !important;

    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
}

.cobra-social-floating a {
    box-sizing: border-box !important;

    width: 64px !important;
    height: 64px !important;

    min-width: 64px !important;
    min-height: 64px !important;

    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 50% !important;
    border: 3px solid #ffffff !important;

    color: #ffffff !important;
    text-decoration: none !important;

    overflow: hidden !important;

    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.30),
        0 0 0 4px rgba(255, 255, 255, 0.15) !important;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease !important;
}

.cobra-social-floating  .cobra-social-whatsapp{
    
    border:0px !important;
}

.cobra-social-floating svg {
    width: 34px !important;
    height: 34px !important;

    display: block !important;

    margin: 0 !important;
    padding: 0 !important;
}

.cobra-social-floating svg rect,
.cobra-social-floating svg circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.cobra-social-floating svg .cobra-dot {
    fill: currentColor;
    stroke: none;
}

/* Instagram */
.cobra-social-instagram {
    background: linear-gradient(
        135deg,
        #feda75,
        #fa7e1e,
        #d62976,
        #962fbf,
        #4f5bd5
    ) !important;
}

/* WhatsApp */
.cobra-social-whatsapp {
    /*background: #25D366 !important;*/
}

/* Hover */
.cobra-social-floating a:hover {
    transform: scale(1.12) !important;

    box-shadow:
        0 9px 25px rgba(0, 0, 0, 0.35),
        0 0 0 6px rgba(255, 255, 255, 0.18) !important;
}


.cobra-social-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: whatsappPulse 1.2s ease-in-out infinite;
    transform-origin: center;
}

.cobra-social-whatsapp img {
    width: 64px;
    height: 64px;
    display: block;
}

@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}
/* Mobile */
@media (max-width: 600px) {

    .cobra-social-floating {
        right: 12px !important;
        bottom: 90px !important;
        gap: 10px !important;
    }

    .cobra-social-floating a {
        width: 58px !important;
        height: 58px !important;

        min-width: 58px !important;
        min-height: 58px !important;
    }

    .cobra-social-floating svg {
        width: 30px !important;
        height: 30px !important;
    }
}