html, body {
    font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Apple SD Gothic Neo",
    "Noto Sans KR",
    "Malgun Gothic",
    "맑은 고딕",
    sans-serif;
    letter-spacing: -0.02em;
}

        A:link      { color: #0066CC; text-decoration: none; }
        A:visited   { color: #0066CC; text-decoration: none }
        A:active    { text-decoration: none }
        A:hover     { BACKGROUND-COLOR: none; text-decoration: none; Color: #FF0099}
        div     { margin:auto; line-height:120%; text-align:center; max-width:100%; max-height:none; }
        span  { font-size: 0.875em; line-height: 1.1em; color: #444444;}
        a:hover img  {
    animation-name: shake;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
}

@keyframes shake{
    0% {
        transform: translateX(0deg);
    }
    25% {
        transform: rotate(-3deg);
    }
    50% {
        transform: rotate(3deg);
    }
    75% {
        transform: rotate(-2deg);
    }
    100% {
        transform: translateX(0deg);
    }

}

.product {position: relative; display: inline-block; margin: 0px;}
.product img {width: 100%; display: block;}
.sale-badge {position: absolute; top: 0px; left: 0px; background: #EB1B8B; color: #fff; padding: 6px 8px; font-size: 14px; font-weight: bold; border-radius: 12px 0px 12px 0px;}
.new-badge {position: absolute; top: 0px; left: 0px; background: #7B52EE; color: #fff; padding: 6px 8px; font-size: 14px; font-weight: bold; border-radius: 12px 0px 12px 0px;}
.ad-badge {position: absolute; top: 0px; left: 0px; background: #EB1B8B; color: #fff; padding: 6px 8px; font-size: 14px; font-weight: bold; border-radius: 0px 0px 12px 0px;}
.info-badge {position: absolute; top: 0px; left: 0px; background: #6BA147; color: #fff; padding: 6px 8px; font-size: 14px; font-weight: bold; border-radius: 12px 0px 12px 0px;}
.update-badge {position: absolute; top: 0px; right: 10px; background: #BAB0B0; color: #fff; padding: 6px 8px; font-size: 12px; border-radius: 0px 0px 12px 12px;}

#topBtn {
    display: none;
    position: fixed;
    right: 10px;
    bottom: 20px;
    width: 58px;
    height: 58px;
    background: rgba(51, 51, 51, 0.9);
    color: white;
    text-align: center;
    line-height: 58px;
    border-radius: 50%;
    text-decoration: none;
}
#topBtn:hover {
    background: rgba(51, 51, 51, 1);
}

#leftBtn1 {
    display: none;
    position: fixed;
    left: 10px;
    bottom: 148px;
    width: 58px;
    height: 58px;
    background: rgba(30, 30, 77, 0.9);
    color: white;
    text-align: center;
    line-height: 58px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 0.8em;
}
#leftBtn1:hover {
    background: rgba(30, 30, 77, 1);
}

#leftBtn2 {
    display: none;
    position: fixed;
    left: 10px;
    bottom: 84px;
    width: 58px;
    height: 58px;
    background: rgba(0, 102, 204, 0.9);
    color: white;
    text-align: center;
    line-height: 58px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 0.8em;
}
#leftBtn2:hover {
    background: rgba(0, 102, 204, 1);
}

#leftBtn3 {
    display: none;
    position: fixed;
    left: 10px;
    bottom: 20px;
    width: 58px;
    height: 58px;
    background: rgba(204, 0, 0, 0.9);
    color: white;
    text-align: center;
    line-height: 58px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 0.8em;
}
#leftBtn3:hover {
    background: rgba(204, 0, 0, 1);
}

.image-box {
    position: relative;
    display: inline-block;
    padding: 2px;
    border-radius: 14px;
    overflow: hidden;
}

.image-box::before {
    content: "";
    position: absolute;
    inset: -50%;
background: conic-gradient(
        #ff0080,
        #ff4500,
        #ffff00,
        #39ff14,
        #00ffff,
        #0080ff,
        #8b00ff,
        #ff00ff,
        #ff0080
    );
    animation: rotateLight 2s linear infinite;
}

.image-box::after {
    content: "";
    position: absolute;
    inset: 4px;
    background: #fff;
    border-radius: 8px;
    z-index: 1;
}

.image-box img {
    position: relative;
    display: block;
    border-radius: 8px;
    z-index: 2;
}

@keyframes rotateLight {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}