/**
 * FFW External Image - Frontend CSS
 * WooCommerce 기본 갤러리 구조를 건드리지 않음
 */

/* 상품 리스트 hover 래퍼 */
.ffw-img-wrap {
    display: block;
    overflow: hidden;
    line-height: 0;
}

.ffw-img-wrap img {
    transition: opacity 0.2s ease;
    width: 100%;
    height: auto;
}

.ffw-img-wrap:hover img {
    opacity: 0.9;
}
