*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
}

/* æµ®åŠ¨å±‚æ ·å¼ */
#summerset {
    position: fixed;
    bottom: 230px;
    right: 5px;
    z-index: 9999;
    cursor: move;
    /* ä¿®æ”¹ä¸ºmoveå…‰æ ‡ */
    transition: transform 0.3s ease;
    animation: pulse 2s infinite;
    user-select: none;
    /* é˜²æ­¢æ‹–æ‹½æ—¶é€‰ä¸­æ–‡æœ¬ */
    touch-action: none;
    /* é˜²æ­¢è§¦æ‘¸é»˜è®¤è¡Œä¸º */
}

#summerset:hover {
    transform: scale(1.1) rotate(5deg);
    animation: none;
}

#summerset img {
    width: 65px;
    height: 65px;
    pointer-events: none;
    /* é˜²æ­¢å›¾ç‰‡å¹²æ‰°æ‹–æ‹½ */
}

/* å¢žåŠ æ‹–æ‹½æ—¶çš„æ ·å¼ */
#summerset.dragging {
    cursor: grabbing;
    animation: none;
    transform: scale(1.1);
    opacity: 0.9;
}

/* åœ†å½¢æµ®å±‚å®¹å™¨ */
.floating-circles {
    position: fixed;
    z-index: 999998;
    display: flex;
    flex-direction: column;
    gap: 13px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.floating-circles.visible {
    opacity: 1;
    pointer-events: auto;
}

/* å•ä¸ªåœ†å½¢æŒ‰é’® */
.circle-btn {
    width: 200px;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: right;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: float 3s ease-in-out infinite;
    margin-top: -25px;
}


.circle-btn:nth-child(1) {
    animation-delay: 0.1s;
}

.circle-btn:nth-child(2) {
    animation-delay: 0.2s;
}

.circle-btn:hover {
    transform: scale(1.1) rotate(5deg);
}

.circle-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.0);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.circle-btn:hover::before {
    opacity: 1;
}

.circle-btn i {
    font-size: 24px;
    color: white;
}

.circle-btn .tooltip {
    position: absolute;
    bottom: 25px;
    right: 3%;
    background: rgba(255, 255, 255, 0.98);
    color: #006400;
    padding: 5px 10px;
    border-radius: 30px;
    font-size: 18px;
    white-space: nowrap;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    z-index: -1;
    padding-right: 60px;
    padding-left: 20px;
    min-width: 170px;
}


.circle-btn:hover .tooltip {
    opacity: 1;
}

.circle-btn .tel {
    color: #FF6B00;
    border-left: 3px solid #FF6B00;
    height: 60px;
    padding-top: 16px;
}

.circle-btn .whatsapp {
    color: #00a800;
    border-left: 3px solid #00a800;
}

.close-btn {
    position: absolute;
    top: -50px;
    right: 10px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* ä¿®æ”¹è¿™é‡Œï¼šå¼¹å‡ºå±‚æ˜¾ç¤ºæ—¶å…³é—­æŒ‰é’®ä¹Ÿæ˜¾ç¤º */
.floating-circles.visible .close-btn {
    opacity: 1;
}

.close-btn i {
    font-size: 14px;
}

.icon_img_set {
    max-width: 65px;
    margin-bottom: 13px;
}

/* åŠ¨ç”»æ•ˆæžœ */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* å“åº”å¼è®¾è®¡ */
@media (max-width: 768px) {


    #summerset {
        bottom: 230px;
        right: 7px;
    }

    #summerset img {
        width: 60px;
        height: 60px;
    }

    /* å•ä¸ªåœ†å½¢æŒ‰é’® */
    .circle-btn {
        width: 200px;
        height: 100px;

    }

}