.softx-set-front {
    position: relative;
}

.softx-set-front .dot {
    position: absolute;
    width: 14px;
    height: 14px;
    background: #ff4b8a;           /* màu hồng */
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;

    /* glow */
    box-shadow: 0 0 0 4px rgba(255,75,138,0.25),
                0 0 10px rgba(255,75,138,0.6);

    animation: softx-pulse 1.8s infinite;
    transition: all .2s ease;
    cursor: pointer;
}

.softx-set-front .dot a.set-quick-view {
    width: 14px;
    height: 14px;
    opacity: 0;
}

.softx-set-front .dot:hover {
    transform: translate(-50%, -50%) scale(1.35);
    box-shadow: 0 0 0 6px rgba(255,75,138,0.3),
                0 0 14px rgba(255,75,138,0.8);
}

/* hiệu ứng glow lan tỏa */
@keyframes softx-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255,75,138,0.5);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255,75,138,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255,75,138,0);
    }
}

/* NÚT MỞ */
.softx-set-open {
    color: #222;
    border: 0;
    cursor: pointer;
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 75px;
    background: #fff;
    height: 75px;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

/* PANEL NẰM TRÊN ẢNH */
.softx-set-panel {
    position: absolute;
    left: 20px;
    width: calc(100% - 40px);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transition: .25s;
    z-index: 20;
    right: 20px;
    bottom: 20px;
    overflow: hidden;
}

.softx-set-panel.active{
    opacity: 1;
    visibility: visible;
}

/* overlay mờ trên ảnh */
.softx-set-front:has(.softx-set-panel.active)::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.35);
    z-index:10;
}

/* Header */
.softx-set-panel-header {
    display: flex;
    justify-content: space-between;
    padding: 12px 14px;
    border-bottom: 1px solid #eee;
    font-weight: bold;
    align-items: center;
}

.softx-set-panel-header span:first-child {
    font-size: 22px;
    line-height: 48px;
    font-weight: 500;
}

.softx-set-close {
    cursor: pointer;
    font-size: 22px;
    display: flex;
    align-items: center;
}

.softx-set-close svg {
    transform: rotate(45deg);
}

/* List product */
.softx-set-products{
    padding:12px 12px 0;
    max-height:360px;
    overflow:auto;
}

.softx-set-item{
    display:flex;
    gap:10px;
    margin-bottom:12px;
    border-bottom:1px solid #eee;
    padding-bottom:10px;
}

.softx-set-item:last-child{
   margin: 0;
}

.softx-set-item .img {
    width: 50px;
    position: relative;
    padding-top: 66px;
}

.softx-set-item img{
    width:100%;
    height:100%;
    border-radius:4px;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
}

.softx-set-item .info{
    flex:1;
}

.softx-set-item .title {
    font-size: 16px;
    margin-bottom: 4px;
    font-weight: 500;
    color: #000;
}

.softx-set-item .price {
    margin-bottom: 6px;
    color: #222;
}

.softx-set-item .price span.amount {
    font-weight: 400;
}

.softx-set-item .price ins .amount {
    color: #f85712;
}

.softx-set-item .button{
    padding:6px 10px;
    font-size:12px;
}

.set-quick-view {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    border: 1px solid #ddd;
    background: #f2f2f2;
    transition: all .3s;
}

.set-quick-view svg {
    width: 17px;
}

.set-quick-view:hover {
    background: #222;
}

.set-quick-view:hover svg {
    color: #fff;
}