/* Nội dung ngắn dưới giá sản phẩm chi tiết */
.short-desc-product {
    background: #f8f8f8;
    border-left: 4px solid #ff6600;
    margin: 10px 0 0 0;
    padding: 0px 0px 15px 15px;
    font-size: 14px;
    color: #333;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    
    width: 100%;
    float: left;
}
.chitiet .short-desc-product ul {

    margin: unset;
    float: unset;
    padding: unset;
   

}
.chitiet .short-desc-product ul li{
    width:100%;
     border-bottom:unset;
}
/* CSS cho nút gọi điện ở góc trái màn hình */
.fixed-call-button {
    position: fixed;
    z-index: 999;
}

.fixed-zalo-button {
    position: fixed;
    z-index: 999;
}

.fixed-map-button {
    position: fixed;
    z-index: 999;
}

/* Zalo HCM - top nhất */
#fixed-zalo-button-hcm {
    bottom: 440px;
    left: 30px;
}

/* Zalo HN */
#fixed-zalo-button-hn {
    bottom: 360px;
    left: 30px;
}

/* Call HCM */
#fixed-call-button-hcm {
    bottom: 280px;
    left: 30px;
}

/* Call HN */
#fixed-call-button-hn {
    bottom: 200px;
    left: 30px;
}

/* Nút Google Maps HCM */
#fixed-map-button-hcm {
    bottom: 120px;
    left: 30px;
}

/* Nút Google Maps HN - dưới cùng */
#fixed-map-button-hn {
    bottom: 40px;
    left: 30px;
}

.fixed-call-button a, .fixed-zalo-button a {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.fixed-map-button a {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.call-button-circle, .zalo-button-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-button-circle {
    width: 45px;
    height: 45px;
   
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Specific size for Zalo */
.zalo-button-circle {
    width: 40px;
    height: 40px;
}

.call-button-circle {
    background: #cc0000;

}



.zalo-button-circle:before {
    animation: none;
}

.call-button-circle:before {
    border: 3px solid #28a745;
}

.zalo-button-circle:before {
    border: 3px solid #0068ff;
    animation: none;
}


.zalo-button-circle:after {
    border: 3px solid #0068ff;
    animation: none;
}

.call-button-circle i, .zalo-button-circle i {
    font-size: 24px;
    color: white;
   
}

.map-button-circle i {
    font-size: 24px;
    color: white;
    animation: shake 2s ease infinite;
}

/* Style for Zalo icon image */
.zalo-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    animation: none;
    display: block;
}

.call-button-text, .zalo-button-text {
    padding: 7px 15px;
    border-radius: 30px;
    margin-left: 10px;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
    color: white;
    line-height: 17px;
    text-align: center;
}

.map-button-text {
    padding: 7px 15px;
    border-radius: 30px;
    margin-left: 10px;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
    color: white;
    background: #1ea362;
}

.call-button-text {
    background: #cc0000;
    box-shadow: 0px 5px 15px rgba(33,136,56,0.3);
}

.zalo-button-text {
    background: #0057d5;
    box-shadow: 0px 5px 15px rgba(0,87,213,0.3);
}

.fixed-call-button a:hover .call-button-text {
    background: #bd2130;
    transform: translateY(-2px);
    box-shadow: 0px 8px 20px rgba(30,126,52,0.4);
}

.fixed-zalo-button a:hover .zalo-button-text {
    background: #004ec2;
    transform: translateY(-2px);
    box-shadow: 0px 8px 20px rgba(0,78,194,0.4);
}

.fixed-map-button a:hover .map-button-text {
    background: #bd2130;
    transform: translateY(-2px);
    box-shadow: 0px 8px 20px rgba(189,33,48,0.4);
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    20%, 40% { transform: rotate(-10deg); }
    30%, 50% { transform: rotate(10deg); }
    45% { transform: rotate(-5deg); }
    55% { transform: rotate(5deg); }
    60% { transform: rotate(0deg); }
}

@keyframes ripple {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Ẩn trên mobile */
@media (max-width: 768px) {
    .fixed-call-button, .fixed-zalo-button, .fixed-map-button {
        display: none;
    }
    .short-desc-product{
        padding:10px 10px;
        width:94%;
    }
    .chitiet .short-desc-product ul li{
        list-style-type: none;
    }
}