/* BASIC css start */
/* ¸ÞÀÌÅ©¼¥ Àü¿ª CSS ¹«·ÂÈ­ */
#contentWrap 
{
    position: unset;
    width: auto;
    margin-left: unset;
    margin-right: unset;
}

#breadCrumbs a, #breadCrumbs strong 
{
    font-size: 0.8125rem;
    font-weight: 500;
}

/* »óÇ° Ä«µå ÄÁÅ×ÀÌ³Ê */
#productBody .product-item 
{
    position: relative;
}

/* »óÇ° ÀÌ¹ÌÁö ·¡ÆÛ Hover */
#productBody .product-item .product-image-wrap 
{
    transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#productBody .product-item:hover .product-image-wrap 
{
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); 
    border-color: #dddddd;
}

#productBody .product-quick-view 
{
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.45s ease;
}

#productBody .product-quick-view 
{
    opacity: 1;
}
@media (min-width:768px)
{
    #productBody .product-quick-view 
    {
        opacity: 0;
    }
}

#productBody .product-item:hover .product-quick-view 
{
    opacity: 1;
}


/* »óÇ° Á¤º¸ ÅØ½ºÆ® */
#productBody .product-info 
{
    text-align: left;
}

/* »óÇ°¸í - 2ÁÙ ¸»ÁÙÀÓÇ¥ */
#productBody .product-name 
{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

#productBody .pagination-link 
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    color: #6f7987;
    background-color: #ededed;
    font-size: 13px;
    transition: all 0.25s ease;
}

#productBody .pager .pagination-link:hover
{
    color: #545b64;
    border-color: #d1d1d1;
    background-color: #d1d1d1;
}
/* BASIC css end */

