.watcher-widget {
    background-color: #ffffff;
    padding: 10px;
    border: 1px solid #e9e9e9;
    border-radius: 10px;

    display: none;       /* 처음에는 완전히 숨김 */
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

/* display 변경을 위한 클래스 */
.watcher-widget.show {
    display: block;
    opacity: 1;
    visibility: visible;
}

.watcher-widget .watcher-widget-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.watcher-widget .watcher-widget-title-wrapper img.watcher-widget-close {
    width: 14px !important;
    height: 14px !important;
    cursor: pointer;
    vertical-align: unset;
}

.watcher-widget-title {
    font-weight: 700;
}

.watcher-widget-title span {
    color: #7c5aff;
}

.pro-detail {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 10px;
}

.watcher-widget .watcher-widget-pro-wrap {
    border: 1px solid rgb(233, 233, 233);
    border-radius: 10px;
    margin-top: 20px;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    padding: 10px 20px 10px 20px;
    cursor: pointer;
    transition: 0.3s;
}

.watcher-widget .watcher-widget-pro-wrap .pro-info {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 33px;
}

.watcher-widget .product-type a {
    color: rgb(102, 102, 102);
    font-family: "Noto Sans KR";
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: -0.28px;
    margin-bottom: 2px;
}

.watcher-widget .product-name a {
    max-width: 290px;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: rgb(0, 0, 0);
    font-family: "Noto Sans KR" !important;
    font-size: 14px !important;
    font-style: normal !important;
    font-weight: 700 !important;
    line-height: 160% !important;
    letter-spacing: -0.36px !important;
    margin-bottom: 8px !important;
}

.watcher-widget img {
    width: 80px;
    height: 80px;
}

@media (max-width: 770px) {
    .watcher-widge .watcher-widget-pro-wrap {
        border-radius: 6px;
        margin-top: 10px;
        padding: 24px 20px 25px 22px;
    }

    .watcher-widge .watcher-widget-pro-wrap .pro-info {
        gap: 22px;
    }

    .watcher-widge .watcher-widget-pro-wrap .pro-tit {
        font-size: 12px;
    }
}