<!DOCTYPE html>
<html lang="ko"><head><script>(function(i, s, o, g, r) {
var a = s.createElement(o);
var m = s.getElementsByTagName(o)[0];
a.async = true;
a.src = g;
a.onload = function() {
if (i[r].init) {
i[r].init('https://js-error-tracer-api.cafe24.com', 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJhc3VuZ2JhdGguY2FmZTI0LmNvbSIsImF1ZCI6ImpzLWVycm9yLXRyYWNlci1hcGkuY2FmZTI0LmNvbSIsIm1hbGxfaWQiOiJhc3VuZ2JhdGgiLCJzaG9wX25vIjoxLCJwYXRoX3JvbGUiOiJNQUlOIiwibGFuZ3VhZ2VfY29kZSI6ImtvX0tSIiwiY291bnRyeV9jb2RlIjoiS1IiLCJpc195dHMiOmZhbHNlLCJpc19jb250YWluZXIiOmZhbHNlLCJ3b3Jrc3BhY2UiOiJwcm9kdWN0aW9uIn0.O4qjjmSzUgzJfV-oiJobmOIt3BIa8JuoI4cs33f3dQM', {"errors":{"path":"\/api\/v1\/store","collectWindowErrors":true,"preventDuplicateReports":true,"storageKeyPrefix":"EC_JET.MAIN","samplingEnabled":true,"samplingRate":0.5},"vitals":{"path":"\/api\/v1\/vitals","samplingEnabled":true,"samplingRate":0.3},"resources":{"path":"\/api\/v1\/resources","samplingEnabled":true,"samplingRate":0.5,"durationThreshold":3000}});
}
};
m.parentNode.insertBefore(a, m);
}(window, document, 'script', '//optimizer.poxo.com/jet/jet.js', 'EC_JET'));</script>
<script type="text/javascript">window.CAFE24 = window.CAFE24 || {};CAFE24.ROUTE = {"is_mobile":false,"is_need_route":false,"language_code":"ZZ","path":{"origin":"\/","result":"\/","prefix":""},"shop_no":0,"skin_code":"default","support_language_list":{"ar":"ar_EG","ar-EG":"ar_EG","de":"de_DE","de-DE":"de_DE","en":"en_US","en-IN":"en_IN","en-PH":"en_PH","en-US":"en_US","es":"es_ES","es-ES":"es_ES","hi":"hi_IN","hi-IN":"hi_IN","id":"id_ID","id-ID":"id_ID","it":"it_IT","it-IT":"it_IT","ja":"ja_JP","ja-JP":"ja_JP","ko":"ko_KR","ko-KR":"ko_KR","ms":"ms_MY","ms-MY":"ms_MY","pt":"pt_PT","pt-PT":"pt_PT","ru":"ru_RU","ru-RU":"ru_RU","th":"th_TH","th-TH":"th_TH","tr":"tr_TR","tr-TR":"tr_TR","vi":"vi_VN","vi-VN":"vi_VN","zh":"zh_CN","zh-CN":"zh_CN","zh-HK":"zh_HK","zh-MO":"zh_MO","zh-SG":"zh_SG","zh-TW":"zh_TW"}};</script><script type="text/javascript">if (typeof EC_ROUTE === "undefined") {
/**
* 프론트용 라우트 플러그인
* @type {{bInit: boolean, init: EC_ROUTE.init}}
* CAFE24.ROUTE 참조
*/
var EC_ROUTE = {
EC_DOMAIN_PATH_INFO: 'EC_DOMAIN_PATH_INFO',
bInit: false,
aFromList: [],
aToList: [],
aCleanFilter: null,
init: function () {
if (this.bInit || typeof CAFE24.ROUTE === 'undefined') {
return;
}
this.bInit = true;
this.aCleanFilter = [
/^shop[1-9][0-9]*$/,
/^(m|p)$/,
new RegExp('^(' + Object.keys(CAFE24.ROUTE.support_language_list).join('|') + ')$'),
/^skin-(base|skin[1-9][0-9]*|mobile[0-9]*)$/,
];
},
isNeedRoute: function ()
{
return CAFE24.ROUTE.is_need_route;
},
/**
*
* @param iShopNo
* @param bMobile
* @param sFrontLanguage
* @param sSkinCode
* @returns {*|string}
*/
getUrlDomain: function (iShopNo, bMobile, sFrontLanguage, sSkinCode)
{
var oRouteConfig = {};
if (typeof iShopNo == 'undefined') {
oRouteConfig.shop_no = CAFE24.SDE_SHOP_NUM;
} else {
oRouteConfig.shop_no = iShopNo;
}
if (typeof bMobile == 'undefined') {
oRouteConfig.is_mobile = false;
} else {
oRouteConfig.is_mobile = bMobile;
}
if (typeof sFrontLanguage == 'undefined') {
oRouteConfig.language_code = '';
}else {
oRouteConfig.language_code = sFrontLanguage; // 내부에서 로직으로 동작할땐 언어_지역 형태의 로케일 형태를 따른다.
}
if (typeof sSkinCode == 'undefined') {
oRouteConfig.skin_code = '';
}else {
oRouteConfig.skin_code = sSkinCode;
}
var sDomain = '';
if (oRouteConfig.shop_no != CAFE24.SDE_SHOP_NUM) {
// 접근된 다른 멀티샵 도메인 정보는 primary domain 를 조회해야함으로 ajax 를 통해 정보를 얻는다.
sDomain = this._getUrlDomainMultishop(oRouteConfig);
} else {
// 샵이 동일할 경우에는 접근된 domain 에 path 정보만 정리하여 반환함.
sDomain = this._getUrlDomain(oRouteConfig);
}
return sDomain;
},
_getUrlDomainMultishop: function (oRouteConfig)
{
var sDomain = '';
EC$.ajax({
type: 'GET',
url: '/exec/front/Shop/Domain',
data: {
'_shop_no' : oRouteConfig.shop_no,
'is_mobile' : oRouteConfig.is_mobile,
'language_code' : oRouteConfig.language_code,
'skin_code' : oRouteConfig.skin_code,
},
async: false,
dataType: 'json',
cache: true,
success: function(oResult) {
switch (oResult.code) {
case '0000' :
sDomain = oResult.data;
break;
default :
break;
}
return false;
}
});
return sDomain;
},
_getUrlDomain: function (oRouteConfig)
{
oRouteConfig.domain = this._getCreateHost(oRouteConfig);
return location.protocol + '//' + oRouteConfig.domain + this._getCreateUri(oRouteConfig);
},
_getCreateHost : function (oRouteConfig)
{
var sHost = location.host;
var aHost = sHost.split('.');
if (this.isBaseDomain(sHost)) {
if (aHost.length > 3) {
aHost[0] = '';
}
} else if (oRouteConfig.is_mobile) {
if (this.isMobileDomain()) {
oRouteConfig.is_mobile = false;
}
}
return aHost.filter(Boolean).join('.');
},
_getCreateUri: function (oRouteInfo)
{
var aUrl = [];
if (this.isBaseDomain() && oRouteInfo.shop_no > 1) {
aUrl.push('shop' + oRouteInfo.shop_no);
}
if (oRouteInfo.is_mobile) {
aUrl.push('m');
}
if (oRouteInfo.language_code != 'ZZ' && oRouteInfo.language_code != '') {
var iIndex = Object.values(CAFE24.ROUTE.support_language_list).indexOf(oRouteInfo.language_code);
if (iIndex !== -1) {
aUrl.push(Object.keys(CAFE24.ROUTE.support_language_list)[iIndex]);
}
}
if (this.isBaseDomain() && oRouteInfo.skin_code != 'default' && oRouteInfo.skin_code != '') {
aUrl.push('skin-' + oRouteInfo.skin_code);
}
var sUrl= '/';
if (aUrl.length > 0) {
sUrl= '/' + aUrl.join('/');
sUrl = this.rtrim(sUrl, '/');
}
return sUrl;
},
/**
* en, en-US => en_US
*/
convertValidLanguageCode: function (sUrlLanguageCode)
{
if (typeof CAFE24.ROUTE.support_language_list[sUrlLanguageCode] != 'undefined') {
return CAFE24.ROUTE.support_language_list[sUrlLanguageCode];
}
return false;
},
isMobileDomain: function (sHost)
{
if (typeof sHost == 'undefined') {
sHost = location.host;
}
var aMatched = sHost.match(/^(m|mobile|skin\-mobile|skin\-mobile[0-9]+[\-]{2}shop[0-9]+|skin\-mobile[0-9]+|mobile[\-]{2}shop[0-9]+)\./i);
return aMatched != null;
},
isBaseDomain: function (sHost)
{
if (typeof sHost == 'undefined') {
sHost = location.host;
}
return sHost.indexOf(CAFE24.GLOBAL_INFO.getRootDomain()) !== -1;
},
removePrefixUrl: function (sUrl)
{
if (this.isNeedRoute()) {
sUrl = sUrl.replace(this.getPrefixUrl('/'), '/'); // 자동으로 prefix 붙은 영역을 제거해준다.
}
return sUrl;
},
getPrefixUrl: function (sUrl)
{
if (this.isNeedRoute() === false) {
return sUrl;
}
if (sUrl.indexOf('/') !== 0) {
return sUrl;
}
if (sUrl.match(/^\/{2,}/) !== null) {
return sUrl;
}
var iCachedPosition = this.aFromList.indexOf(sUrl);
if (iCachedPosition > -1) {
return this.aToList[iCachedPosition];
}
var bTailSlash = (sCleanUrl !== '/' && sUrl.substr(-1) === '/');
var sCleanUrl = this.getCleanUrl(sUrl);
var aPrefixPart = CAFE24.ROUTE.path.prefix.split('/');
var aUrlPart = sCleanUrl.split('/');
var bMatched = true;
var sReturnUrl = sCleanUrl;
if (aUrlPart.length < aPrefixPart.length) {
bMatched = false;
} else {
for (var i = 0; i < aPrefixPart.length ; i++) {
if (aPrefixPart[i] != aUrlPart[i]) {
bMatched = false;
break;
}
}
}
if (bMatched === false) {
if (sCleanUrl == '/') {
sReturnUrl = CAFE24.ROUTE.path.prefix;
} else {
sReturnUrl = CAFE24.ROUTE.path.prefix + sCleanUrl;
}
sReturnUrl = bTailSlash ? sReturnUrl : this.rtrim(sReturnUrl, '/')
this.aFromList.push(sUrl);
this.aToList.push(sReturnUrl);
}
return sReturnUrl;
},
/**
* document.location.pathname 이 필요할 경우 사용한다.
* @returns {*}
*/
getPathName: function()
{
if (typeof CAFE24.ROUTE.path.result == 'undefined') {
return document.location.pathname;
}
return CAFE24.ROUTE.path.result;
},
rtrim: function (str, chr)
{
var rgxtrim = (!chr) ? new RegExp('\\s+$') : new RegExp(chr+'+$');
return str.replace(rgxtrim, '');
},
getShopNo: function ()
{
return CAFE24.ROUTE.shop_no;
},
getSkinCode: function ()
{
return CAFE24.ROUTE.skin_code;
},
getLanguageCode: function ()
{
return CAFE24.ROUTE.language_code;
},
getMobile: function ()
{
return CAFE24.ROUTE.is_mobile;
},
getIsMobile: function ()
{
return CAFE24.ROUTE.is_mobile || CAFE24.ROUTE.skin_code.match(/^mobile[0-9]*$/);
},
getCleanUrl: function (sUrl)
{
if (sUrl === '/') {
return sUrl;
}
var aUrl = sUrl.split('/');
aUrl.shift();
if (aUrl.length < 1) {
return sUrl;
}
// 현재 4 depth 까지 미리보기 기능이 구현되어있음
var iPos = 0;
var bFind = false;
for (var i = 0; i < aUrl.length ; i++) {
bFind = false;
for (var iSub = iPos, iSubCount = this.aCleanFilter.length; iSub < iSubCount ; iSub++) {
if (aUrl[i].match(this.aCleanFilter[iSub]) !== null) {
bFind = true;
iPos = iSub + 1;
aUrl.splice(i, 1);
i--; // aUrl 을 삭제해 주었으니 검색 조건을 -1 제거하여 초기화 한다. 다음 for i++ 로 증감 조회됨.
break;
}
}
if (bFind === false) {
break;
}
}
return '/' + aUrl.join('/');
},
getIsEasyUrl : function ()
{
return !window.location.pathname.match(/^[\w\/\-\.]+(php|html|htm)$/i);
}
};
EC_ROUTE.init();
}
</script>
<meta name="path_role" content="MAIN" />
<meta name="author" content="이콜렉트 e-collect" />
<meta name="description" content="세면대수전 샤워기수전 싱크대수전 수전 샤워기 샤워기헤드 유가 세면대 화장실 fontana 세면대 비데 욕조 욕실자재 수집가 쇼핑몰. 이콜렉트 e-collect" />
<meta name="keywords" content="세면대수전,샤워기수전,싱크대수전, 수전, 샤워기, 샤워기헤드, 유가, 세면대, 화장실,이콜렉트,e-collect,ecollect,욕실,욕조,수전,세면대,슬라이드바,욕실자재,수건걸이,휴지걸이,fontana,비데,saturn,vola,인조대리석" /><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="format-detection" content="telephone=no"/><meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=2.0, minimum-scale=1.0, user-scalable=yes"/><!-- PG크로스브라우징필수내용 --><meta http-equiv="Cache-Control" content="no-cache"><meta http-equiv="Expires" content="0"><meta http-equiv="Pragma" content="no-cache"><!-- // PG크로스브라우징필수내용 --><!-- 해당 CSS는 쇼핑몰 전체 페이지에 영향을 줍니다. 삭제와 수정에 주의해주세요. --><link rel="preconnect" href="https://fonts.googleapis.com"><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin><link href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&family=Poppins:wght@300;400;500;700&display=swap" rel="stylesheet"><link href="https://fonts.googleapis.com/css2?family=Nanum+Gothic:wght@400;700;800&display=swap" rel="stylesheet"><!-- theme02 --><link href="https://fonts.googleapis.com/css2?family=Gothic+A1:wght@300;400;500;700&display=swap" rel="stylesheet"><!-- theme03 --><script>try{window.EZST={q:[],register:function(a,b){this.push([a,(b.init||b)(),arguments])}}}catch(e){}</script><!--ez-favicon[--><!--ez-favicon]--><script type="text/ez-prop">
<ez-prop data-version="1.0.0">
<ez-var data-prop="theme" data-namespace="ez.layout.theme" data-type="array">
<ez-item data-id="theme01" data-name="SIMPLE" data-desc="깔끔하고 심플한 스타일" data-font="Noto Sans KR" data-background-color="#000000" override-value="html" data-font-css="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&family=Poppins:wght@300;400;500;700&display=swap">
깔끔하고 심플한 스타일
<style>
.theme-box.type1 .desc {color:#fff;font-weight:400;}
.theme-box .word {color:#fff;}
</style>
</ez-item>
<ez-item data-id="theme02" data-name="CALM" data-desc="섬세하고 정적인 스타일" data-font="Nanum Gothic" data-background-color="#0b566b" data-font-css="https://fonts.googleapis.com/css2?family=Nanum+Gothic:wght@400;700;800&display=swap">
</ez-item>
<ez-item data-id="theme03" data-name="CLASSY" data-desc="차분하고 세련된 스타일" data-font="Gothic A1" data-background-color="#0e4c75" data-font-css="https://fonts.googleapis.com/css2?family=Gothic+A1:wght@300;400;500;700&display=swap">
</ez-item>
<ez-item data-id="theme04" data-name="DYNAMIC" data-desc="강렬하고 역동적인 스타일" data-font="Nanum Gothic" data-background-color="#08275d" data-font-css="https://fonts.googleapis.com/css2?family=Nanum+Gothic:wght@400;700;800&display=swap">
</ez-item>
</ez-var>
</ez-prop>
</script><meta property="keyword" content="이콜렉트,e-collect,ecollect,욕실,욕조,수전,세면대,슬라이드바,욕실자재,수건걸이,휴지걸이,유가,fontana,비데,saturn,vola,인조대리석,세면대수전,샤워기수전,,싱크대수전, 수전, 샤워기, 샤워기헤드, 유가, 세면대, 화장실" />
<!-- Google Channel Site Verification -->
<meta name="google-site-verification" content="zZ4gP2pS9kY1otRzsml2LUOoRqH1iAxRhg3pI49oCGI" />
<!-- Google Channel Site Verification -->
<link rel="canonical" href="https://e-collect.shop" />
<meta property="og:url" content="https://e-collect.shop" />
<meta property="og:title" content="이콜렉트 | 디자인적인 욕실자재, 욕실자재 수집가 e-collect" />
<meta property="og:description" content="500번째 가입자 비데 득템 디자인적인 수전 fontana 세면대 비데 욕조 욕실자재 수집가 쇼핑몰. 이콜렉트 e-collect" />
<meta property="og:site_name" content="이콜렉트 e-collect" />
<meta property="og:type" content="website" />
<meta name="google-site-verification" content="zHihO6H2TYHi6pyddP-6N5XVS_0ZNLdOdD2BN_fzGrE" />
<meta name="naver-site-verification" content="827243a604e5638f1612685f56468d2e52afe36e" />
<script type="text/javascript" src="//wcs.naver.net/wcslog.js"></script>
<script type="text/javascript">var CAFE24API = { instance : [], MALL_ID : 'asungbath', SHOP_NO : 1, init : function (appInfo) { if (typeof appInfo == 'object') { if (appInfo.hasOwnProperty('client_id')) { var appKey = appInfo.client_id; } } else { var appKey = appInfo; } if (appKey) { if (!this.instance[appKey]) { CAFE24API.clientId = appKey; if (appInfo.hasOwnProperty('version')) { CAFE24API.version = appInfo.version; } else { if (CAFE24API.hasOwnProperty('version')) { delete CAFE24API.version; } } var copyObject = CAFE24API.constructor(); for (var attr in CAFE24API) { if (CAFE24API.hasOwnProperty(attr)) { copyObject[attr] = CAFE24API[attr]; } } this.instance[appKey] = copyObject; } return this.instance[appKey]; } }, initializeXhr : function () { try { return new XMLHttpRequest(); } catch (error) { return new window.ActiveXObject('Microsoft.XMLHTTP'); } }, fullPath: function (url) { return 'https://asungbath.cafe24api.com' + url; }, getLoginProvider: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'customer')) { return; } callback(null, {'login': CAPP_ASYNC_METHODS.AppCommon.getLoginProvider()}); }, getCustomerProvider: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'customer')) { return; } callback(null, {'login': CAPP_ASYNC_METHODS.AppCommon.getCustomerProvider()}); }, getMemberID: function (callback) { if (!CAPP_ASYNC_METHODS.IS_LOGIN) { callback(null); } else { callback(CAPP_ASYNC_METHODS.AppCommon.getMemberID()); } }, getEncryptedMemberId: function (client_id, callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'customer')) { return; } callback(null, CAPP_ASYNC_METHODS.AppCommon.getEncryptedMemberId(client_id)); }, getMemberInfo: function (callback) { callback({'id': CAPP_ASYNC_METHODS.AppCommon.getMemberInfo()}); }, getCustomerIDInfo: function (callback) { if (!CAFE24API.__scopeErr(callback, 'application')) { return; } callback(null, {'id': CAPP_ASYNC_METHODS.AppCommon.getCustomerIDInfo()}); }, getCustomerInfo: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'customer')) { return; } callback(null, {'customer': CAPP_ASYNC_METHODS.AppCommon.getCustomerInfo()}); }, getMileageInfo: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'customer')) { return; } callback(null, {'mileage': CAPP_ASYNC_METHODS.AppCommon.getMileageInfo()}); }, getPointInfo: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'customer')) { return; } callback(null, {'point': CAPP_ASYNC_METHODS.AppCommon.getPointInfo()}); }, getDepositInfo: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'customer')) { return; } callback(null, {'deposit': CAPP_ASYNC_METHODS.AppCommon.getDepositInfo()}); }, getCreditInfo: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'customer')) { return; } callback(null, {'credit': CAPP_ASYNC_METHODS.AppCommon.getCreditInfo()}); }, getCartList: function (callback) { if (!CAFE24API.__scopeErr(callback, 'personal')) { return; } CAPP_ASYNC_METHODS.AppCommon.getCartList().then(function(data){ callback(null, {'carts': data}); }); }, getCartInfo: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'personal')) { return; } callback(null, {'cart': CAPP_ASYNC_METHODS.AppCommon.getCartInfo()}); }, getCartItemList: function (callback) { if (!CAFE24API.__scopeErr(callback, 'order')) { return; } callback(null, {'items': CAPP_ASYNC_METHODS.AppCommon.getCartItemList()}); }, getCartCount: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'personal')) { return; } callback(null, CAPP_ASYNC_METHODS.AppCommon.getCartCount()); }, getCouponCount: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'promotion')) { return; } callback(null, CAPP_ASYNC_METHODS.AppCommon.getCouponCount()); }, getWishCount: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'personal')) { return; } callback(null, CAPP_ASYNC_METHODS.AppCommon.getWishCount()); }, getShopInfo: function (callback) { if (!CAFE24API.__scopeErr(callback, 'store')) { return; } callback(null, {'shop': CAPP_ASYNC_METHODS.AppCommon.getShopInfo()}); }, addCurrentProductToCart: function (mall_id, time, app_key, member_id, hmac, callback) { if (!CAFE24API.__scopeErr(callback, 'order')) { return; } CAPP_ASYNC_METHODS.AppCommon.addCurrentProductToCart(mall_id, time, app_key, member_id, hmac).then(function(data){ callback(null, {'cart': data}); }).catch(function (data) { if (data) { callback(new Error('422'), {'error': {code: data.code, message: data.message}}); } else { callback(new Error('422'), {'error': {code: 422, message: 'This sdk is not available on the current page'}}); } }); }, precreateOrder: function (mall_id, time, app_key, member_id, hmac, callback) { if (!CAFE24API.__scopeErr(callback, 'order')) { return; } CAPP_ASYNC_METHODS.AppCommon.precreateOrder(mall_id, time, app_key, member_id, hmac).then(function(data){ callback(null, {'order': data}); }).catch(function (data) { if (data) { callback(new Error('422'), {'error': {code: data.code, message: data.message}}); } else { callback(new Error('422'), {'error': {code: 422, message: 'This sdk is not available on the current page'}}); } }); }, getOrderItemList: function (start_date, end_date, order_status, page, count, order_id, callback) { if (!CAFE24API.__scopeErr(callback, 'order')) { return; } CAPP_ASYNC_METHODS.AppCommon.getOrderItemList(start_date, end_date, order_status, page, count, order_id).then(function(data){ callback(null, {'items': data}); }).catch(function (data) { if (data) { callback(new Error('422'), {'error': {code: data.code, message: data.message}}); } else { callback(new Error(422), { 'error': { code: 422, message: 'This sdk is not available on the current page' } }); } }); }, getOrderDetailInfo: function (shop_no, order_id, callback) { if (!CAFE24API.__scopeErr(callback, 'order')) { return; } CAPP_ASYNC_METHODS.AppCommon.getOrderDetailInfo(shop_no, order_id).then(function(data){ callback(null, {'orders': data}); }).catch(function (data) { if (data) { callback(new Error('422'), {'error': {code: data.code, message: data.message}}); } else { callback(new Error(422), { 'error': { code: 422, message: 'This sdk is not available on the current page' } }); } }); }, getClaimableItemList: function (order_id, customer_service_type, callback) { if (!CAFE24API.__scopeErr(callback, 'order')) { return; } CAPP_ASYNC_METHODS.AppCommon.getClaimableItemList(order_id, customer_service_type).then(function(data){ callback(null, {'items': data}); }).catch(function (data) { if (data) { callback(new Error('422'), {'error': {code: data.code, message: data.message}}); } else { callback(new Error(422), { 'error': { code: 422, message: 'This sdk is not available on the current page' } }); } }); }, emptyCart: function (basket_shipping_type, callback) { if (!CAFE24API.__scopeErr(callback, 'personal')) { return; } CAPP_ASYNC_METHODS.AppCommon.emptyCart(basket_shipping_type).then(function (data) { callback(null, {'result': data}); }).catch(function (data) { if (data) { callback(new Error('422'), {'error': {code: data.code, message: data.message}}); } else { callback(new Error(422), { 'error': { code: 422, message: 'This sdk is not available on the current page' } }); } }) ; }, deleteCartItems: function (basket_shipping_type, product_list, callback) { if (!CAFE24API.__scopeErr(callback, 'personal')) { return; } CAPP_ASYNC_METHODS.AppCommon.deleteCartItems(basket_shipping_type, product_list).then(function (data) { callback(null, {'result': data}); }).catch(function (data) { if (data) { callback(new Error('422'), {'error': {code: data.code, message: data.message}}); } else { callback(new Error(422), { 'error': { code: 422, message: 'This sdk is not available on the current page' } }); } }) ; }, addCart: function (basket_type, prepaid_shipping_fee, product_list, callback) { if (!CAFE24API.__scopeErr(callback, 'personal')) { return; } CAPP_ASYNC_METHODS.AppCommon.addCart(basket_type, prepaid_shipping_fee, product_list).then(function (data) { callback(null, data); }).catch(function (data) { if (data) { callback(new Error('422'), {'error': {code: data.code, message: data.message}}); } else { callback(new Error(422), { 'error': { code: 422, message: 'This sdk is not available on the current page' } }); } }) }, addBundleProductsCart: function (basket_type, prepaid_shipping_fee, product_list, callback) { if (!CAFE24API.__scopeErr(callback, 'personal')) { return; } CAPP_ASYNC_METHODS.AppCommon.addBundleProductsCart(basket_type, prepaid_shipping_fee, product_list).then(function (data) { callback(null, data); }).catch(function (data) { if (data) { callback(new Error('422'), {'error': {code: data.code, message: data.message}}); } else { callback(new Error(422), { 'error': { code: 422, message: 'This sdk is not available on the current page' } }); } }) }, get : function(url, callback) { return CAFE24API.complete('GET', url, this, null, callback); }, post : function(url, params, callback) { return CAFE24API.complete('POST', url, this, params, callback); }, put : function(url, params, callback) { return CAFE24API.complete('PUT', url, this, params, callback); }, delete : function(url, callback) { return CAFE24API.complete('DELETE', url, this, null, callback); }, complete : function(method, url, obj, params, callback) { var xhr = CAFE24API.sendXhr(method, url, obj, params, callback); xhr.onreadystatechange = function () { if (xhr.readyState === XMLHttpRequest.DONE) { if (xhr.status >= 200 && xhr.status <= 208) { callback(null, JSON.parse(xhr.responseText)); } else { callback(new Error(xhr.status), JSON.parse(xhr.responseText)); } } }; }, sendXhr : function (method, url, obj, params, callback) { if (method !== 'POST') { var url = obj.fullPath(url); } var xhr = obj.initializeXhr(); var queryVars = {}; if (obj.clientId) queryVars['cafe24_app_key'] = obj.clientId; if (obj.version) queryVars['cafe24_api_version'] = obj.version; if (params === null) { var seperator = url.indexOf('?') == -1 ? '?' : '&'; var queryString = []; for (var key in queryVars) { queryString.push(key + '=' + queryVars[key]); } if (queryString.length > 0) { url = url + seperator + queryString.join('&'); } } xhr.open(method, url, true); if (typeof params == 'object' && params !== null) { xhr.setRequestHeader('Content-type','application/x-www-form-urlencoded; charset=utf-8'); for (var key in queryVars) { params[key] = queryVars[key]; } params = 'formData=' + JSON.stringify(params); } xhr.send(params || null); return xhr; }, __sessionErr: function (callback) { callback(new Error(403), {'error': {code: 403, message: 'Failed to get session. Only available when log in.'}}); }, __scopeErr: function (callback, scope) { if (typeof CAFE24.APPSCRIPT_SDK_DATA != "undefined" && jQuery.inArray(scope, CAFE24.APPSCRIPT_SDK_DATA ) > -1 ) { return true; } callback(new Error(403), {'error': {code: 403, message: 'You do not have the necessary authority(scope) to use the SDK.'}}); }, __chkValidSessionScope: function (callback, scope) { if (!CAPP_ASYNC_METHODS.IS_LOGIN) { CAFE24API.__sessionErr(callback); return false; } if (!CAFE24API.__scopeErr(callback, scope)) { return false; } return true; } }; </script>
<script type="text/javascript">
window.CAFE24 = window.CAFE24 || {};
CAFE24.MANIFEST_CACHE_REVISION = '2505081404';
CAFE24.getDeprecatedNamespace = function(sDeprecatedNamespace, sSupersededNamespace) {
var sNamespace = sSupersededNamespace
? sSupersededNamespace
: sDeprecatedNamespace.replace(/^EC_/, '');
return CAFE24[sNamespace];
}
CAFE24.FRONT_LANGUAGE_CODE = "ko_KR";
CAFE24.MOBILE = false;
CAFE24.MOBILE_DEVICE = false;
CAFE24.MOBILE_USE = false;
var EC_MOBILE = CAFE24.MOBILE;
var EC_MOBILE_DEVICE = CAFE24.MOBILE_DEVICE;
var EC_MOBILE_USE = CAFE24.MOBILE_USE;
CAFE24.SKIN_CODE = "skin6";
CAFE24.FRONT_EXTERNAL_SCRIPT_VARIABLE_DATA = {"common_member_id_crypt":""};
var EC_FRONT_EXTERNAL_SCRIPT_VARIABLE_DATA = CAFE24.getDeprecatedNamespace('EC_FRONT_EXTERNAL_SCRIPT_VARIABLE_DATA');
CAFE24.SDE_SHOP_NUM = 1;CAFE24.SHOP = {getLanguage : function() { return "ko_KR"; },getCurrency : function() { return "KRW"; },getFlagCode : function() { return "KR"; },getTimezone: function() { return "Asia/Seoul" },getDateFormat: function() { return "Y-m-d" },isMultiShop : function() { return false; },isDefaultShop : function() { return true; },isDefaultLanguageShop : function(sLanguageCode) { return SHOP.isDefaultShop() && SHOP.isLanguageShop(sLanguageCode); },isKR : function() { return true; },isUS : function() { return false; },isJP : function() { return false; },isCN : function() { return false; },isTW : function() { return false; },isES : function() { return false; },isPT : function() { return false; },isVN : function() { return false; },isPH : function() { return false; },getCountryAndLangMap : function() { return {
"KR": "ko_KR",
"US": "en_US",
"JP": "ja_JP",
"CN": "zh_CN",
"TW": "zh_TW",
"VN": "vi_VN",
"PH": "en_PH"
}},isLanguageShop : function(sLanguageCode) { return sLanguageCode === "ko_KR"; },getDefaultShopNo : function() { return 1; },getProductVer : function() { return 2; },isSDE : function() { return true; },isMode : function() {return true; },getModeName : function() {return true; },isMobileAdmin : function() {return false; },isNewProMode : function() {return false; },isExperienceMall : function() { return false; },isDcollection : function() {return false; },isYoutubeShops : function() {return false; },getYtShopsShopNo : function() {return 0; },getAdminID : function() {return ''},getMallID : function() {return 'asungbath'},getCurrencyFormat : function(sPriceTxt, bIsNumberFormat) {
sPriceTxt = String(sPriceTxt);
var aCurrencySymbol = ["","\uc6d0",false];
if (typeof CAFE24.SHOP_PRICE !== 'undefined' && isNaN(sPriceTxt.replace(/[,]/gi, '')) === false && bIsNumberFormat === true) {
// bIsNumberFormat 사용하려면 Ui(':libUipackCurrency')->plugin('Currency') 화폐 라이브러리 추가 필요
sPriceTxt = CAFE24.SHOP_PRICE.toShopPrice(sPriceTxt.replace(/[,]/gi, ''), true, CAFE24.SDE_SHOP_NUM);
}
try {
var sPlusMinusSign = (sPriceTxt.toString()).substr(0, 1);
if (sPlusMinusSign === '-' || sPlusMinusSign === '+') {
sPriceTxt = (sPriceTxt.toString()).substr(1);
return sPlusMinusSign + aCurrencySymbol[0] + sPriceTxt + aCurrencySymbol[1];
} else {
return aCurrencySymbol[0] + sPriceTxt + aCurrencySymbol[1];
}
} catch (e) {
return aCurrencySymbol[0] + sPriceTxt + aCurrencySymbol[1];
}
}};CAFE24.CURRENCY_INFO = {getOriginReferenceCurrency : function() {return 'USD'},getCurrencyList : function(sCurrencyCode) { var aCurrencyList = {"JPY":{"currency_symbol":"¥","decimal_place":0,"round_method_type":"F"},"VND":{"currency_symbol":"₫","decimal_place":0,"round_method_type":"F"},"PHP":{"currency_symbol":"₱","decimal_place":2,"round_method_type":"R"},"USD":{"currency_symbol":"$","decimal_place":2,"round_method_type":"R"},"CNY":{"currency_symbol":"¥","decimal_place":2,"round_method_type":"R"},"TWD":{"currency_symbol":"NT$","decimal_place":0,"round_method_type":"F"},"EUR":{"currency_symbol":"\u20ac","decimal_place":2,"round_method_type":"R"},"BRL":{"currency_symbol":"R$","decimal_place":2,"round_method_type":"R"},"AUD":{"currency_symbol":"A$","decimal_place":2,"round_method_type":"R"},"BHD":{"currency_symbol":".د.ب","decimal_place":3,"round_method_type":"R"},"BDT":{"currency_symbol":"৳","decimal_place":2,"round_method_type":"R"},"GBP":{"currency_symbol":"£","decimal_place":2,"round_method_type":"R"},"CAD":{"currency_symbol":"C$","decimal_place":2,"round_method_type":"R"},"CZK":{"currency_symbol":"Kč","decimal_place":2,"round_method_type":"R"},"DKK":{"currency_symbol":"kr","decimal_place":2,"round_method_type":"R"},"HKD":{"currency_symbol":"HK$","decimal_place":2,"round_method_type":"R"},"HUF":{"currency_symbol":"Ft","decimal_place":2,"round_method_type":"R"},"INR":{"currency_symbol":"₹","decimal_place":2,"round_method_type":"R"},"IDR":{"currency_symbol":"Rp","decimal_place":0,"round_method_type":"F"},"ILS":{"currency_symbol":"₪","decimal_place":2,"round_method_type":"R"},"JOD":{"currency_symbol":" دينار","decimal_place":3,"round_method_type":"R"},"KWD":{"currency_symbol":"دينار","decimal_place":3,"round_method_type":"R"},"MYR":{"currency_symbol":"RM","decimal_place":2,"round_method_type":"R"},"MXN":{"currency_symbol":"Mex$","decimal_place":2,"round_method_type":"R"},"NZD":{"currency_symbol":"NZ$","decimal_place":2,"round_method_type":"R"},"NOK":{"currency_symbol":"kr","decimal_place":2,"round_method_type":"R"},"PKR":{"currency_symbol":"₨","decimal_place":2,"round_method_type":"R"},"PLN":{"currency_symbol":"z\u0142","decimal_place":2,"round_method_type":"R"},"RUB":{"currency_symbol":"\u0440\u0443\u0431","decimal_place":2,"round_method_type":"R"},"SAR":{"currency_symbol":"﷼","decimal_place":2,"round_method_type":"R"},"SGD":{"currency_symbol":"S$","decimal_place":2,"round_method_type":"R"},"ZAR":{"currency_symbol":"R","decimal_place":2,"round_method_type":"R"},"SEK":{"currency_symbol":"kr","decimal_place":2,"round_method_type":"R"},"CHF":{"currency_symbol":"Fr","decimal_place":2,"round_method_type":"R"},"THB":{"currency_symbol":"฿","decimal_place":2,"round_method_type":"R"},"TRY":{"currency_symbol":"TL","decimal_place":2,"round_method_type":"R"},"AED":{"currency_symbol":"فلس","decimal_place":2,"round_method_type":"R"}}; return aCurrencyList[sCurrencyCode] },isUseReferenceCurrency : function() {return false }};CAFE24.COMMON_UTIL = {convertSslForString : function(sString) { return sString.replace(/http:/gi, '');},convertSslForHtml : function(sHtml) { return sHtml.replace(/((?:src|href)\s*=\s*['"])http:(\/\/(?:[a-z0-9\-_\.]+)\/)/ig, '$1$2');},getProtocol : function() { return 'https'; },moveSsl : function() { if (CAFE24.COMMON_UTIL.getProtocol() === 'http') { var oLocation = jQuery(window.location); var sUrl = 'https://' + oLocation.attr('host') + oLocation.attr('pathname') + oLocation.attr('search'); window.location.replace(sUrl); } },setEcCookie : function(sKey, sValue, iExpire) {var exdate = new Date();exdate.setDate(exdate.getDate() + iExpire);var setValue = escape(sValue) + "; domain=." + CAFE24.GLOBAL_INFO.getBaseDomain() + "; path=/;expires=" + exdate.toUTCString();document.cookie = sKey + "=" + setValue;}};CAFE24.SHOP_LIB_INFO = {getBankInfo : function() {
var oBankInfo = "";
$.ajax({
type: "GET",
url: "/exec/front/Shop/Bankinfo",
dataType: "json",
async: false,
success: function(oResponse) {
oBankInfo = oResponse;
}
});
return oBankInfo; }}; var EC_SDE_SHOP_NUM = CAFE24.SDE_SHOP_NUM;
var SHOP = CAFE24.getDeprecatedNamespace('SHOP');
var EC_COMMON_UTIL = CAFE24.getDeprecatedNamespace('EC_COMMON_UTIL');
var EC_SHOP_LIB_INFO = CAFE24.getDeprecatedNamespace('EC_SHOP_LIB_INFO');
var EC_CURRENCY_INFO = CAFE24.getDeprecatedNamespace('EC_CURRENCY_INFO');
CAFE24.ROOT_DOMAIN = "cafe24.com";
CAFE24.API_DOMAIN = "cafe24api.com";
CAFE24.TRANSLATE_LOG_STATUS = "F";
CAFE24.GLOBAL_INFO = (function() {
var oData = {"base_domain":"asungbath.cafe24.com","root_domain":"cafe24.com","api_domain":"cafe24api.com","is_global":false,"is_global_standard":false,"country_code":"KR","language_code":"ko_KR","admin_language_code":"ko_KR"};
return {
getBaseDomain: function() {
return oData['base_domain'];
},
getRootDomain: function() {
return oData['root_domain'];
},
getApiDomain: function() {
return oData['api_domain'];
},
isGlobal: function() {
return oData['is_global'];
},
isGlobalStandard: function() {
return oData['is_global_standard'];
},
getCountryCode: function() {
return oData['country_code'];
},
getLanguageCode: function() {
return oData['language_code'];
},
getAdminLanguageCode: function() {
return oData['admin_language_code'];
}
};
})();
var EC_ROOT_DOMAIN = CAFE24.ROOT_DOMAIN;
var EC_API_DOMAIN = CAFE24.API_DOMAIN;
var EC_TRANSLATE_LOG_STATUS = CAFE24.TRANSLATE_LOG_STATUS;
var EC_GLOBAL_INFO = CAFE24.getDeprecatedNamespace('EC_GLOBAL_INFO');
CAFE24.AVAILABLE_LANGUAGE = ["ko_KR","zh_CN","en_US","zh_TW","es_ES","pt_PT","vi_VN","ja_JP","en_PH"];
CAFE24.AVAILABLE_LANGUAGE_CODES = {"ko_KR":"KOR","zh_CN":"CHN","en_US":"ENG","zh_TW":"TWN","es_ES":"ESP","pt_PT":"PRT","vi_VN":"VNM","ja_JP":"JPN","en_PH":"PHL"};
var EC_AVAILABLE_LANGUAGE = CAFE24.AVAILABLE_LANGUAGE;
var EC_AVAILABLE_LANGUAGE_CODES = CAFE24.AVAILABLE_LANGUAGE_CODES;
CAFE24.GLOBAL_PRODUCT_LANGUAGE_CODES = {
sClearanceCategoryCode: '',
sManualLink: '//support.cafe24.com/hc/ko/articles/7739013909529',
sHsCodePopupLink: 'https://www.wcotradetools.org/en/harmonized-system',
aCustomRegex: '"PHL" : "^[0-9]{8}[A-Z]?$"',
sCountryCodeData: 'kor',
sEnglishExampleURlForGlobal: '',
aReverseAddressCountryCode: ["VNM","PHL"],
aSizeGuideCountryAlign: '["US","UK","EU","KR","JP","CN"]',
aIsSupportTran: ["ja_JP","zh_CN","zh_TW","en_US","vi_VN","en_PH","pt_PT","es_ES"]
};
var EC_GLOBAL_PRODUCT_LANGUAGE_CODES = CAFE24.getDeprecatedNamespace('EC_GLOBAL_PRODUCT_LANGUAGE_CODES');
CAFE24.GLOBAL_ORDER_LANGUAGE_CODES = {
aModifyOrderLanguage: {"KR":"ko_KR","JP":"ja_JP","CN":"zh_CN","TW":"zh_TW","VN":"vi_VN","PH":"en_PH"},
aUseIdCardKeyCountry: ["CN","TW"],
aLanguageWithCountryCode: {"zh_CN":["CN","CHN","HK","HNK"],"ja_JP":["JP","JPN"],"zh_TW":["TW","TWN"],"ko_KR":["KR","KOR"],"vi_VN":["VN","VNM"],"en_PH":["PH","PHL"]},
aCheckDisplayRequiredIcon: ["ja_JP","zh_CN","zh_TW","en_US","vi_VN","en_PH"],
aSetReceiverName: {"zh_CN":{"sCountry":"CN","bUseLastName":true},"zh_TW":{"sCountry":"TW","bUseLastName":false},"ja_JP":{"sCountry":"JP","bUseLastName":true}},
aSetDeferPaymethodLanguage: {"ja_JP":"\uc77c\ubcf8","zh_CN":"\uc911\uad6d"},
aUseDeferPaymethod: ["ja_JP","zh_CN"],
aCheckShippingCompanyAndPaymethod: ["ja_JP","zh_CN"],
aSetDeferPaymethodLanguageForShipping: {"ja_JP":"\u65e5\u672c","zh_CN":"\uc911\uad6d"},
aCheckStoreByPaymethod: ["ja_JP","zh_CN"],
aCheckIsEmailRequiredForJs: ["en_US","zh_CN","zh_TW","ja_JP","vi_VN","en_PH"],
aSetIdCardKeyCountryLanguage: {"CN":"\uc911\uad6d\uc758","TW":"\ub300\ub9cc\uc758"},
aReverseGlobalAddress: ["en_PH","vi_VN","PHL","VNM","VN","PH"],
aNoCheckZipCode: ["KOR","JPN"],
aNotPostCodeAPICountryList: ["en_US","es_ES","pt_PT","en_PH"],
aEnableSearchExchangeAddr: ["KR","JP","CN","VN","TW","PH"],
aDuplicatedBaseAddr: ["TW","JP"],
aReverseAddressCountryCode: ["VN","PH"],
aCheckZipCode: ["PHL","en_PH","PH"]
};
var EC_GLOBAL_ORDER_LANGUAGE_CODES = CAFE24.getDeprecatedNamespace('EC_GLOBAL_ORDER_LANGUAGE_CODES');
CAFE24.GLOBAL_MEMBER_LANGUAGE_CODES = {
sAdminWebEditorLanguageCode: 'ko' ,
oNotAvailDecimalPointLanguages: ["ko_KR","ja_JP","zh_TW","vi_VN"],
oAddressCountryCode: {"KOR":"ko_KR","JPN":"ja_JP","CHN":"zh_CN","TWN":"zh_TW","VNM":"vi_VN","PHL":"en_PH"},
};
var EC_GLOBAL_MEMBER_LANGUAGE_CODES = CAFE24.getDeprecatedNamespace('EC_GLOBAL_MEMBER_LANGUAGE_CODES');
CAFE24.GLOBAL_BOARD_LANGUAGE_CODES = {
bUseLegacyBoard: true
};
var EC_GLOBAL_BOARD_LANGUAGE_CODES = CAFE24.getDeprecatedNamespace('EC_GLOBAL_BOARD_LANGUAGE_CODES');
CAFE24.GLOBAL_MALL_LANGUAGE_CODES = {
oDesign: {
oDesignAddReplaceInfo: {"group_id":"SKIN.ADD.ADMIN.DESIGNDETAIL","replacement":{"KR":"KOREAN","US":"ENGLISH","JP":"JAPANESE","CN":"SIMPLIFIED.CHINESE","TW":"TRADITIONAL.CHINESE","ES":"SPANISH","PT":"PORTUGUESE","PH":"ENGLISH"}},
oDesignDetailLanguageCountryMap: {"KR":"ko_KR","JP":"ja_JP","CN":"zh_CN","TW":"zh_TW","US":"en_US","ES":"es_ES","PT":"pt_PT","PH":"en_PH"},
oSmartDesignSwitchTipLink: {"edibot":{"img":"\/\/img.echosting.cafe24.com\/smartAdmin\/img\/design\/img_editor_dnd.png","link":"\/\/ecsupport.cafe24.com\/board\/free\/list.html?board_act=list&board_no=12&category_no=9&cate_no=9"},"smart":{"img":"\/\/img.echosting.cafe24.com\/smartAdmin\/img\/design\/ko_KR\/img_editor_smart.png","link":"\/\/sdsupport.cafe24.com"}},
oSmartDesignDecoShopList: ["ko_KR","ja_JP","zh_CN","en_US","zh_TW","es_ES","pt_PT"],
oSmartDesignDecoMultilingual: {"list":{"ko_KR":"KOREAN","en_US":"ENGLISH","ja_JP":"JAPANESE","zh_CN":"SIMPLIFIED.CHINESE","zh_TW":"TRADITIONAL.CHINESE","es_ES":"SPANISH","pt_PT":"PORTUGUESE","vi_VN":"VIETNAMESE"},"group_id":"EDITOR.LAYER.EDITING.DECO"},
aSmartDesignModuleShopList: ["ko_KR","ja_JP","zh_CN","en_US","zh_TW","es_ES","pt_PT"]
},
oStore: {
oMultiShopCurrencyInfo: {"en_US":{"currency":"USD"},"zh_CN":{"currency":"USD","sub_currency":"CNY"},"ja_JP":{"currency":"JPY"},"zh_TW":{"currency":"TWD"},"es_ES":{"currency":"EUR"},"pt_PT":{"currency":"EUR"},"ko_KR":{"currency":"KRW"},"vi_VN":{"currency":"VND"},"en_PH":{"currency":"PHP"}},
oBrowserRedirectLanguage: {"ko":{"primary":"ko_KR","secondary":"en_US"},"en":{"detail":{"en-ph":{"primary":"en_PH","secondary":"en_US"},"en-us":{"primary":"en_US","secondary":"es_ES"},"default":{"primary":"en_US","secondary":"es_ES"}}},"ja":{"primary":"ja_JP","secondary":"en_US"},"zh":{"detail":{"zh-cn":{"primary":"zh_CN","secondary":"en_US"},"zh-tw":{"primary":"zh_TW","secondary":"zh_CN"},"default":{"primary":"en_US","secondary":"ko_KR"}}},"es":{"primary":"es_ES","secondary":"en_US"},"pt":{"primary":"pt_PT","secondary":"en_US"},"vi":{"primary":"vi_VN","secondary":"en_US"},"default":{"primary":"en_US","secondary":"ko_KR"}},
aChangeableLanguages: ["en_US","ja_JP","ko_KR"],
aNoZipCodeLanguage: ["ko_KR","ja_JP"]
},
oMobile: {
sSmartWebAppFaqUrl: "https://support.cafe24.com/hc/ko/articles/8466586607641",
sAmpFaqUrl: "https://ecsupport.cafe24.com/board/free/read.html?no=1864&board_no=5&category_no=13&cate_no=13&category_no=13&category_no=13",
},
oPromotion: {
bQrCodeAvailable: true,
bSnsMarketingAvailable: true
},
oShippingReverseAddressLanguage: ["vi_VN","en_PH"] ,
oGlobalStandardSwitchHelpCodeLink: {"SH.DS":{"link":"\/\/serviceguide.cafe24shop.com\/en_PH\/SH.DS.html"},"PR.DS":{"link":"\/\/serviceguide.cafe24shop.com\/en_PH\/PR.DS.html"},"OR.SM.BO":{"link":"\/\/serviceguide.cafe24shop.com\/en_PH\/OR.SM.BO.html"},"DE.DS":{"link":"\/\/serviceguide.cafe24shop.com\/en_PH\/DE.DS.html"},"MB.DS":{"link":"\/\/serviceguide.cafe24shop.com\/en_PH\/MB.DS.html"},"PM.DS":{"link":"\/\/serviceguide.cafe24shop.com\/en_PH\/PM.DS.html"}},
getAdminMainLocaleLanguage: function(sSkinLocaleCode) {
var oLocaleData = [];
var locale = "";
var shopLangName = "";
if (sSkinLocaleCode == "US") {
locale = "en_US";
shopLangName = "ENGLISH";
} else if (sSkinLocaleCode == "JP") {
locale = "ja_JP";
shopLangName = "JAPANESE";
} else if (sSkinLocaleCode == "CN") {
locale = "zh_CN";
shopLangName = "SIMPLIFIED.CHINESE";
} else if (sSkinLocaleCode == "TW") {
locale = "zh_TW";
shopLangName = "TRADITIONAL.CHINESE";
} else if (sSkinLocaleCode == "ES") {
locale = "es_ES";
shopLangName = "SPANISH";
} else if (sSkinLocaleCode == "PT") {
locale = "pt_PT";
shopLangName = "PORTUGUESE";
} else if (sSkinLocaleCode == "VN") {
locale = "vi_VN";
shopLangName = "VIETNAMESE";
} else if(sSkinLocaleCode == "PH") {
locale = "en_PH";
shopLangName = "ENGLISH.PH";
}
oLocaleData["locale"] = locale;
oLocaleData["shopLangName"] = shopLangName;
return oLocaleData;
}
};
var EC_GLOBAL_MALL_LANGUAGE_CODES = CAFE24.getDeprecatedNamespace('EC_GLOBAL_MALL_LANGUAGE_CODES');
CAFE24.GLOBAL_DATETIME_INFO = {
oConstants: {"STANDARD_DATE_REGEX":"\/([12]\\d{3}-(0[1-9]|1[0-2])-(0[1-9]|[12]\\d|3[01]))\/","IN_ZONE":"inZone","OUT_ZONE":"outZone","IN_FORMAT":"inFormat","OUT_FORMAT":"outFormat","IN_DATE_FORMAT":"inDateFormat","IN_TIME_FORMAT":"inTimeFormat","OUT_DATE_FORMAT":"outDateFormat","OUT_TIME_FORMAT":"outTimeFormat","IN_FORMAT_DATE_ONLY":1,"IN_FORMAT_TIME_ONLY":2,"IN_FORMAT_ALL":3,"OUT_FORMAT_DATE_ONLY":1,"OUT_FORMAT_TIME_ONLY":2,"OUT_FORMAT_ALL":3,"DATE_ONLY":"YYYY-MM-DD","TIME_ONLY":"HH:mm:ss","FULL_TIME":"YYYY-MM-DD HH:mm:ss","ISO_8601":"YYYY-MM-DD[T]HH:mm:ssZ","YEAR_ONLY":"YYYY","MONTH_ONLY":"MM","DAY_ONLY":"DD","WEEK_ONLY":"e","TIME_H_I_ONLY":"HH:mm","TIME_HOUR_ONLY":"HH","TIME_MINUTE_ONLY":"mm","POSTGRE_FULL_TIME":"YYYY-MM-DD HH24:MI:SS","POSTGRE_TIME_ONLY":" HH24:MI:SS","MICRO_SECOND_ONLY":"u","SEOUL":"Asia\/Seoul","TOKYO":"Asia\/Tokyo","SHANGHAI":"Asia\/Shanghai","TAIPEI":"Asia\/Taipei","HANOI":"Asia\/Bangkok","LOS_ANGELES":"America\/Los_Angeles","LISBON":"Europe\/Lisbon","MADRID":"Europe\/Madrid","SINGAPORE":"Asia\/Singapore","UTC":"Etc\/UTC","MAX_DATETIME":"9999-12-31 23:59:59"},
oOptions: {"inZone":"Asia\/Seoul","inFormat":"YYYY-MM-DD HH:mm:ss","inDateFormat":"YYYY-MM-DD","inTimeFormat":"HH:mm:ss","outZone":"Asia\/Seoul","outFormat":"YYYY-MM-DD HH:mm:ss","outDateFormat":"YYYY-MM-DD","outTimeFormat":"HH:mm:ss"},
oPolicies: {"shop":{"outZone":"Asia\/Seoul","outFormat":"YYYY-MM-DD HH:mm:ss","outDateFormat":"YYYY-MM-DD","outTimeFormat":"HH:mm:ss"}},
sOverrideTimezone: '',
sMomentNamespace: 'EC_GLOBAL_MOMENT'
};
CAFE24.FRONT_JS_CONFIG_MANAGE = {"sSmartBannerScriptUrl":"https:\/\/app4you.cafe24.com\/SmartBanner\/tunnel\/scriptTags?vs=1563164396689206","sMallId":"asungbath","sDefaultAppDomain":"https:\/\/app4you.cafe24.com","sWebLogOffFlag":"F","cdnUrl":"https:\/\/cafe24.poxo.com\/ec01\/asungbath\/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ\/jMUHMPnpWlnuBg==\/_"};
var EC_FRONT_JS_CONFIG_MANAGE = CAFE24.getDeprecatedNamespace('EC_FRONT_JS_CONFIG_MANAGE');
CAFE24.FRONT_JS_CONFIG_MEMBER = {"sAuthUrl":"https:\/\/ipin-ec.cafe24.com\/certify\/v1\/?action=auth"};
var EC_FRONT_JS_CONFIG_MEMBER = CAFE24.getDeprecatedNamespace('EC_FRONT_JS_CONFIG_MEMBER');
CAFE24.FRONT_JS_CONFIG_SHOP = {"search_period":[],"calendar_config":{"maxDate":"2027-05-11","locale":"ko"},"aProductPurchaseInfo_678":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_677":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_673":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_672":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_622":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_59":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_452":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_383":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_535":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_15":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_39":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_464":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_488":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_435":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_436":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_434":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_433":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_432":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_431":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_430":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_429":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_352":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_422":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_153":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_144":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_620":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_613":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_377":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_549":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_370":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_371":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_372":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_111":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_83":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_92":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_102":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_107":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_117":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_123":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_128":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_97":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_103":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_106":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_120":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_125":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true}};
var EC_FRONT_JS_CONFIG_SHOP = CAFE24.getDeprecatedNamespace('EC_FRONT_JS_CONFIG_SHOP');
typeof window.CAFE24 === "undefined" && (window.CAFE24 = {});
CAFE24.FRONTEND = {"FW_MANIFEST_CACHE_REVISION":2505081404,"IS_WEB_VIEW":"F"};
CAFE24.ROUTE = {"is_mobile":false,"is_need_route":false,"language_code":"ZZ","path":{"origin":"\/","result":"\/","prefix":""},"shop_no":0,"skin_code":"default","support_language_list":{"ar":"ar_EG","ar-EG":"ar_EG","de":"de_DE","de-DE":"de_DE","en":"en_US","en-IN":"en_IN","en-PH":"en_PH","en-US":"en_US","es":"es_ES","es-ES":"es_ES","hi":"hi_IN","hi-IN":"hi_IN","id":"id_ID","id-ID":"id_ID","it":"it_IT","it-IT":"it_IT","ja":"ja_JP","ja-JP":"ja_JP","ko":"ko_KR","ko-KR":"ko_KR","ms":"ms_MY","ms-MY":"ms_MY","pt":"pt_PT","pt-PT":"pt_PT","ru":"ru_RU","ru-RU":"ru_RU","th":"th_TH","th-TH":"th_TH","tr":"tr_TR","tr-TR":"tr_TR","vi":"vi_VN","vi-VN":"vi_VN","zh":"zh_CN","zh-CN":"zh_CN","zh-HK":"zh_HK","zh-MO":"zh_MO","zh-SG":"zh_SG","zh-TW":"zh_TW"}};
</script>
<link rel="stylesheet" type="text/css" href="/ind-script/optimizer.php?filename=nY1BCkIxDAX3pVvPERU9gTcQPEBa87X8NClpCnp7xZUbQbp9vJmBu1aC3d6gmd4MKxh1HZYJcu-wmIpD1lpV4nvYwD9_yqErDy8qIeljEhzus1HGJ9kc6piYJlFtgYtQSCjys88lwaU0zCucv30nZJIrGhziMW5hYfRW8vrRvAA&type=css&k=3572cbbdf8913438f1d2bd7f51c552f63984d500&t=1726130154" /><link rel="stylesheet" type="text/css" href="/ind-script/optimizer_user.php?filename=tdVJbkMhDADQfX62PYc7SL1DF131BAzOxypgFNtKc_uSRrlAhXdMekjGNlC4IWDaTPAsEMT6HoMWGBYrpa1oqyAZt4xCewf5pv4ONVzZFGIQSpBEoAXqxzl4gjVe4tZ4qXhfWCliOswJHow81GiqayPwkDVEJ7aiC8xclYYHXbC6uCeu2SUp-MeDnaeShzvOnC2pD50_-old6LBTD7o0l-VCA8_HRi4VPTcm_n_4r4PPp6r4uKPZLDkpPL4KjUF9XxoMi5vodW23uKFasC1FQ8539PnFh331Yd9Ws-t_T6mU8RO73dBf&type=css&k=9c318511241168a6e39e77f6bf542df34c817212&t=1675094994&user=T" />
<style type="text/css">
</style>
<title>이콜렉트 | 디자인적인 욕실자재, 욕실자재 수집가 e-collect</title></head><body class="theme04" data-ez-theme="theme04"> <div id="skipNavigation">
<p><a href="#category">전체상품목록 바로가기</a></p>
<p><a href="#contents">본문 바로가기</a></p>
</div>
<div id="wrap">
<div class="main_top_banner ez-align-left" data-ez-module="top-banner" data-ez-align="left" data-ez-role="style.color" data-ez-display="visible" data-ez="contents-169c2zb-1">
<div class="top_banner_box_inner">
<div class="top_banner_text"><!-- 최상단 배너 수정하는곳 -->
<a data-ez-role="a" href="#" data-href="#" target="_self" style="color: rgb(255, 255, 255); font-weight: normal;">첫 쇼핑을 축하!! <br>회원가입시 즉시 사용할 수 있는 10% 할인 쿠폰이 발급됩니다. </a>
</div><!-- //top_banner_text -->
<div class="top_banner_close" data-ez-role="close">
<input type="checkbox" name="chkbox" id="top_banner_box_cloase" value="1" data-ez-role="disable-term"><label for="top_banner_box_cloase" data-ez-role="disable-text">오늘 하루 보지 않기</label>
<i aria-hidden="true" class="icon icoClose white">닫기</i>
</div><!-- //top_banner_close -->
</div><!-- //top_banner_box_inner -->
</div>
<header id="header" class="layout4" data-ez-layout="layout4" data-ez="contents-17txfz4-1"><ez-prop data-version="1.0.0"><ez-var data-prop="layout" data-namespace="ez.layout.header.layout" data-type="array"><ez-item data-id="layout1" data-name="1단 기본형"></ez-item><ez-item data-id="layout3" data-name="1단 메뉴 중앙형"></ez-item><ez-item data-id="layout2" data-name="1단 로고 중앙형"></ez-item><ez-item data-id="layout4" data-name="2단 좌측형"></ez-item></ez-var></ez-prop><div class="inner">
<div class="toparea display_pc_only">
<div class="toparea_shoppinginfo">
<!-- //Layout_multishopList -->
<div data-ez-group="shopping-info" data-ez-role="list">
</div>
</div><!-- //toparea_shoppinginfo -->
<div class="toparea_state" data-ez-group="top-util-menu" data-ez-role="list">
<a data-ez-item="join" href="/member/agreement.html" class="xans-element- xans-layout xans-layout-statelogoff ">회원가입
</a>
<a data-ez-item="login" href="/member/login.html" class="xans-element- xans-layout xans-layout-statelogoff ">로그인
</a>
<a data-ez-item="order" href="/myshop/order/list.html" style="font-weight: bold;">주문조회</a>
<a data-ez-item="recent" href="/product/recent_view_product.html" style="font-weight: bold;">최근본상품</a>
<div class="toparea_state_board">
<a data-ez-item="board" href="#none" style="font-weight: bold;">고객센터 <i aria-hidden="true" class="icon icoArrowRight"></i></a>
<ul class="xans-element- xans-layout xans-layout-boardinfo"><li class="xans-record-"><a href="/board/공지사항/1/">공지사항</a></li>
<li class="xans-record-"><a href="/board/상품-사용후기/4/">상품 사용후기</a></li>
<li class="xans-record-"><a href="/board/상품-qa/6/">상품 Q&A</a></li>
<li class="xans-record-"><a href="/board/자유게시판/5/">자유게시판</a></li>
<li class="xans-record-"><a href="/board/갤러리/8/">갤러리</a></li>
</ul>
</div>
</div><!-- //toparea_state -->
</div><!-- //toparea -->
<div class="top_nav_box" id="top_nav_box">
<div class="xans-element- xans-layout xans-layout-logotop top_logo "><a href="/"><img src="https://cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/upload/category/logo/v2_e646e45c7e6efa3f57f9cbec06dfe2f9_ZvJstLEgrP_top.jpg" alt="COLLECT" data-ez-eb="/web/upload/ezst/shop1/ez-logo-top.edibotbanner.json"></a>
</div>
<!-- //top_logo -->
<div data-ez-module="menu-main/1" data-ez-mode="manual">
<div class="xans-element- xans-layout xans-layout-category top_category">
<ul><li><a href="/category/TOILET/56/">TOILET</a></li><li><a href="/category/BASIN/52/">BASIN</a><ul class="sub_cate01"><li><a href="/category/%EC%96%B8%EB%8D%94%EB%B3%BC-%EC%84%B8%EB%A9%B4%EB%8C%80/77/">언더볼 세면대</a></li><li><a href="/category/%ED%83%91%EB%B3%BC-%EC%84%B8%EB%A9%B4%EB%8C%80/80/">탑볼 세면대</a></li><li><a href="/category/%EC%BA%90%EB%B9%84%EB%84%B7-%EC%84%B8%EB%A9%B4%EB%8C%80/81/">캐비넷 세면대</a></li><li><a href="/category/%EB%B2%BD%EA%B1%B8%EC%9D%B4-%EC%84%B8%EB%A9%B4%EB%8C%80/82/">벽걸이 세면대</a></li><li><a href="/category/%EC%8A%A4%ED%83%A0%EB%94%A9-%EC%84%B8%EB%A9%B4%EB%8C%80/83/">스탠딩 세면대</a></li></ul></li><li><a href="/category/FAUCET/25/">FAUCET</a><ul class="sub_cate01"><li><a href="/category/%EC%84%B8%EB%A9%B4%EC%88%98%EC%A0%84/58/">세면수전</a><ul class="sub_cate02"><li><a href="/category/%EC%9B%90%ED%99%80%EC%84%B8%EB%A9%B4%EC%88%98%EC%A0%84/69/">원홀세면수전</a></li><li><a href="/category/%EB%A7%A4%EB%A6%BD%EC%84%B8%EB%A9%B4%EC%88%98%EC%A0%84/70/">매립세면수전</a></li><li><a href="/category/%ED%83%91%EB%B3%BC%EC%88%98%EC%A0%84/71/">탑볼수전</a></li></ul></li><li><a href="/category/%EC%83%A4%EC%9B%8C%EC%9A%95%EC%A1%B0%EC%88%98%EC%A0%84/59/">샤워/욕조수전</a><ul class="sub_cate02"><li><a href="/category/%EC%83%A4%EC%9B%8C%EC%9A%95%EC%A1%B0%EC%88%98%EC%A0%84/72/">샤워/욕조수전</a><ul class="sub_cate03"><li><a href="/category/%EB%8D%B0%ED%81%AC%ED%98%95/109/">데크형</a></li><li><a href="/category/%EB%B2%BD%EB%B6%80%ED%98%95/110/">벽부형</a></li></ul></li><li><a href="/category/%EB%A0%88%EC%9D%B8%EC%83%A4%EC%9B%8C%EC%88%98%EC%A0%84/76/">레인샤워수전</a></li><li><a href="/category/%EB%A7%A4%EB%A6%BD%EC%83%A4%EC%9B%8C%EC%9A%95%EC%A1%B0%EC%88%98%EC%A0%84/73/">매립샤워/욕조수전</a><ul class="sub_cate03"><li><a href="/category/%EB%A7%A4%EB%A6%BD%EC%83%A4%EC%9B%8C%EC%9A%95%EC%A1%B0/111/">매립샤워욕조</a></li><li><a href="/category/%EB%A7%A4%EB%A6%BD%EC%83%A4%EC%9B%8C/112/">매립샤워</a></li></ul></li><li><a href="/category/%EC%8A%A4%ED%83%A0%EB%93%9C%EC%9A%95%EC%A1%B0%EC%88%98%EC%A0%84/102/">스탠드욕조수전</a></li></ul></li><li><a href="/category/%EC%A3%BC%EB%B0%A9%EC%88%98%EC%A0%84/68/">주방수전</a></li><li><a href="/category/%EC%84%BC%EC%84%9C%EC%88%98%EC%A0%84/107/">센서수전</a></li></ul></li><li><a href="/category/ACCESSORY/50/">ACCESSORY</a><ul class="sub_cate01"><li><a href="/category/%EC%88%98%EA%B1%B4%EA%B1%B8%EC%9D%B4/62/">수건걸이</a></li><li><a href="/category/%ED%9C%B4%EC%A7%80%EA%B1%B8%EC%9D%B4/63/">휴지걸이</a></li><li><a href="/category/%EB%B9%84%EB%88%84%EB%8C%80/65/">비누대</a></li><li><a href="/category/%EC%98%B7%EA%B1%B8%EC%9D%B4/64/">옷걸이</a></li><li><a href="/category/%EC%8A%AC%EB%9D%BC%EC%9D%B4%EB%93%9C%EB%B0%94/86/">슬라이드바</a></li><li><a href="/category/%EC%84%A0%EB%B0%98/108/">선반</a></li></ul></li><li><a href="/category/BATHTUB/55/">BATHTUB</a><ul class="sub_cate01"><li><a href="/category/%EC%8A%A4%ED%83%A0%EB%94%A9%EC%9A%95%EC%A1%B0/87/">스탠딩욕조</a></li><li><a href="/category/%EB%A7%A4%EB%A6%BD%EC%9A%95%EC%A1%B0/88/">매립욕조</a></li></ul></li><li><a href="/category/BIDET/51/">BIDET</a><ul class="sub_cate01"><li><a href="/category/%EC%9D%BC%EC%B2%B4%ED%98%95%EB%B9%84%EB%8D%B0/66/">일체형비데</a></li><li><a href="/category/%EC%8B%9C%ED%8A%B8%ED%98%95%EB%B9%84%EB%8D%B0/67/">시트형비데</a></li></ul></li><li><a href="/category/HAND-DRY/89/">HAND DRY</a></li><li><a href="/category/FITTING/90/">FITTING</a><ul class="sub_cate01"><li><a href="/category/%EC%84%B8%EB%A9%B4%EB%8C%80%EB%B6%80%EC%86%8D/91/">세면대부속</a></li><li><a href="/category/%EC%9C%A0%EA%B0%80/92/">유가</a></li><li><a href="/category/%EC%83%A4%EC%9B%8C%EB%B6%80%EC%86%8D/94/">샤워부속</a><ul class="sub_cate02"><li><a href="/category/%EC%83%A4%EC%9B%8C%ED%97%A4%EB%93%9C/95/">샤워헤드</a><ul class="sub_cate03"><li><a href="/category/%ED%95%84%ED%84%B0%EC%83%A4%EC%9B%8C%ED%97%A4%EB%93%9C/113/">필터샤워헤드</a></li><li><a href="/category/%ED%95%84%ED%84%B0/114/">필터</a></li></ul></li><li><a href="/category/%ED%96%89%EA%B1%B0/96/">행거</a></li><li><a href="/category/%EC%83%A4%EC%9B%8C%ED%98%B8%EC%8A%A4/97/">샤워호스</a></li><li><a href="/category/%EC%83%A4%EC%9B%8C-%EC%95%94--%EC%8A%A4%ED%8C%8C%EC%9A%B0%ED%8A%B8/98/">샤워 암 / 스파우트</a></li><li><a href="/category/%EC%97%98%EB%B3%B4%EC%9A%B0/99/">엘보우</a></li><li><a href="/category/%ED%8E%B8%EC%8B%AC(%EB%8B%88%EC%81%A0)/101/">편심(니쁠)</a></li></ul></li></ul></li><li><a href="/category/MIRROR/103/">MIRROR</a><ul class="sub_cate01"><li><a href="/category/%EC%A1%B0%EB%AA%85/104/">조명</a></li><li><a href="/category/%EB%B9%84%EC%A1%B0%EB%AA%85/105/">비조명</a></li><li><a href="/category/%EC%83%81%EB%B6%80%EC%9E%A5/106/">상부장</a></li></ul></li></ul></div>
</div><!-- //menu-main/1 -->
<div class="top_mypage">
<a href="/myshop/index.html"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewbox="0 0 24 24" class="icon" role="img"><circle cx="11.5" cy="6.5" r="3.75" stroke="#000" stroke-width="1.5"></circle><path stroke="#000" stroke-width="1.5" d="M1.78 21.25c.382-4.758 4.364-8.5 9.22-8.5h1c4.856 0 8.838 3.742 9.22 8.5H1.78z"></path></svg></a>
<a href="/order/basket.html" class="xans-element- xans-layout xans-layout-orderbasketcount "><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewbox="0 0 24 24" class="icon" role="img"><path fill="#000" d="M23.073 22.253l-1.946-14.31c-.04-.38-.368-.667-.758-.667h-3.656v-1.74c0-2.543-2.115-4.613-4.713-4.613-2.599 0-4.713 2.07-4.713 4.613v1.74H3.63c-.39 0-.717.288-.758.667L.927 22.253c-.022.21.047.42.192.577.144.157.35.247.566.247h20.63c.216 0 .421-.09.566-.247.145-.157.214-.366.192-.576zM8.81 5.537c0-1.72 1.431-3.122 3.19-3.122 1.758 0 3.19 1.401 3.19 3.122v1.74H8.81v-1.74zm-6.28 16.05l1.786-12.82h2.97v1.644c0 .412.342.746.762.746.421 0 .762-.334.762-.746V8.767h6.38v1.643c0 .412.34.746.761.746.42 0 .762-.334.762-.746V8.767h2.97l1.786 12.819H2.53z"></path></svg><span class="count displaynone EC-Layout_Basket-count-display"><span class="EC-Layout-Basket-count">0</span></span>
</a>
<a href="javascript:;" class="eSearch"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewbox="0 0 24 24" class="icon" role="img"><path stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M11 19c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z"></path><path stroke="#000" stroke-linejoin="round" stroke-width="1.5" d="M22 22l-5-5"></path></svg></a>
</div><!-- //top_mypage -->
<div class="top_sidebar">
<a href="javascript:;" class="eNavFold"><i aria-hidden="true" class="icon icoNav"></i></a>
</div><!-- //top_sidebar -->
</div><!-- //top_nav_box -->
<form id="searchBarForm" name="" action="/product/search.html" method="get" target="_self" enctype="multipart/form-data" >
<input id="banner_action" name="banner_action" value="" type="hidden" /><div class="xans-element- xans-layout xans-layout-searchheader "><!--
$product_page=/product/detail.html
$category_page=/product/list.html
-->
<fieldset>
<legend>검색</legend>
<div class="top_search_box">
<input id="keyword" name="keyword" fw-filter="" fw-label="검색어" fw-msg="" class="inputTypeText" placeholder="" onmousedown="SEARCH_BANNER.clickSearchForm(this)" value="" type="text" /><button type="button" class="btnDelete">삭제</button><button type="button" class="btnSearch" onclick="SEARCH_BANNER.submitSearchBanner(this); return false;"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewbox="0 0 24 24" class="icon" role="img"><path stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M11 19c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z"></path><path stroke="#000" stroke-linejoin="round" stroke-width="1.5" d="M22 22l-5-5"></path></svg> 검색</button><ul class="autoDrop" id=""></ul>
<button type="button" class="btnClose"><i aria-hidden="true" class="icon icoClose"></i>닫기</button>
</div>
<!-- //top_search_box -->
<div class="search_title display_tablet_only">SEARCH</div>
</fieldset>
</div>
</form><!-- //Layout_SearchHeader -->
</div><!-- //inner -->
</header><!--#ez="1/6"--><aside id="aside" data-ez="contents-0rzlxn9-1" class="xans-element- xans-layout xans-layout-slidepackage "><nav class="navigation-menu" role="navigation"><!-- //Layout_multishopList -->
<div class="navigation_state" data-ez-group="top-util-menu" data-ez-role="list">
<a data-ez-item="join" href="/member/agreement.html" class="xans-element- xans-layout xans-layout-statelogoff ">회원가입
</a>
<a data-ez-item="login" href="/member/login.html" class="xans-element- xans-layout xans-layout-statelogoff ">로그인
</a>
<a data-ez-item="order" href="/myshop/order/list.html" style="font-weight: bold;">주문조회</a>
<a data-ez-item="recent" href="/product/recent_view_product.html" style="font-weight: bold;">최근본상품</a>
</div>
<!-- //navigation_state -->
<div class="tab_inner">
<a class="open" id="slide_category" href="javascript:;">카테고리</a>
<a id="slide_community" href="javascript:;">고객센터</a>
</div>
<!-- //tab_inner -->
<div data-ez-module="menu-side/1"><div id="slideCateList" class="navigation-menu__category">
<ul id="slide_add_category">
<li><a href="/category/TOILET/56/" class="view">TOILET</a></li>
<li>
<a href="/category/BASIN/52/" class="view">BASIN</a><ul class="sub_cate01">
<li><a href="/category/%EC%96%B8%EB%8D%94%EB%B3%BC-%EC%84%B8%EB%A9%B4%EB%8C%80/77/" class="view">언더볼 세면대</a></li>
<li><a href="/category/%ED%83%91%EB%B3%BC-%EC%84%B8%EB%A9%B4%EB%8C%80/80/" class="view">탑볼 세면대</a></li>
<li><a href="/category/%EC%BA%90%EB%B9%84%EB%84%B7-%EC%84%B8%EB%A9%B4%EB%8C%80/81/" class="view">캐비넷 세면대</a></li>
<li><a href="/category/%EB%B2%BD%EA%B1%B8%EC%9D%B4-%EC%84%B8%EB%A9%B4%EB%8C%80/82/" class="view">벽걸이 세면대</a></li>
<li><a href="/category/%EC%8A%A4%ED%83%A0%EB%94%A9-%EC%84%B8%EB%A9%B4%EB%8C%80/83/" class="view">스탠딩 세면대</a></li>
</ul>
</li>
<li>
<a href="/category/FAUCET/25/" class="view">FAUCET</a><ul class="sub_cate01">
<li>
<a href="/category/%EC%84%B8%EB%A9%B4%EC%88%98%EC%A0%84/58/" class="view">세면수전</a><ul class="sub_cate02">
<li><a href="/category/%EC%9B%90%ED%99%80%EC%84%B8%EB%A9%B4%EC%88%98%EC%A0%84/69/" class="view">원홀세면수전</a></li>
<li><a href="/category/%EB%A7%A4%EB%A6%BD%EC%84%B8%EB%A9%B4%EC%88%98%EC%A0%84/70/" class="view">매립세면수전</a></li>
<li><a href="/category/%ED%83%91%EB%B3%BC%EC%88%98%EC%A0%84/71/" class="view">탑볼수전</a></li>
</ul>
</li>
<li>
<a href="/category/%EC%83%A4%EC%9B%8C%EC%9A%95%EC%A1%B0%EC%88%98%EC%A0%84/59/" class="view">샤워/욕조수전</a><ul class="sub_cate02">
<li>
<a href="/category/%EC%83%A4%EC%9B%8C%EC%9A%95%EC%A1%B0%EC%88%98%EC%A0%84/72/" class="view">샤워/욕조수전</a><ul class="sub_cate03">
<li><a href="/category/%EB%8D%B0%ED%81%AC%ED%98%95/109/" class="view">데크형</a></li>
<li><a href="/category/%EB%B2%BD%EB%B6%80%ED%98%95/110/" class="view">벽부형</a></li>
</ul>
</li>
<li><a href="/category/%EB%A0%88%EC%9D%B8%EC%83%A4%EC%9B%8C%EC%88%98%EC%A0%84/76/" class="view">레인샤워수전</a></li>
<li>
<a href="/category/%EB%A7%A4%EB%A6%BD%EC%83%A4%EC%9B%8C%EC%9A%95%EC%A1%B0%EC%88%98%EC%A0%84/73/" class="view">매립샤워/욕조수전</a><ul class="sub_cate03">
<li><a href="/category/%EB%A7%A4%EB%A6%BD%EC%83%A4%EC%9B%8C%EC%9A%95%EC%A1%B0/111/" class="view">매립샤워욕조</a></li>
<li><a href="/category/%EB%A7%A4%EB%A6%BD%EC%83%A4%EC%9B%8C/112/" class="view">매립샤워</a></li>
</ul>
</li>
<li><a href="/category/%EC%8A%A4%ED%83%A0%EB%93%9C%EC%9A%95%EC%A1%B0%EC%88%98%EC%A0%84/102/" class="view">스탠드욕조수전</a></li>
</ul>
</li>
<li><a href="/category/%EC%A3%BC%EB%B0%A9%EC%88%98%EC%A0%84/68/" class="view">주방수전</a></li>
<li><a href="/category/%EC%84%BC%EC%84%9C%EC%88%98%EC%A0%84/107/" class="view">센서수전</a></li>
</ul>
</li>
<li>
<a href="/category/ACCESSORY/50/" class="view">ACCESSORY</a><ul class="sub_cate01">
<li><a href="/category/%EC%88%98%EA%B1%B4%EA%B1%B8%EC%9D%B4/62/" class="view">수건걸이</a></li>
<li><a href="/category/%ED%9C%B4%EC%A7%80%EA%B1%B8%EC%9D%B4/63/" class="view">휴지걸이</a></li>
<li><a href="/category/%EB%B9%84%EB%88%84%EB%8C%80/65/" class="view">비누대</a></li>
<li><a href="/category/%EC%98%B7%EA%B1%B8%EC%9D%B4/64/" class="view">옷걸이</a></li>
<li><a href="/category/%EC%8A%AC%EB%9D%BC%EC%9D%B4%EB%93%9C%EB%B0%94/86/" class="view">슬라이드바</a></li>
<li><a href="/category/%EC%84%A0%EB%B0%98/108/" class="view">선반</a></li>
</ul>
</li>
<li>
<a href="/category/BATHTUB/55/" class="view">BATHTUB</a><ul class="sub_cate01">
<li><a href="/category/%EC%8A%A4%ED%83%A0%EB%94%A9%EC%9A%95%EC%A1%B0/87/" class="view">스탠딩욕조</a></li>
<li><a href="/category/%EB%A7%A4%EB%A6%BD%EC%9A%95%EC%A1%B0/88/" class="view">매립욕조</a></li>
</ul>
</li>
<li>
<a href="/category/BIDET/51/" class="view">BIDET</a><ul class="sub_cate01">
<li><a href="/category/%EC%9D%BC%EC%B2%B4%ED%98%95%EB%B9%84%EB%8D%B0/66/" class="view">일체형비데</a></li>
<li><a href="/category/%EC%8B%9C%ED%8A%B8%ED%98%95%EB%B9%84%EB%8D%B0/67/" class="view">시트형비데</a></li>
</ul>
</li>
<li><a href="/category/HAND-DRY/89/" class="view">HAND DRY</a></li>
<li>
<a href="/category/FITTING/90/" class="view">FITTING</a><ul class="sub_cate01">
<li><a href="/category/%EC%84%B8%EB%A9%B4%EB%8C%80%EB%B6%80%EC%86%8D/91/" class="view">세면대부속</a></li>
<li><a href="/category/%EC%9C%A0%EA%B0%80/92/" class="view">유가</a></li>
<li>
<a href="/category/%EC%83%A4%EC%9B%8C%EB%B6%80%EC%86%8D/94/" class="view">샤워부속</a><ul class="sub_cate02">
<li>
<a href="/category/%EC%83%A4%EC%9B%8C%ED%97%A4%EB%93%9C/95/" class="view">샤워헤드</a><ul class="sub_cate03">
<li><a href="/category/%ED%95%84%ED%84%B0%EC%83%A4%EC%9B%8C%ED%97%A4%EB%93%9C/113/" class="view">필터샤워헤드</a></li>
<li><a href="/category/%ED%95%84%ED%84%B0/114/" class="view">필터</a></li>
</ul>
</li>
<li><a href="/category/%ED%96%89%EA%B1%B0/96/" class="view">행거</a></li>
<li><a href="/category/%EC%83%A4%EC%9B%8C%ED%98%B8%EC%8A%A4/97/" class="view">샤워호스</a></li>
<li><a href="/category/%EC%83%A4%EC%9B%8C-%EC%95%94--%EC%8A%A4%ED%8C%8C%EC%9A%B0%ED%8A%B8/98/" class="view">샤워 암 / 스파우트</a></li>
<li><a href="/category/%EC%97%98%EB%B3%B4%EC%9A%B0/99/" class="view">엘보우</a></li>
<li><a href="/category/%ED%8E%B8%EC%8B%AC(%EB%8B%88%EC%81%A0)/101/" class="view">편심(니쁠)</a></li>
</ul>
</li>
</ul>
</li>
<li>
<a href="/category/MIRROR/103/" class="view">MIRROR</a><ul class="sub_cate01">
<li><a href="/category/%EC%A1%B0%EB%AA%85/104/" class="view">조명</a></li>
<li><a href="/category/%EB%B9%84%EC%A1%B0%EB%AA%85/105/" class="view">비조명</a></li>
<li><a href="/category/%EC%83%81%EB%B6%80%EC%9E%A5/106/" class="view">상부장</a></li>
</ul>
</li>
</ul>
</div></div>
<!-- //menu-side/1 -->
<div class="xans-element- xans-layout xans-layout-boardinfo tab_community navigation-menu__board"><ul>
<li class="xans-record-">
<a href="/board/공지사항/1/">공지사항</a> </li>
<li class="xans-record-">
<a href="/board/상품-사용후기/4/">상품 사용후기</a> </li>
<li class="xans-record-">
<a href="/board/상품-qa/6/">상품 Q&A</a> </li>
<li class="xans-record-">
<a href="/board/자유게시판/5/">자유게시판</a> </li>
<li class="xans-record-">
<a href="/board/갤러리/8/">갤러리</a> </li>
</ul>
</div>
<!-- //tab_community -->
</nav><button type="button" class="btnClose"><i aria-hidden="true" class="icon icoClose"></i>닫기</button>
</aside>
<!--#ez="1/4"--><div id="container" data-ez="layout-1siw21s-1">
<div id="contents">
<span class="xans-element- xans-layout xans-layout-mobileaction RTMB "><a href="#none" onclick="history.go(-1);return false;"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewbox="0 0 24 24" class="icon"><path d="M7.29976 12.5L14.9998 20.1C15.3998 20.5 15.9998 20.5 16.3998 20.1C16.7998 19.7 16.7998 19.1 16.3998 18.7L9.49976 11.7L16.3998 4.7C16.7998 4.3 16.7998 3.7 16.3998 3.3C16.1998 3.1 15.9998 3 15.6998 3C15.3998 3 15.1998 3.1 14.9998 3.3L7.29976 10.9C6.89976 11.4 6.89976 12 7.29976 12.5C7.29976 12.4 7.29976 12.4 7.29976 12.5Z" fill="#000000"></path></svg>
뒤로가기</a>
</span>
<div app4you-smart-banner="smart-banner-admin-RES00001" app4you-smart-banner-html="true" class="xans-element- xans-smart-banner-admin xans-smart-banner-admin-RES00001 section" data-ez="module-0205fo4-1" data-ez-layoutsize="fit" data-ez-size-pc="1680 500" data-ez-size-mobile="662 493" data-ez-banner-area-no="343129" style="--pc-width: 1680px; --pc-height: 500px; --mobile-width: 662px; --mobile-height: 493px;"><style>
@media all and (min-width: 721px) {
[data-ez="module-0205fo4-1"].xans-smart-banner-admin.section.section_fixed {
max-width: none !important;
width: auto !important;
}
[data-ez="module-0205fo4-1"].xans-smart-banner-admin.section.section_fixed img {
width: auto !important;
max-width: none !important;
margin: 0 auto;
display: block;
}
}
@media all and (max-width: 720px) {
[data-ez="module-0205fo4-1"].xans-smart-banner-admin.section.section_fixed {
max-width: 100% !important;
}
[data-ez="module-0205fo4-1"].xans-smart-banner-admin.section.section_fixed img {
width: auto !important;
max-width: none !important;
margin: 0 auto;
display: block;
}
}
</style>
<div data-slider="true" data-type="full" data-mode="fade" data-minslides="1" data-maxslides="10" data-controls="true" data-adaptiveheight="true" data-autohover="true" data-responsive="true" class="smart-banner-wrapper circle" data-pager="true" data-auto="true" data-speed="500" data-pause="2000" data-banner-size-width="1680" data-banner-size-height="500">
<ul style="width: auto; position: relative; visibility:hidden" class="smart-banner-bxslider"><li><a href="/product/%EC%97%AC%ED%96%89%EC%9A%A9-%ED%95%84%ED%84%B0-%EC%83%A4%EC%9B%8C%EA%B8%B0%ED%97%A4%EB%93%9C/673/category/113/display/1/" target="_self" ontouchstart="APP4YOU_SMART_BANNER.incrementBanner('1252667')" onclick="APP4YOU_SMART_BANNER.incrementBanner('1252667')" style="cursor:pointer">
<picture><source media="(max-width: 720px)" srcset="https://file.cafe24cos.com/banner-admin-live/upload/asungbath/3c0750a9-4d34-41ec-b784-9a31e6bc3bbd.png"><img src="https://file.cafe24cos.com/banner-admin-live/upload/asungbath/0dcd7249-ea5e-4b33-b9ed-c68d23ee9221.png"></source></picture></a></li>
<li><a href="http://skin-skin6.asungbath.cafe24.com/product/%ED%8A%B8%EB%A0%8C%EC%B9%98%EC%9C%A0%EA%B0%80-%EC%A0%9C%EC%9E%91/391/category/92/display/1/" target="_blank" ontouchstart="APP4YOU_SMART_BANNER.incrementBanner('798988')" onclick="APP4YOU_SMART_BANNER.incrementBanner('798988')" style="cursor:pointer">
<picture><source media="(max-width: 720px)" srcset="https://file.cafe24cos.com/banner-admin-live/upload/asungbath/a422aca4-0e54-4107-80c3-ed13a052b857.png"><img src="https://file.cafe24cos.com/banner-admin-live/upload/asungbath/e9ca41d6-df33-4a91-d1a9-b162efae6b48.png"></source></picture></a></li>
<li><a href="/product/%EB%B2%A0%EB%A5%B4%EC%86%8C-600-%ED%83%91%EB%B3%BC---16035-ZE-BM--%EB%A7%A4%ED%8A%B8%ED%99%94%EC%9D%B4%ED%8A%B8-%ED%83%91%EB%B3%BC/224/category/80/display/1/" target="_self" ontouchstart="APP4YOU_SMART_BANNER.incrementBanner('798989')" onclick="APP4YOU_SMART_BANNER.incrementBanner('798989')" style="cursor:pointer">
<picture><source media="(max-width: 720px)" srcset="https://file.cafe24cos.com/banner-admin-live/upload/asungbath/014426f5-d64f-4533-b2d1-9c8742bea033.png"><img src="https://file.cafe24cos.com/banner-admin-live/upload/asungbath/48c6ad57-f899-4b95-89e0-d18dcf2596fd.png"></source></picture></a></li>
<li><a href="/product/Watertube-4A11---IS-%EC%8A%A4%ED%85%8C%EC%9D%B8%EB%A0%88%EC%8A%A4-%EC%84%B8%EB%A9%B4%EC%88%98%EC%A0%84/43/category/69/display/1/" target="_self" ontouchstart="APP4YOU_SMART_BANNER.incrementBanner('798990')" onclick="APP4YOU_SMART_BANNER.incrementBanner('798990')" style="cursor:pointer">
<picture><source media="(max-width: 720px)" srcset="https://file.cafe24cos.com/banner-admin-live/upload/asungbath/50511556-143b-4c11-95c9-a8ed6e602f75.png"><img src="https://file.cafe24cos.com/banner-admin-live/upload/asungbath/133eedc6-d7e1-490d-e5f4-51a20b6a4b11.png"></source></picture></a></li>
</ul></div>
</div>
<!--#ez="1/10"-->
<section class="section main_product_slide" data-ez-module="product-list-slide/2" data-ez-layout="grid5_slide" data-ez="contents-1l5els8-1"><ez-prop data-version="1.0.0"><ez-var data-prop="layout" data-namespace="ez.module.product-list-slide.layout" data-type="array"><ez-item data-id="grid3_slide" data-name="일반3단형(PC 3열/MOBILE 2열)"></ez-item><ez-item data-id="grid4_slide" data-name="일반4단형(PC 4열/MOBILE 2열)"></ez-item><ez-item data-id="grid5_slide" data-name="일반5단형(PC 5열/MOBILE 3열)"></ez-item><ez-item data-id="grid3_slide list_gallery" data-name="이미지강조3단형(PC 3열/MOBILE 2열)"></ez-item><ez-item data-id="grid4_slide list_gallery" data-name="이미지강조4단형(PC 4열/MOBILE 2열)"></ez-item><ez-item data-id="grid5_slide list_gallery" data-name="이미지강조5단형(PC 5열/MOBILE 3열)"></ez-item></ez-var></ez-prop><div class="main_title ez-align-left" data-ez-role="ez-align" data-ez-align="left"><!-- 온라인스페셜특가 타이틀 수정하는곳 -->
<div class="main_title_txt01" data-ez-role="title">NEW DESIGN</div>
<div class="main_title_txt02" data-ez-role="subtitle">새로운 디자인의 만남</div>
</div><!-- //main_title -->
<div data-ez-holder="product_listmain">
<div class="xans-element- xans-product xans-product-listmain-2 xans-product-listmain xans-product-2 ec-base-product swiper-container special_slide"><ul class="swiper-wrapper prdList box_slide grid5_slide" data-ez-role="layout ez-discount-tag">
<!--
※ 상품진열 슬라이드 공통소스
--><li id="anchorBoxId_678" class="swiper-slide xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/hb-7023-건조기능-o/678/category/1/display/3/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202403/e917439a0f599e814f412aeedddaa696.jpg" id="eListPrdImage678_3" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_678"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="678" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_678">0</span></strong></button></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="678" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="category_add_basket('678','1', '3', 'A0000', false, '1', 'P0000BAC', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="359000" ec-data-price="119000">
<div class="name"><a href="/product/hb-7023-건조기능-o/678/category/1/display/3/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">HB-7023 ( 건조기능 O)</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">시트형 비데</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">소비자가</span> :</strong> <span style="font-size:12px;color:#555555;text-decoration:line-through;">359,000원</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">119,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_677" class="swiper-slide xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/pvc-잔수배출-샤워호스-15m/677/category/1/display/3/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202309/facb8e60bc13904413e3c5c77ac7ce76.jpg" id="eListPrdImage677_3" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_677"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="677" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_677">0</span></strong></button></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="677" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="CAPP_SHOP_NEW_PRODUCT_OPTIONSELECT.selectOptionCommon(677, 1, 'basket', '')" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="16800">
<div class="name"><a href="/product/pvc-잔수배출-샤워호스-15m/677/category/1/display/3/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">PVC 잔수배출 샤워호스 1.5M</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">PVC 호스</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">16,800원</span><span id="span_product_tax_type_text" style=""> </span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품색상</span> :</strong> <div class="color"><span class="chips" title="#A0A316" style="background-color:#A0A316" color_no="" displayGroup="3"></span><span class="chips" title="#D7B170" style="background-color:#D7B170" color_no="" displayGroup="3"></span><span class="chips" title="#0000FD" style="background-color:#0000FD" color_no="" displayGroup="3"></span><span class="chips" title="#FFFFFF" style="background-color:#FFFFFF" color_no="" displayGroup="3"></span><span class="chips" title="#A9A9A9" style="background-color:#A9A9A9" color_no="" displayGroup="3"></span><span class="chips" title="#C0C0C0" style="background-color:#C0C0C0" color_no="" displayGroup="3"></span><span class="chips" title="#FEC0CB" style="background-color:#FEC0CB" color_no="" displayGroup="3"></span><span class="chips" title="#8D068E" style="background-color:#8D068E" color_no="" displayGroup="3"></span><span class="chips" title="#FDEB00" style="background-color:#FDEB00" color_no="" displayGroup="3"></span><span class="chips" title="#3038D9" style="background-color:#3038D9" color_no="" displayGroup="3"></span><span class="chips" title="#000000" style="background-color:#000000" color_no="" displayGroup="3"></span><span class="chips" title="#263622" style="background-color:#263622" color_no="" displayGroup="3"></span></div> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_673" class="swiper-slide xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/여행용-필터-샤워기헤드/673/category/1/display/3/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202309/f9e74fdeba4228ca7212a70cbe51a103.jpg" id="eListPrdImage673_3" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_673"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="673" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_673">0</span></strong></button></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="673" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="CAPP_SHOP_NEW_PRODUCT_OPTIONSELECT.selectOptionCommon(673, 1, 'basket', '')" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="39000">
<div class="name"><a href="/product/여행용-필터-샤워기헤드/673/category/1/display/3/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">여행용 필터 샤워기헤드</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">필터 샤워기헤드</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">39,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품색상</span> :</strong> <div class="color"><span class="chips" title="#5DFA2D" style="background-color:#5DFA2D" color_no="" displayGroup="3"></span><span class="chips" title="#96A2E6" style="background-color:#96A2E6" color_no="" displayGroup="3"></span></div> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_672" class="swiper-slide xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/블라썸-필터-샤워기헤드/672/category/1/display/3/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202309/d586f0fe75a121ccf0af9716736a43ab.jpg" id="eListPrdImage672_3" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_672"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="672" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_672">0</span></strong></button></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="672" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="CAPP_SHOP_NEW_PRODUCT_OPTIONSELECT.selectOptionCommon(672, 1, 'basket', '')" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="39000">
<div class="name"><a href="/product/블라썸-필터-샤워기헤드/672/category/1/display/3/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">블라썸 필터 샤워기헤드</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">필터 샤워기헤드</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">39,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품색상</span> :</strong> <div class="color"><span class="chips" title="#FDEB00" style="background-color:#FDEB00" color_no="" displayGroup="3"></span><span class="chips" title="#A9A9A9" style="background-color:#A9A9A9" color_no="" displayGroup="3"></span><span class="chips" title="#FEC0CB" style="background-color:#FEC0CB" color_no="" displayGroup="3"></span><span class="chips" title="#8D068E" style="background-color:#8D068E" color_no="" displayGroup="3"></span><span class="chips" title="#A0A316" style="background-color:#A0A316" color_no="" displayGroup="3"></span><span class="chips" title="#87CFEB" style="background-color:#87CFEB" color_no="" displayGroup="3"></span><span class="chips" title="#FF69B4" style="background-color:#FF69B4" color_no="" displayGroup="3"></span><span class="chips" title="#004A8B" style="background-color:#004A8B" color_no="" displayGroup="3"></span><span class="chips" title="#263622" style="background-color:#263622" color_no="" displayGroup="3"></span></div> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_622" class="swiper-slide xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/n0504/622/category/1/display/3/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202308/49dca087c89a2e60c45c38d0fe4a03bc.jpg" id="eListPrdImage622_3" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_622"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="622" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_622">0</span></strong></button></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="622" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="category_add_basket('622','1', '3', 'A0000', false, '1', 'P00000XY', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="22000">
<div class="name"><a href="/product/n0504/622/category/1/display/3/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">N0504</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">옷걸이 겸용 도어스토퍼</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">22,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_59" class="swiper-slide xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/ces992wk-스마트비데/59/category/1/display/3/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202302/fe75f0a4ab5c0a92bf615068606a3b10.jpg" id="eListPrdImage59_3" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_59"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="59" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_59">0</span></strong></button></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="59" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="category_add_basket('59','1', '3', 'A0000', false, '1', 'P00000CH', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="6000000">
<div class="name"><a href="/product/ces992wk-스마트비데/59/category/1/display/3/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">CES992WK 스마트비데</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">비데일체형</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">6,000,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_452" class="swiper-slide xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/alb14600-스마트비데/452/category/1/display/3/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202305/0f20a69f3db3536c2efab7f12fe7c7b6.png" id="eListPrdImage452_3" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_452"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="452" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_452">0</span></strong></button></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="452" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="category_add_basket('452','1', '3', 'A0000', false, '1', 'P00000RK', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="799000">
<div class="name"><a href="/product/alb14600-스마트비데/452/category/1/display/3/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">ALB14600 스마트비데</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">비데일체형</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">799,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_383" class="swiper-slide xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/alb-3500-시트형-비데/383/category/1/display/3/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202304/3b34d5d7c076d40178239c542331d106.jpg" id="eListPrdImage383_3" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_383"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="383" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_383">0</span></strong></button></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="383" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="category_add_basket('383','1', '3', 'A0000', false, '1', 'P00000OT', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="169000">
<div class="name"><a href="/product/alb-3500-시트형-비데/383/category/1/display/3/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">ALB-3500 시트형 비데</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">시트형 비데</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">169,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_535" class="swiper-slide xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/5mm-28c3-is-set-f-3-ways/535/category/1/display/3/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202308/c078fde137dbd3abafaa2752c69a201d.jpg" id="eListPrdImage535_3" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_535"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="535" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_535">0</span></strong></button></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="535" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="category_add_basket('535','1', '3', 'A0000', false, '1', 'P00000UP', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="2651000">
<div class="name"><a href="/product/5mm-28c3-is-set-f-3-ways/535/category/1/display/3/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">5mm 28C3 - IS SET F (3 Ways)</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">스테인레스 무광 매립샤워 F세트</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">2,651,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_15" class="swiper-slide xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/5mm-2851-is-97-매립세면수전/15/category/1/display/3/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202302/5d5cdf43475719bfd4a8202c1b72314c.jpg" id="eListPrdImage15_3" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_15"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="15" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_15">0</span></strong></button></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="15" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="category_add_basket('15','1', '3', 'A0000', false, '1', 'P000000P', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="1650000">
<div class="name"><a href="/product/5mm-2851-is-97-매립세면수전/15/category/1/display/3/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">5mm 2851-IS 97 매립세면수전</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">스테인레스 매립세면수전</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">1,650,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_39" class="swiper-slide xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/5mm-2811-is-스테인레스-세면수전/39/category/1/display/3/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202302/62a10a8d6826d232c3a64855e5a82042.jpg" id="eListPrdImage39_3" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_39"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="39" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_39">0</span></strong></button></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="39" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="category_add_basket('39','1', '3', 'A0000', false, '1', 'P00000BN', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="1089000">
<div class="name"><a href="/product/5mm-2811-is-스테인레스-세면수전/39/category/1/display/3/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">5mm 2811 - IS 스테인레스 세면수전</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">스테인레스 세면수전</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">1,089,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_464" class="swiper-slide xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/호라이즌-500-150-thz-탑볼세면대/464/category/1/display/3/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202306/8c445e93a7dca9d1534e8b0645cb2802.jpg" id="eListPrdImage464_3" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_464"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="464" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_464">0</span></strong></button></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="464" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="category_add_basket('464','1', '3', 'A0000', false, '1', 'P00000RW', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="473000">
<div class="name"><a href="/product/호라이즌-500-150-thz-탑볼세면대/464/category/1/display/3/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">호라이즌 500 - 150 THZ 탑볼세면대</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">500x500x95mm</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">473,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_488" class="swiper-slide xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/쏘틸레-1476-ms-매트새몬-탑볼세면대/488/category/1/display/3/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202306/67b4df4e294ec0b25997483f6fb0820f.jpg" id="eListPrdImage488_3" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_488"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="488" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_488">0</span></strong></button></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="488" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="category_add_basket('488','1', '3', 'A0000', false, '1', 'P00000SU', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="387000">
<div class="name"><a href="/product/쏘틸레-1476-ms-매트새몬-탑볼세면대/488/category/1/display/3/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">쏘틸레 - 1476 MS / 매트새몬 탑볼세면대</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">550x370x115mm</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">387,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_435" class="swiper-slide xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/bt1030-주방수전/435/category/1/display/3/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202305/6386032c6617a79d49562da8d84efc82.png" id="eListPrdImage435_3" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_435"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="435" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_435">0</span></strong></button></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="435" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="category_add_basket('435','1', '3', 'A0000', false, '1', 'P00000QT', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="416000">
<div class="name"><a href="/product/bt1030-주방수전/435/category/1/display/3/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">BT1030 주방수전</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">주방수전</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">416,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_436" class="swiper-slide xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/bt1040-선반레인샤워온도표시/436/category/1/display/3/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202305/09fcf69b2ef5e83965f19c531c3c6e19.webp" id="eListPrdImage436_3" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_436"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="436" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_436">0</span></strong></button></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="436" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="category_add_basket('436','1', '3', 'A0000', false, '1', 'P00000QU', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="1008000">
<div class="name"><a href="/product/bt1040-선반레인샤워온도표시/436/category/1/display/3/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">BT1040 선반레인샤워(온도표시)</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">선반레인샤워(온도표시)</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">1,008,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_434" class="swiper-slide xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/bt1120-샤워욕조수전/434/category/1/display/3/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202305/521f368697fe9625d862c9a64afa6410.png" id="eListPrdImage434_3" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_434"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="434" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_434">0</span></strong></button></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="434" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="category_add_basket('434','1', '3', 'A0000', false, '1', 'P00000QS', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="380000">
<div class="name"><a href="/product/bt1120-샤워욕조수전/434/category/1/display/3/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">BT1120 샤워욕조수전</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">샤워욕조수전</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">380,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_433" class="swiper-slide xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/bt1010-세면수전/433/category/1/display/3/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202305/b67edf1dd9cb69ab1b881c67252b1512.png" id="eListPrdImage433_3" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_433"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="433" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_433">0</span></strong></button></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="433" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="category_add_basket('433','1', '3', 'A0000', false, '1', 'P00000QR', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="288000">
<div class="name"><a href="/product/bt1010-세면수전/433/category/1/display/3/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">BT1010 세면수전</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">세면수전</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">288,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_432" class="swiper-slide xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/bt1110-세면수전/432/category/1/display/3/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202305/f6efc39221f2a8524e832a45bdd229a7.webp" id="eListPrdImage432_3" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_432"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="432" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_432">0</span></strong></button></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="432" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="CAPP_SHOP_NEW_PRODUCT_OPTIONSELECT.selectOptionCommon(432, 1, 'basket', '')" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="192000">
<div class="name"><a href="/product/bt1110-세면수전/432/category/1/display/3/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">BT1110 세면수전</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">세면수전</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">192,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품색상</span> :</strong> <div class="color"><span class="chips" title="#000000" style="background-color:#000000" color_no="" displayGroup="3"></span><span class="chips" title="#FF0000" style="background-color:#FF0000" color_no="" displayGroup="3"></span><span class="chips" title="#734A4A" style="background-color:#734A4A" color_no="" displayGroup="3"></span><span class="chips" title="#DDFF00" style="background-color:#DDFF00" color_no="" displayGroup="3"></span></div> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_431" class="swiper-slide xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/bt0120-샤워수전-버튼형/431/category/1/display/3/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202305/10fd98b6ca4cbb8640d202d7c78700f6.webp" id="eListPrdImage431_3" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_431"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="431" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_431">0</span></strong></button></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="431" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="CAPP_SHOP_NEW_PRODUCT_OPTIONSELECT.selectOptionCommon(431, 1, 'basket', '')" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="312000">
<div class="name"><a href="/product/bt0120-샤워수전-버튼형/431/category/1/display/3/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">BT0120 샤워수전 (버튼형)</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">샤워수전 (버튼형)</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">312,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품색상</span> :</strong> <div class="color"><span class="chips" title="#000000" style="background-color:#000000" color_no="" displayGroup="3"></span><span class="chips" title="#DEDEDE" style="background-color:#DEDEDE" color_no="" displayGroup="3"></span><span class="chips" title="#FFFFFF" style="background-color:#FFFFFF" color_no="" displayGroup="3"></span></div> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_430" class="swiper-slide xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/bt0110-세면수전-측면/430/category/1/display/3/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202305/a5b65ac813bc2695f14d66aa6456aa4a.webp" id="eListPrdImage430_3" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_430"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="430" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_430">0</span></strong></button></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="430" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="CAPP_SHOP_NEW_PRODUCT_OPTIONSELECT.selectOptionCommon(430, 1, 'basket', '')" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="150000">
<div class="name"><a href="/product/bt0110-세면수전-측면/430/category/1/display/3/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">BT0110 세면수전 (측면)</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-2 xans-product-listitem xans-product-2 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">세면수전 (측면)</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">150,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품색상</span> :</strong> <div class="color"><span class="chips" title="#000000" style="background-color:#000000" color_no="" displayGroup="3"></span><span class="chips" title="#B8B8B8" style="background-color:#B8B8B8" color_no="" displayGroup="3"></span><span class="chips" title="#FFFFFF" style="background-color:#FFFFFF" color_no="" displayGroup="3"></span></div> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
</ul>
<div class="swiper-scrollbar"></div>
</div>
</div>
<div class="swiper-button-next swiper-button-next-special_slide"></div>
<div class="swiper-button-prev swiper-button-prev-special_slide"></div>
</section><section class="section main_product_list" data-ez-module="product-list/1" data-ez-layout="grid4" data-ez="contents-1axhppd-1"><ez-prop data-version="1.0.0"><ez-var data-prop="layout" data-namespace="ez.module.product-list.layout" data-type="array"><ez-item data-id="grid3" data-name="일반3단형(PC 3열/MOBILE 1열)"></ez-item><ez-item data-id="grid4" data-name="일반4단형(PC 4열/MOBILE 2열)"></ez-item><ez-item data-id="grid5" data-name="일반5단형(PC 5열/MOBILE 2열)"></ez-item><ez-item data-id="grid3 list_gallery" data-name="이미지강조3단형(PC 3열/MOBILE 1열)"></ez-item><ez-item data-id="grid4 list_gallery" data-name="이미지강조4단형(PC 4열/MOBILE 2열)"></ez-item><ez-item data-id="grid5 list_gallery" data-name="이미지강조5단형(PC 5열/MOBILE 2열)"></ez-item></ez-var></ez-prop><div class="main_title ez-align-left" data-ez-role="ez-align" data-ez-align="left"><!-- 이번주의 입고상품 타이틀 수정하는곳 -->
<div class="main_title_txt01" data-ez-role="title">BEST ITEM</div>
<div class="main_title_txt02" data-ez-role="subtitle">추천제품</div>
</div><!-- //main_title -->
<div data-ez-holder="product_listmain">
<div class="xans-element- xans-product xans-product-listmain-1 xans-product-listmain xans-product-1 ec-base-product"><!--
$count = 40
$basket_result = /product/add_basket.html
$basket_option = /product/basket_option.html
$moreview = no
$cache = yes
-->
<ul class="prdList grid4" data-ez-role="layout ez-discount-tag">
<!--
※ 상품진열 공통소스
--><li id="anchorBoxId_429" class="xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/b5817abnb5817cbn-브러쉬드니켈-매립샤워세트/429/category/1/display/2/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202305/81b48ef6713f18e3f8c2be56b748c169.png" id="eListPrdImage429_2" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_429"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="429" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_429">0</span></strong></button></div>
<div class="badge"><span></span></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="429" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="category_add_basket('429','1', '2', 'A0000', false, '1', 'P00000QN', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="475000">
<div class="name"><a href="/product/b5817abnb5817cbn-브러쉬드니켈-매립샤워세트/429/category/1/display/2/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">B5817A.BN+B5817C.BN 브러쉬드니켈 매립샤워세트</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">브러쉬드니켈 매립샤워세트</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">475,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">원산지</span> :</strong> <span style="font-size:12px;color:#555555;">KOREA</span> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_352" class="xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/b5110bn-브러쉬드니켈-샤워욕조수전/352/category/1/display/2/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202303/bb41cfa37135bf245117776fd47ce780.jpg" id="eListPrdImage352_2" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_352"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="352" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_352">0</span></strong></button></div>
<div class="badge"><span></span></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="352" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="category_add_basket('352','1', '2', 'A0000', false, '1', 'P00000NO', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="298000">
<div class="name"><a href="/product/b5110bn-브러쉬드니켈-샤워욕조수전/352/category/1/display/2/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">B5110BN 브러쉬드니켈 샤워욕조수전</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">브러쉬드니켈 샤워욕조수전</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">298,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">원산지</span> :</strong> <span style="font-size:12px;color:#555555;">KOREA</span> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_422" class="xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/l4010bn-브러쉬드니켈-세면수전/422/category/1/display/2/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202305/a684bb2cc7a34ff0338c12a1f3a06aac.png" id="eListPrdImage422_2" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_422"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="422" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_422">0</span></strong></button></div>
<div class="badge"><span></span></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="422" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="category_add_basket('422','1', '2', 'A0000', false, '1', 'P00000QG', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="177000">
<div class="name"><a href="/product/l4010bn-브러쉬드니켈-세면수전/422/category/1/display/2/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">L4010BN 브러쉬드니켈 세면수전</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">브러쉬드니켈 세면수전</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">177,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">원산지</span> :</strong> <span style="font-size:12px;color:#555555;">KOREA</span> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_677" class="xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/pvc-잔수배출-샤워호스-15m/677/category/1/display/2/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202309/facb8e60bc13904413e3c5c77ac7ce76.jpg" id="eListPrdImage677_2" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_677"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="677" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_677">0</span></strong></button></div>
<div class="badge"><span></span></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="677" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="CAPP_SHOP_NEW_PRODUCT_OPTIONSELECT.selectOptionCommon(677, 1, 'basket', '')" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="16800">
<div class="name"><a href="/product/pvc-잔수배출-샤워호스-15m/677/category/1/display/2/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">PVC 잔수배출 샤워호스 1.5M</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">PVC 호스</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">16,800원</span><span id="span_product_tax_type_text" style=""> </span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품색상</span> :</strong> <div class="color"><span class="chips" title="#A0A316" style="background-color:#A0A316" color_no="" displayGroup="2"></span><span class="chips" title="#D7B170" style="background-color:#D7B170" color_no="" displayGroup="2"></span><span class="chips" title="#0000FD" style="background-color:#0000FD" color_no="" displayGroup="2"></span><span class="chips" title="#FFFFFF" style="background-color:#FFFFFF" color_no="" displayGroup="2"></span><span class="chips" title="#A9A9A9" style="background-color:#A9A9A9" color_no="" displayGroup="2"></span><span class="chips" title="#C0C0C0" style="background-color:#C0C0C0" color_no="" displayGroup="2"></span><span class="chips" title="#FEC0CB" style="background-color:#FEC0CB" color_no="" displayGroup="2"></span><span class="chips" title="#8D068E" style="background-color:#8D068E" color_no="" displayGroup="2"></span><span class="chips" title="#FDEB00" style="background-color:#FDEB00" color_no="" displayGroup="2"></span><span class="chips" title="#3038D9" style="background-color:#3038D9" color_no="" displayGroup="2"></span><span class="chips" title="#000000" style="background-color:#000000" color_no="" displayGroup="2"></span><span class="chips" title="#263622" style="background-color:#263622" color_no="" displayGroup="2"></span></div> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">원산지</span> :</strong> <span style="font-size:12px;color:#555555;">KOREA</span> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_673" class="xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/여행용-필터-샤워기헤드/673/category/1/display/2/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202309/f9e74fdeba4228ca7212a70cbe51a103.jpg" id="eListPrdImage673_2" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_673"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="673" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_673">0</span></strong></button></div>
<div class="badge"><span></span></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="673" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="CAPP_SHOP_NEW_PRODUCT_OPTIONSELECT.selectOptionCommon(673, 1, 'basket', '')" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="39000">
<div class="name"><a href="/product/여행용-필터-샤워기헤드/673/category/1/display/2/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">여행용 필터 샤워기헤드</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">필터 샤워기헤드</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">39,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품색상</span> :</strong> <div class="color"><span class="chips" title="#5DFA2D" style="background-color:#5DFA2D" color_no="" displayGroup="2"></span><span class="chips" title="#96A2E6" style="background-color:#96A2E6" color_no="" displayGroup="2"></span></div> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">원산지</span> :</strong> <span style="font-size:12px;color:#555555;">KOREA</span> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_672" class="xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/블라썸-필터-샤워기헤드/672/category/1/display/2/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202309/d586f0fe75a121ccf0af9716736a43ab.jpg" id="eListPrdImage672_2" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_672"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="672" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_672">0</span></strong></button></div>
<div class="badge"><span></span></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="672" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="CAPP_SHOP_NEW_PRODUCT_OPTIONSELECT.selectOptionCommon(672, 1, 'basket', '')" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="39000">
<div class="name"><a href="/product/블라썸-필터-샤워기헤드/672/category/1/display/2/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">블라썸 필터 샤워기헤드</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">필터 샤워기헤드</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">39,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품색상</span> :</strong> <div class="color"><span class="chips" title="#FDEB00" style="background-color:#FDEB00" color_no="" displayGroup="2"></span><span class="chips" title="#A9A9A9" style="background-color:#A9A9A9" color_no="" displayGroup="2"></span><span class="chips" title="#FEC0CB" style="background-color:#FEC0CB" color_no="" displayGroup="2"></span><span class="chips" title="#8D068E" style="background-color:#8D068E" color_no="" displayGroup="2"></span><span class="chips" title="#A0A316" style="background-color:#A0A316" color_no="" displayGroup="2"></span><span class="chips" title="#87CFEB" style="background-color:#87CFEB" color_no="" displayGroup="2"></span><span class="chips" title="#FF69B4" style="background-color:#FF69B4" color_no="" displayGroup="2"></span><span class="chips" title="#004A8B" style="background-color:#004A8B" color_no="" displayGroup="2"></span><span class="chips" title="#263622" style="background-color:#263622" color_no="" displayGroup="2"></span></div> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">원산지</span> :</strong> <span style="font-size:12px;color:#555555;">KOREA</span> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_153" class="xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/ac7101a-bn-브러쉬드니켈-수건걸이/153/category/1/display/2/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202302/db66fdd503984809fe9a113f5b1c3e20.jpg" id="eListPrdImage153_2" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_153"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="153" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_153">0</span></strong></button></div>
<div class="badge"><span></span></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="153" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="category_add_basket('153','1', '2', 'A0000', false, '1', 'P00000FX', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="65000">
<div class="name"><a href="/product/ac7101a-bn-브러쉬드니켈-수건걸이/153/category/1/display/2/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">AC7101A-BN 브러쉬드니켈 수건걸이</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">브러쉬드니켈 수건걸이</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">65,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">원산지</span> :</strong> <span style="font-size:12px;color:#555555;">CHINA</span> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_144" class="xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/ac7100b-bn-브러쉬드니켈-휴지걸이/144/category/1/display/2/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202302/900c505714a0e90f467e078c706a6b01.jpg" id="eListPrdImage144_2" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_144"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="144" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_144">0</span></strong></button></div>
<div class="badge"><span></span></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="144" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="category_add_basket('144','1', '2', 'A0000', false, '1', 'P00000FO', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="55000">
<div class="name"><a href="/product/ac7100b-bn-브러쉬드니켈-휴지걸이/144/category/1/display/2/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">AC7100B-BN 브러쉬드니켈 휴지걸이</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">브러쉬드니켈 휴지걸이</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">55,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">원산지</span> :</strong> <span style="font-size:12px;color:#555555;">CHINA</span> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_620" class="xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/n0501/620/category/1/display/2/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202308/dee71e366e95f1225a2146cd42ff6266.jpg" id="eListPrdImage620_2" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_620"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="620" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_620">0</span></strong></button></div>
<div class="badge"><span></span></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="620" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="category_add_basket('620','1', '2', 'A0000', false, '1', 'P00000XW', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="22000">
<div class="name"><a href="/product/n0501/620/category/1/display/2/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">N0501</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">크롬 옷걸이</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">22,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">원산지</span> :</strong> <span style="font-size:12px;color:#555555;">KOREA</span> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_613" class="xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/kh510s-5/613/category/1/display/2/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202308/7e9fae118df4ac04c8c031ac30509698.jpg" id="eListPrdImage613_2" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_613"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="613" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_613">0</span></strong></button></div>
<div class="badge"><span></span></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="613" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="category_add_basket('613','1', '2', 'A0000', false, '1', 'P00000XP', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="18000">
<div class="name"><a href="/product/kh510s-5/613/category/1/display/2/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">KH510S-5</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">크롬 옷걸이</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">18,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">원산지</span> :</strong> <span style="font-size:12px;color:#555555;">KOREA</span> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_59" class="xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/ces992wk-스마트비데/59/category/1/display/2/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202302/fe75f0a4ab5c0a92bf615068606a3b10.jpg" id="eListPrdImage59_2" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_59"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="59" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_59">0</span></strong></button></div>
<div class="badge"><span></span></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="59" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="category_add_basket('59','1', '2', 'A0000', false, '1', 'P00000CH', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="6000000">
<div class="name"><a href="/product/ces992wk-스마트비데/59/category/1/display/2/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">CES992WK 스마트비데</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">비데일체형</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">6,000,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">원산지</span> :</strong> <span style="font-size:12px;color:#555555;">JAPAN</span> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_452" class="xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/alb14600-스마트비데/452/category/1/display/2/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202305/0f20a69f3db3536c2efab7f12fe7c7b6.png" id="eListPrdImage452_2" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_452"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="452" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_452">0</span></strong></button></div>
<div class="badge"><span></span></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="452" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="category_add_basket('452','1', '2', 'A0000', false, '1', 'P00000RK', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="799000">
<div class="name"><a href="/product/alb14600-스마트비데/452/category/1/display/2/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">ALB14600 스마트비데</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">비데일체형</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">799,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">원산지</span> :</strong> <span style="font-size:12px;color:#555555;">KOREA</span> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_377" class="xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/리겔-알루미늄테두리-거울/377/category/1/display/2/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202304/29efa3841a22013a204d3681d4c27be6.jpg" id="eListPrdImage377_2" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_377"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="377" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_377">0</span></strong></button></div>
<div class="badge"><span></span></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="377" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="CAPP_SHOP_NEW_PRODUCT_OPTIONSELECT.selectOptionCommon(377, 1, 'basket', '')" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="330000">
<div class="name"><a href="/product/리겔-알루미늄테두리-거울/377/category/1/display/2/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">리겔 알루미늄테두리 거울</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">알루미늄테두리 거울</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">330,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품색상</span> :</strong> <div class="color"><span class="chips" title="#FFFFFF" style="background-color:#FFFFFF" color_no="" displayGroup="2"></span><span class="chips" title="#000000" style="background-color:#000000" color_no="" displayGroup="2"></span></div> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">원산지</span> :</strong> <span style="font-size:12px;color:#555555;">KOREA</span> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_549" class="xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/40mm-13c3-is-set-d-3-ways/549/category/1/display/2/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202308/8132a1269bbc1552044e2886ee78c072.jpg" id="eListPrdImage549_2" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_549"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="549" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_549">0</span></strong></button></div>
<div class="badge"><span></span></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="549" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="category_add_basket('549','1', '2', 'A0000', false, '1', 'P00000VD', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="3861000">
<div class="name"><a href="/product/40mm-13c3-is-set-d-3-ways/549/category/1/display/2/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">40mm 13C3 - IS SET D (3 ways)</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">스테인레스 무광 매립샤워 D세트</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">3,861,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">원산지</span> :</strong> <span style="font-size:12px;color:#555555;">ITALY</span> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_370" class="xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/7078-옐로우-원형-탑볼세면대/370/category/1/display/2/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202304/7630c3670435026c1df6ec87d597a1e1.jpg" id="eListPrdImage370_2" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_370"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="370" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_370">0</span></strong></button></div>
<div class="badge"><span></span></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="370" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="category_add_basket('370','1', '2', 'A0000', false, '1', 'P00000OG', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="80000">
<div class="name"><a href="/product/7078-옐로우-원형-탑볼세면대/370/category/1/display/2/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">7078 옐로우 원형 탑볼세면대</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">420x420x170</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">80,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">원산지</span> :</strong> <span style="font-size:12px;color:#555555;">CHINA</span> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_371" class="xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/7098-옐로우-사각-탑볼세면대/371/category/1/display/2/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202304/952a05c98ad53ea9df24ac2b9e30faf7.jpg" id="eListPrdImage371_2" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_371"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="371" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_371">0</span></strong></button></div>
<div class="badge"><span></span></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="371" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="category_add_basket('371','1', '2', 'A0000', false, '1', 'P00000OH', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="80000">
<div class="name"><a href="/product/7098-옐로우-사각-탑볼세면대/371/category/1/display/2/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">7098 옐로우 사각 탑볼세면대</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">380x380x150</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">80,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">원산지</span> :</strong> <span style="font-size:12px;color:#555555;">CHINA</span> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_372" class="xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/7020-크롬-원형-탑볼세면대/372/category/1/display/2/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202304/cc536e1118f1ff906224b93796586180.jpg" id="eListPrdImage372_2" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_372"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="372" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_372">0</span></strong></button></div>
<div class="badge"><span></span></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="372" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="category_add_basket('372','1', '2', 'A0000', false, '1', 'P00000OI', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="80000">
<div class="name"><a href="/product/7020-크롬-원형-탑볼세면대/372/category/1/display/2/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">7020 크롬 원형 탑볼세면대</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">420x420x170</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">80,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">원산지</span> :</strong> <span style="font-size:12px;color:#555555;">CHINA</span> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_111" class="xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/팔마-1384-언더볼-화이트/111/category/1/display/2/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202302/d8ea324c02da04de5c42eb63bc310d47.jpg" id="eListPrdImage111_2" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_111"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="111" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_111">0</span></strong></button></div>
<div class="badge"><span></span></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="111" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="category_add_basket('111','1', '2', 'A0000', false, '1', 'P00000EH', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="187000">
<div class="name"><a href="/product/팔마-1384-언더볼-화이트/111/category/1/display/2/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">팔마 - 1384 (언더볼) 화이트</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">560x450x185mm 세라믹</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">187,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">원산지</span> :</strong> <span style="font-size:12px;color:#555555;">ITALY ( MADE IN TURKEY )</span> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_83" class="xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/ios-2a11-cc-크롬-세면수전/83/category/1/display/2/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202302/f85443b50b9a10a3241a040a0e2db14c.jpg" id="eListPrdImage83_2" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_83"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="83" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_83">0</span></strong></button></div>
<div class="badge"><span></span></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="83" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="category_add_basket('83','1', '2', 'A0000', false, '1', 'P00000DF', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="485000">
<div class="name"><a href="/product/ios-2a11-cc-크롬-세면수전/83/category/1/display/2/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">Ios 2A11 - CC 크롬 세면수전</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">크롬 세면수전</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">485,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">원산지</span> :</strong> <span style="font-size:12px;color:#555555;">ITALY</span> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_92" class="xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/watertube-4a18-is-스테인레스-탑볼수전/92/category/1/display/2/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202302/bf99cc7f672a04cfe11f98a3a1e227d4.jpg" id="eListPrdImage92_2" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_92"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="92" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_92">0</span></strong></button></div>
<div class="badge"><span></span></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="92" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="category_add_basket('92','1', '2', 'A0000', false, '1', 'P00000DO', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="1050000">
<div class="name"><a href="/product/watertube-4a18-is-스테인레스-탑볼수전/92/category/1/display/2/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">Watertube 4A18 - IS 스테인레스 탑볼수전</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">스테인레스 탑볼수전</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">1,050,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">원산지</span> :</strong> <span style="font-size:12px;color:#555555;">ITALY</span> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_102" class="xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/스카라-1006-mmg-언더볼-매트민트그린/102/category/1/display/2/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202302/8da35b700c298b23350d21a3ecbef190.jpg" id="eListPrdImage102_2" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_102"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="102" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_102">0</span></strong></button></div>
<div class="badge"><span></span></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="102" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="category_add_basket('102','1', '2', 'A0000', false, '1', 'P00000DY', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="231000">
<div class="name"><a href="/product/스카라-1006-mmg-언더볼-매트민트그린/102/category/1/display/2/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">스카라 - 1006 MMG (언더볼) / 매트민트그린</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">550x410x185mm 세라믹</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">231,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">원산지</span> :</strong> <span style="font-size:12px;color:#555555;">ITALY ( MADE IN TURKEY)</span> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_107" class="xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/뉴제로-600-언더볼-16037-ze-화이트/107/category/1/display/2/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202302/53d5c8babda436c15a09b05a3a67898e.jpg" id="eListPrdImage107_2" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_107"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="107" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_107">0</span></strong></button></div>
<div class="badge"><span></span></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="107" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="category_add_basket('107','1', '2', 'A0000', false, '1', 'P00000ED', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="290000">
<div class="name"><a href="/product/뉴제로-600-언더볼-16037-ze-화이트/107/category/1/display/2/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">뉴제로 600 (언더볼) - 16037 ZE 화이트</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">600x370x160mm 세라믹</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">290,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">원산지</span> :</strong> <span style="font-size:12px;color:#555555;">ITALY</span> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_117" class="xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/l-764e-언더볼-화이트/117/category/1/display/2/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202302/8fb18e90c6884b2ea74a4adb607f15b7.jpg" id="eListPrdImage117_2" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_117"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="117" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_117">0</span></strong></button></div>
<div class="badge"><span></span></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="117" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="category_add_basket('117','1', '2', 'A0000', false, '1', 'P00000EN', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="270000">
<div class="name"><a href="/product/l-764e-언더볼-화이트/117/category/1/display/2/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">L 764E (언더볼) 화이트</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">540×460×172mm</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">270,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">원산지</span> :</strong> <span style="font-size:12px;color:#555555;">JAPAN</span> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_123" class="xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/아트웍크-moloco-화이트-스탠딩-세면대/123/category/1/display/2/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202302/5a51a43091af36be5d204689635775a9.jpg" id="eListPrdImage123_2" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_123"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="123" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_123">0</span></strong></button></div>
<div class="badge"><span></span></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="123" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="category_add_basket('123','1', '2', 'A0000', false, '1', 'P00000ET', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="3520000">
<div class="name"><a href="/product/아트웍크-moloco-화이트-스탠딩-세면대/123/category/1/display/2/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">아트웍크 - MOLOCO 화이트 스탠딩 세면대</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">390X440X945mm 세라믹</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">3,520,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">원산지</span> :</strong> <span style="font-size:12px;color:#555555;">ITALY</span> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_128" class="xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/wd-38558-매트화이트-스탠딩-세면대/128/category/1/display/2/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202302/0f54b0eb574688270b110a8fe4a56085.jpg" id="eListPrdImage128_2" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_128"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="128" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_128">0</span></strong></button></div>
<div class="badge"><span></span></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="128" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="category_add_basket('128','1', '2', 'A0000', false, '1', 'P00000EY', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="1034000">
<div class="name"><a href="/product/wd-38558-매트화이트-스탠딩-세면대/128/category/1/display/2/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">WD - 38558 매트화이트 스탠딩 세면대</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">480X480X900mm 인조대리석</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">1,034,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">원산지</span> :</strong> <span style="font-size:12px;color:#555555;">CHINA</span> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_97" class="xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/paospa-2011-cc-크롬-세면수전/97/category/1/display/2/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202302/23d89f35396f0f7a5fef24c174d802ad.jpg" id="eListPrdImage97_2" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_97"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="97" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_97">0</span></strong></button></div>
<div class="badge"><span></span></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="97" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="category_add_basket('97','1', '2', 'A0000', false, '1', 'P00000DT', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="570000">
<div class="name"><a href="/product/paospa-2011-cc-크롬-세면수전/97/category/1/display/2/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">Pao_Spa 2011 - CC 크롬 세면수전</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">크롬 세면수전</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">570,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">원산지</span> :</strong> <span style="font-size:12px;color:#555555;">ITALY</span> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_103" class="xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/스카라-1006-mib-언더볼-매트아이스블루/103/category/1/display/2/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202302/70a13a418acb00e55223d8bbd224cb3f.jpg" id="eListPrdImage103_2" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_103"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="103" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_103">0</span></strong></button></div>
<div class="badge"><span></span></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="103" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="category_add_basket('103','1', '2', 'A0000', false, '1', 'P00000DZ', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="231000">
<div class="name"><a href="/product/스카라-1006-mib-언더볼-매트아이스블루/103/category/1/display/2/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">스카라 - 1006 MIB (언더볼) / 매트아이스블루</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">550x410x185mm 세라믹</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">231,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">원산지</span> :</strong> <span style="font-size:12px;color:#555555;">ITALY ( MADE IN TURKEY )</span> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_106" class="xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/뉴제로-800-언더볼-18037-ze-화이트/106/category/1/display/2/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202302/28d94374fc718637e14fd0b375978fd8.jpg" id="eListPrdImage106_2" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_106"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="106" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_106">0</span></strong></button></div>
<div class="badge"><span></span></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="106" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="category_add_basket('106','1', '2', 'A0000', false, '1', 'P00000EC', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="352000">
<div class="name"><a href="/product/뉴제로-800-언더볼-18037-ze-화이트/106/category/1/display/2/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">뉴제로 800 (언더볼) - 18037 ZE 화이트</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">800x370x160mm 세라믹</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">352,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">원산지</span> :</strong> <span style="font-size:12px;color:#555555;">ITALY</span> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_120" class="xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/wd-38235-매트화이트-스탠딩-세면대/120/category/1/display/2/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202302/7c4195a423429158d97a73db5cbdde5d.jpg" id="eListPrdImage120_2" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_120"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="120" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_120">0</span></strong></button></div>
<div class="badge"><span></span></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="120" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="category_add_basket('120','1', '2', 'A0000', false, '1', 'P00000EQ', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="979000">
<div class="name"><a href="/product/wd-38235-매트화이트-스탠딩-세면대/120/category/1/display/2/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">WD - 38235 매트화이트 스탠딩 세면대</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">Ø450X900mm 인조대리석</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">979,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">원산지</span> :</strong> <span style="font-size:12px;color:#555555;">CHINA</span> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
<li id="anchorBoxId_125" class="xans-record-">
<div class="prdList__item">
<div class="thumbnail">
<a href="/product/카티노-톤도-po-라이트블루-스탠딩-세면대/125/category/1/display/2/"><img src="//cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/product/medium/202302/ee1f26d8a6100d5288c08064c0f92007.jpg" id="eListPrdImage125_2" alt="세면대수전, 샤워기수전, 싱크대수전, 수전, 샤워기, 샤워기헤드" loading="lazy"></a>
<div class="likeButton likePrd likePrd_125"><button type="button"><img src="//img.echosting.cafe24.com/skin/admin_ko_KR/product/ico_likeit.png" class="likePrdIcon" product_no="125" category_no="1" icon_status="off" alt="좋아요 등록 전" /> <strong><span class="likePrdCount likePrdCount_125">0</span></strong></button></div>
<div class="badge"><span></span></div>
<div class="icon__box">
<span class="wish"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_wish_before.png" class="icon_img ec-product-listwishicon" alt="관심상품 등록 전" productno="125" categoryno="1" icon_status="off" login_status="F" individual-set="F" />WISH</span>
<span class="cart"><img src="//img.echosting.cafe24.com/design/skin/admin/ko_KR/btn_list_cart.gif" onClick="category_add_basket('125','1', '2', 'A0000', false, '1', 'P00000EV', 'A', 'F', '0');" alt="장바구니 담기" class="ec-admin-icon cart" />ADD</span>
<span class="option">OPTION</span>
</div>
</div>
<div class="description" ec-data-custom="" ec-data-price="5000000">
<div class="name"><a href="/product/카티노-톤도-po-라이트블루-스탠딩-세면대/125/category/1/display/2/" class=""><span class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</span> <span style="font-size:12px;color:#555555;">카티노 톤도 - PO 라이트블루 스탠딩 세면대</span></a></div>
<ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1 spec"><li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품요약정보</span> :</strong> <span style="font-size:12px;color:#555555;">560x400x165mm 세라믹 + 대리석 상판</span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#008BCC;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#008BCC;font-weight:bold;">5,000,000원</span><span id="span_product_tax_type_text" style=""> </span> </li>
<li class=" xans-record-">
<strong class="title displaynone"><span style="font-size:12px;color:#555555;">원산지</span> :</strong> <span style="font-size:12px;color:#555555;">ITALY</span> </li>
</ul>
<div class="icon"> </div>
</div>
</div>
</li>
</ul>
</div>
</div>
</section><section class="section main_video ez-align-center" data-ez-module="video/1" data-ez-role="style.background" data-ez-align="center" data-ez="contents-0gyh81q-1"><div class="main_video_title"><!-- 비디오 타이틀 수정하는곳 -->
<div class="main_title_txt01"><span data-ez-role="title">HOW TO MADE</span></div>
<div class="main_title_txt02" data-ez-role="desc">최첨단 시스템으로 만들어내는 걸작</div>
</div><!-- //main_video_title -->
<div class="main_video_box"><iframe data-ez-role="video" id="ytplayer" type="text/html" src="//www.youtube.com/embed/rXRPSGZSJ6M" frameborder="0" allowfullscreen data-ez-rawsrc="https://youtu.be/rXRPSGZSJ6M"></iframe></div>
</section><section class="section main_text ez-textsize-medium ez-align-center" data-ez-module="text/1" data-ez-role="style.background" data-ez-align="center" data-ez-textsize="medium" style="background-color: rgb(51, 51, 51);" data-ez="contents-0xruofa-1"><!-- 메인 텍스트박스 수정하는곳 --><div class="main_login_title" data-ez-role="title" style="color: rgb(255, 255, 255);">JOIN EVENT</div>
<div class="main_login_txt" data-ez-role="desc" style="color: rgb(255, 255, 255);"><p>지금 바로 온라인 스토어에</p><p>회원가입하고 다양한 이벤트를 만나보세요.</p></div>
<div class="main_text_link"><a data-ez-role="a" href="#" target="_self">회원가입</a></div>
</section><!--#ez="1/6"--></div>
</div>
<div class="bottom-nav RMB RTB" ez-module="bottom-navigation" data-ez="module-1sl1dny-1">
<ul class="bottom-nav__tabBar"><li><button type="button" class="btnNav eNavFold"><i aria-hidden="true" class="icon icoNav"></i>네비게이션</button></li>
<li><button type="button" class="btnSearch eSearch"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewbox="0 0 24 24" class="icon" role="img"><path stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M11 19c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z"></path><path stroke="#000" stroke-linejoin="round" stroke-width="1.5" d="M22 22l-5-5"></path></svg>검색</button></li>
<li><a href="/"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewbox="0 0 24 24" class="icon" role="img"><path stroke="#000" stroke-width="1.5" d="M12 3L2 11.36V22h7.692v-7.6h4.616V22H22V11.36L12 3z"></path></svg>홈</a></li>
<li class="xans-element- xans-layout xans-layout-statelogoff "><a href="/order/basket.html"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewbox="0 0 24 24" class="icon" role="img"><path fill="#000" d="M23.073 22.253l-1.946-14.31c-.04-.38-.368-.667-.758-.667h-3.656v-1.74c0-2.543-2.115-4.613-4.713-4.613-2.599 0-4.713 2.07-4.713 4.613v1.74H3.63c-.39 0-.717.288-.758.667L.927 22.253c-.022.21.047.42.192.577.144.157.35.247.566.247h20.63c.216 0 .421-.09.566-.247.145-.157.214-.366.192-.576zM8.81 5.537c0-1.72 1.431-3.122 3.19-3.122 1.758 0 3.19 1.401 3.19 3.122v1.74H8.81v-1.74zm-6.28 16.05l1.786-12.82h2.97v1.644c0 .412.342.746.762.746.421 0 .762-.334.762-.746V8.767h6.38v1.643c0 .412.34.746.761.746.42 0 .762-.334.762-.746V8.767h2.97l1.786 12.819H2.53z"></path></svg>Cart <span class="count displaynone EC-Layout_Basket-count-display"><span class="EC-Layout-Basket-count"></span></span></a>
</li>
<li><a href="/myshop/index.html"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewbox="0 0 24 24" class="icon" role="img"><circle cx="11.5" cy="6.5" r="3.75" stroke="#000" stroke-width="1.5"></circle><path stroke="#000" stroke-width="1.5" d="M1.78 21.25c.382-4.758 4.364-8.5 9.22-8.5h1c4.856 0 8.838 3.742 9.22 8.5H1.78z"></path></svg>
마이쇼핑</a></li>
</ul><div class="bottom-nav__top">
<a href="#wrap" title="화면 최상단으로 이동하기"><svg xmlns="http://www.w3.org/2000/svg" width="14" height="20" fill="#1a1a1a" viewbox="0 0 14 20" class="icon" role="img"><path d="M3,8.4C2.3,9,1.2,9,0.5,8.3c-0.6-0.7-0.6-1.7,0-2.4l5.3-5.2C6.5,0,7.6,0,8.3,0.7l5.2,5.1c0.7,0.7,0.7,1.8,0,2.5
c-0.7,0.7-1.8,0.7-2.4,0L8.8,6.1l0,12.1c0,2.3-3.6,2.3-3.6,0l0-12L3,8.4z"></path></svg></a>
</div>
</div>
<div class="footer_margin" data-ez="module-075ey9y-1" data-ez-module="user-defined/1" data-ez-name="USER DEFINED" data-ez-type="plain"></div>
<footer id="footer" class="layout1" data-ez-layout="layout1" data-ez="module-0ljj1wg-1"><ez-prop data-version="1.0.0"><ez-var data-prop="layout" data-namespace="ez.layout.footer.layout" data-type="array"><ez-item data-id="layout1" data-name="기본형"></ez-item><ez-item data-id="layout3" data-name="좌우반전형"></ez-item><ez-item data-id="layout2" data-name="중앙형"></ez-item></ez-var></ez-prop><div class="xans-element- xans-layout xans-layout-footer inner "><div class="xans-element- xans-layout xans-layout-logobottom bt_logo "><a href="/"><img src="https://cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/web/upload/category/logo/v2_e646e45c7e6efa3f57f9cbec06dfe2f9_bgZiDzOdo1_bottom.jpg" alt="COLLECT" data-ez-eb="/web/upload/ezst/shop1/ez-logo-top.edibotbanner.json"></a>
</div>
<!-- //bt_logo -->
<div class="bt_util" data-ez-group="shortcut">
<div data-ez-role="title" style="display:none;">바로가기</div>
<ul data-ez-role="list">
<li data-ez-item="company"><a href="/shopinfo/company.html">회사소개</a></li>
<li data-ez-item="agreement"><a href="/member/mall_agreement.html">이용약관</a></li>
<li data-ez-item="privacy"><a href="/member/privacy.html"><strong>개인정보처리방침</strong></a></li>
<li data-ez-item="guide"><a href="/shopinfo/guide.html">이용안내</a></li>
</ul>
</div>
<!-- //bt_util -->
<div data-ez-group="cs" class="xans-element- xans-layout xans-layout-info bt_tel "><div class="bt_title" data-ez-role="title">고객센터 정보</div>
<div data-ez-role="list">
<div data-ez-item="phone" class="bt_txt01">
<strong>상담/주문전화</strong><span class="pdr10"></span><span data-ez-role="value">010-5945-9499</span>
</div>
<div data-ez-item="email" class="bt_txt01">
<strong>상담/주문 이메일</strong><span data-ez-role="value">asungbath@naver.com</span>
</div>
<div data-ez-item="runtime" class="bt_txt01">
<strong>CS운영시간</strong> <span data-ez-role="value">•평일 오전 9시00분~오후 5시 (점심시간 12시~1시)<br>•토, 일요일 및 공휴일은 고객 게시판을 이용해 주세요. <br> 월요일에 순차적으로 답변 드립니다.</span>
</div>
</div>
<div data-ez-group="bank" class="bt_txt03">
<div data-ez-role="title" class="bt_title">결제 정보</div>
<div class="bt_title_sub"><strong>무통장 계좌정보</strong></div>
<div data-ez-role="list"><div data-ez-role="item">
<span data-ez-role="bank_name">국민은행</span> <span class="pdr10"></span>
<span data-ez-role="account_number">618301-01-475212</span><span class="pdr10"></span>
<span data-ez-role="account_name">도민혁(아성바스)</span>
</div></div>
</div>
</div>
<!-- //bt_tel -->
<div class="bt_info" data-ez-group="info">
<div class="bt_title" data-ez-role="title">쇼핑몰 기본정보</div>
<div class="bt_info_list" data-ez-role="list">
<div data-ez-item="company_name">
<span data-ez-role="field">상호명</span> <span data-ez-role="value">아성바스</span>
</div>
<div data-ez-item="president_name">
<span data-ez-role="field">대표자명</span> <span data-ez-role="value">도민혁</span>
</div>
<div data-ez-item="address">
<span data-ez-role="field">사업장 주소</span> <span data-ez-role="value">12239 경기도 남양주시 홍유릉로248번길 42 (금곡동) 신성푸른솔아파트 109동 1602호</span>
</div>
<div data-ez-item="phone">
<span data-ez-role="field">대표 전화</span> <span data-ez-role="value">010-5945-9499</span>
</div>
<div data-ez-item="company_regno">
<span data-ez-role="field">사업자 등록번호</span> <span data-ez-role="value">151-01-01357</span>
</div>
<div data-ez-item="network_regno">
<span data-ez-role="field">통신판매업 신고번호</span> <span data-ez-role="value">제2023-금곡양정-0063호 <a href="#none" onclick="window.open('http://www.ftc.go.kr/bizCommPop.do?wrkr_no=1510101357', 'bizCommPop', 'width=750, height=950;');return false;">[사업자정보확인]</a></span>
</div>
<div data-ez-item="cpo_name">
<span data-ez-role="field">개인정보보호책임자</span> <span data-ez-role="value">도민혁</span>
</div>
</div>
<!-- //bt_info_list -->
</div>
<!-- //bt_info -->
<div class="bt_sns" data-ez-group="sns">
<div class="bt_title" data-ez-role="title">SNS</div>
<div class="bt_sns_box" data-ez-role="list">
<a data-ez-item="instagram" href="https://instagram.com/" target="_blank"><svg xmlns="http://www.w3.org/2000/svg" width="33" height="33" fill="none" viewbox="0 0 33 33" class="icon" role="img"><g><circle cx="16.5" cy="16.5" r="16"></circle><path d="M16.5,1C25,1,32,8,32,16.5S25,32,16.5,32S1,25,1,16.5S8,1,16.5,1 M16.5,0C7.4,0,0,7.4,0,16.5S7.4,33,16.5,33
S33,25.6,33,16.5S25.6,0,16.5,0L16.5,0z"></path></g><path d="M17,12.1c1.6,0,1.8,0,2.4,0c1.6,0.1,2.4,0.8,2.5,2.5c0,0.6,0,0.8,0,2.4c0,1.6,0,1.8,0,2.4
c-0.1,1.6-0.8,2.4-2.5,2.5c-0.6,0-0.8,0-2.4,0c-1.6,0-1.8,0-2.4,0c-1.6-0.1-2.4-0.8-2.5-2.5c0-0.6,0-0.8,0-2.4c0-1.6,0-1.8,0-2.4
c0.1-1.6,0.8-2.4,2.5-2.5C15.2,12.1,15.4,12.1,17,12.1z M17,11c-1.6,0-1.8,0-2.5,0c-2.2,0.1-3.4,1.3-3.5,3.5c0,0.6,0,0.8,0,2.5
s0,1.8,0,2.5c0.1,2.2,1.3,3.4,3.5,3.5c0.6,0,0.8,0,2.5,0s1.8,0,2.5,0c2.2-0.1,3.4-1.3,3.5-3.5c0-0.6,0-0.8,0-2.5s0-1.8,0-2.5
c-0.1-2.2-1.3-3.4-3.5-3.5C18.8,11,18.6,11,17,11z M17,13.9c-1.7,0-3.1,1.4-3.1,3.1s1.4,3.1,3.1,3.1s3.1-1.4,3.1-3.1
C20.1,15.3,18.7,13.9,17,13.9z M17,19c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C19,18.1,18.1,19,17,19z M20.2,13.1
c-0.4,0-0.7,0.3-0.7,0.7s0.3,0.7,0.7,0.7c0.4,0,0.7-0.3,0.7-0.7S20.6,13.1,20.2,13.1z"></path></svg>
instagram</a>
<a data-ez-item="youtube" href="https://youtube.com/" target="_blank"><svg xmlns="http://www.w3.org/2000/svg" width="33" height="33" fill="none" viewbox="0 0 33 33" class="icon" role="img"><g><circle cx="16.5" cy="16.5" r="16"></circle><path d="M16.5,1C25,1,32,8,32,16.5S25,32,16.5,32S1,25,1,16.5S8,1,16.5,1 M16.5,0C7.4,0,0,7.4,0,16.5S7.4,33,16.5,33
S33,25.6,33,16.5S25.6,0,16.5,0L16.5,0z"></path></g><path d="M20.7,12c-2-0.1-6.4-0.1-8.4,0c-2.1,0.1-2.4,1.4-2.4,4.9c0,3.4,0.3,4.7,2.4,4.9c2,0.1,6.4,0.1,8.4,0
c2.1-0.1,2.4-1.4,2.4-4.9C23.1,13.5,22.8,12.2,20.7,12z M14.8,19.1v-4.4l4.4,2.2L14.8,19.1z"></path></svg>
youtube</a>
<a data-ez-item="facebook" href="https://facebook.com/" target="_blank"><svg xmlns="http://www.w3.org/2000/svg" width="33" height="33" fill="none" viewbox="0 0 33 33" class="icon" role="img"><g><circle cx="16.5" cy="16.5" r="16"></circle><path d="M16.5,1C25,1,32,8,32,16.5S25,32,16.5,32S1,25,1,16.5S8,1,16.5,1 M16.5,0C7.4,0,0,7.4,0,16.5S7.4,33,16.5,33
S33,25.6,33,16.5S25.6,0,16.5,0L16.5,0z"></path></g><path d="M14.8,14.3h-1.8v2.2h1.8V23h2.9v-6.5h2.1l0.2-2.2h-2.3v-0.9c0-0.5,0.1-0.7,0.7-0.7h1.7V10h-2.2
c-2.1,0-3,0.9-3,2.5V14.3z"></path></svg>
facebook</a>
<a data-ez-item="kakao" href="https://pf.kakao.com/" target="_blank"><svg xmlns="http://www.w3.org/2000/svg" width="33" height="33" fill="none" viewbox="0 0 33 33" class="icon" role="img"><g><circle cx="16.5" cy="16.5" r="16"></circle><path d="M16.5,1C25,1,32,8,32,16.5S25,32,16.5,32S1,25,1,16.5S8,1,16.5,1 M16.5,0C7.4,0,0,7.4,0,16.5S7.4,33,16.5,33
S33,25.6,33,16.5S25.6,0,16.5,0L16.5,0z"></path></g><path d="M16.5,10.2c-4.1,0-7.4,2.6-7.4,5.9c0,2.1,1.4,3.9,3.5,5c-0.2,0.6-0.6,2.1-0.6,2.4c-0.1,0.4,0.1,0.4,0.3,0.3
c0.1-0.1,2-1.4,2.9-1.9c0.4,0.1,0.9,0.1,1.4,0.1c4.1,0,7.4-2.6,7.4-5.9C23.9,12.8,20.6,10.2,16.5,10.2"></path></svg>
kakao</a>
<a data-ez-item="twitter" href="https://twitter.com/" target="_blank"><svg xmlns="http://www.w3.org/2000/svg" width="33" height="33" fill="none" viewbox="0 0 33 33" class="icon" role="img"><g><circle cx="16.5" cy="16.5" r="16"></circle><path d="M16.5,1C25,1,32,8,32,16.5S25,32,16.5,32S1,25,1,16.5S8,1,16.5,1 M16.5,0C7.4,0,0,7.4,0,16.5S7.4,33,16.5,33
S33,25.6,33,16.5S25.6,0,16.5,0L16.5,0z"></path></g><path d="M23.4,12.2c-0.5,0.2-1.1,0.4-1.6,0.4c0.6-0.4,1-0.9,1.2-1.6c-0.6,0.3-1.2,0.6-1.8,0.7c-1.1-1.2-2.9-1.2-4-0.2
c-0.6,0.5-0.9,1.3-0.9,2.1c0,0.2,0,0.4,0.1,0.6c-2.3-0.1-4.4-1.2-5.8-3c-0.8,1.3-0.4,3,0.9,3.8c-0.4,0-0.9-0.1-1.3-0.4v0
c0,1.3,1,2.5,2.3,2.8c-0.2,0.1-0.5,0.1-0.7,0.1c-0.2,0-0.4,0-0.5,0c0.4,1.2,1.4,1.9,2.6,2c-1,0.8-2.2,1.2-3.5,1.2
c-0.2,0-0.4,0-0.7,0c3.7,2.4,8.7,1.3,11.1-2.4c0.8-1.3,1.3-2.8,1.3-4.3v-0.4C22.5,13.3,23,12.8,23.4,12.2"></path></svg>
twitter</a>
<a data-ez-item="blog" href="https://blog.naver.com/" target="_blank"><svg xmlns="http://www.w3.org/2000/svg" width="33" height="33" fill="none" viewbox="0 0 33 33" class="icon" role="img"><g><circle cx="16.5" cy="16.5" r="16"></circle><path d="M16.5,1C25,1,32,8,32,16.5S25,32,16.5,32S1,25,1,16.5S8,1,16.5,1 M16.5,0C7.4,0,0,7.4,0,16.5S7.4,33,16.5,33
S33,25.6,33,16.5S25.6,0,16.5,0L16.5,0z"></path></g><path d="M17,14.6c0,0-1,0-1.9,0.9V12h-2.2v9.2h2.2v-0.7c0,0,0.5,0.9,1.8,0.9c0,0,3.1-0.1,3.1-3.4
C20.1,18,20,14.6,17,14.6z M16.5,19.5c-0.8,0-1.4-0.6-1.4-1.4c0-0.8,0.6-1.4,1.4-1.4c0.8,0,1.4,0.6,1.4,1.4
C17.9,18.8,17.3,19.5,16.5,19.5z"></path></svg>
blog</a>
</div>
<!-- //bt_sns_box -->
</div>
<!-- //bt_sns -->
<div class="bt_dummy">
<div class="bt_escrow" data-ez-escrow style="display:none;">
<!-- 구매안전서비스 배너 -->
<a href="#" data-ez-link="#link">
<img src="https://cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/SkinImg/img/bt_ew_allat.png" class="bt_ew_allat" alt="올앳" data-ez-escrow-id="allat">
<img src="https://cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/SkinImg/img/bt_ew_iniapy.png" class="bt_ew_iniapy" alt="이니시스" data-ez-escrow-id="inicis">
<img src="https://cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/SkinImg/img/bt_ew_kcp.png" class="bt_ew_kcp" alt="NHN한국사이버결제" data-ez-escrow-id="kcp">
<img src="https://cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/SkinImg/img/bt_ew_kicc.png" class="bt_ew_kicc" alt="한국정보통신" data-ez-escrow-id="kicc">
<img src="https://cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/SkinImg/img/bt_ew_ksnet.png" class="bt_ew_ksnet" alt="케이에스넷" data-ez-escrow-id="ksnet">
<img src="https://cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/SkinImg/img/bt_ew_nice.png" class="bt_ew_nice" alt="나이스페이먼츠" data-ez-escrow-id="nicepay">
<img src="https://cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/SkinImg/img/bt_ew_payments.png" class="bt_ew_payments" alt="토스페이먼츠" data-ez-escrow-id="dacom">
<img src="https://cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/SkinImg/img/bt_ew_settle.png" class="bt_ew_settle" alt="세틀뱅크" data-ez-escrow-id="settlebank">
<img src="https://cafe24.poxo.com/ec01/asungbath/FswOdE9MfRI0I8YryJi6aoqSXvmSOFh8ffpEgiqFLhKl40yTOY5HIoQZjZ5mJHzkX5D7vjQ/jMUHMPnpWlnuBg==/_/SkinImg/img/bt_ew_smartro.png" class="bt_ew_smartro" alt="스마트로" data-ez-escrow-id="smartro">
<span>고객님은 안전거래를 위해 결제시 저희 쇼핑몰에서 가입한 구매안전 서비스를 이용하실 수 있습니다. [서비스가입정보확인]</span>
</a>
</div>
<!-- //bt_escrow -->
</div>
<!-- //bt_dummy -->
<div class="bt_copyright">
Copyright © COLLECT. All Rights Reserved. Hosting by Cafe24 Corp.
</div>
<!-- //bt_copyright -->
</div>
<!-- //inner -->
</footer><!--#ez="1/6"--><!--#ez="1/9"--></div><!-- //wrap -->
<div id="progressPaybar" style="display:none;">
<div id="progressPaybarBackground" class="layerProgress"></div>
<div id="progressPaybarView">
<div class="box">
<h3>현재 결제가 진행중입니다.</h3>
<p class="txt">
본 결제 창은 결제완료 후 자동으로 닫히며,결제 진행 중에 본 결제 창을 닫으시면<br>
주문이 되지 않으니 결제 완료 될 때 까지 닫지 마시기 바랍니다.
</p>
<div class="progressbar"><img src="//img.echosting.cafe24.com/skin/skin/common/img_loading.gif" alt="loading" loading="lazy"></div>
</div>
</div>
</div>
<div class="layer_shadow" id="layer_shadow"></div>
<div class="layer_shadow" id="layer_shadow_search"></div>
<div id="layoutDimmed" class="dimmed"></div>
<span itemscope="" itemtype="https://schema.org/Organization">
<link itemprop="url" href="https://e-collect.shop">
</span>
<script type="text/javascript" src="/app/Eclog/js/cid.generate.js?vs=8d90468f35133efcb1ccfe9a619ce89a&u=asungbath.1"></script>
<script> (function (i, s, o, g) {
a = s.createElement(o), m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
a.setAttribute('crossorigin', 'anonymous');
m.parentNode.insertBefore(a, m);
a.onload = function() {
if (typeof window.initCaWebAnalytics === 'function') {
window.initCaWebAnalytics({"mid":"asungbath","stype":"e","domain":"","shop_no":1,"lang":"ko_KR","mobile_flag":"F","send_endpoint":"https://ca-log.cafe24data.com","path_role":"MAIN"});
}
};
})(window, document, 'script', '//optimizer.poxo.com/ca2/analytics.js');</script>
<script>
try {
// Account ID 적용
if (!wcs_add) var wcs_add = {};
wcs_add["wa"] = "s_25712f7a87a4";
// 네이버 페이 White list가 있을 경우
wcs.checkoutWhitelist = ["asungbath.cafe24.com", "www.asungbath.cafe24.com", "m.asungbath.cafe24.com", "e-collect.shop", "www.e-collect.shop", "m.e-collect.shop"];
// 레퍼러
wcs.setReferer("");
// 유입 추적 함수 호출
wcs.inflow("e-collect.shop");
// 로그수집
wcs_do();
} catch (e) {};
</script>
<!-- External Script Start -->
<!-- kmp -->
<!-- CMC3 script -->
<div id="kmp_common_top_script" style="display:none;">
<script type="text/javascript" charset="UTF-8" src="//t1.daumcdn.net/adfit/static/kp.js"></script>
<script type="text/javascript">
kakaoPixel('4198393955297479002').pageView();
kakaoPixel.setServiceOrigin('20001');
</script>
</div>
<!-- CMC3 script -->
<!-- External Script End -->
<script type="text/javascript" src="//t1.daumcdn.net/adfit/static/kp.js" charset="utf-8"></script>
<script type="text/javascript" src="//t1.kakaocdn.net/kakao_js_sdk/v1/kakao.min.js" charset="utf-8"></script>
<script type="text/javascript" src="/ind-script/i18n.php?lang=ko_KR&domain=front&v=2505081404" charset="utf-8"></script>
<script src="/ind-script/optimizer.php?filename=zVnJUuQ4EL2Dr_MdhtlirlTRzBANA0HRzVmW01XC2kYLhfvrJ73QTQ14k0zEHMply3pPKSlTL2WlOyUgPf3ZpIUhAvbKlKkBq7yhkD7alJ3-IZNH-1M6VM8zTWiZPv7jwVTd3y_J78nJTCQ8OzCScNsVJFSpkkEsizc8qAsJ0KSQwVDCGbFhaHzrlPlPx7VRW8QfTE9OHDiGFQTWki4Fet3cPDC3u_92ThxJBJMzeDjLEAX3eD-Ostow6YoJ9Ir62qwLZcRaSWcU52DGcbfc2zOtV4bl2wn2eMf4eK3CqGakjqziiFDyyCl9xJmEo4xIOcWuloIqIZScWvuZSAwnib6pDbjprTQ4B0JznJf3QUTr9FpljEN69wrf2jcwKj04oXKPRXbP9LwGCy9pPaB1vdxTl4heJ57KMGAEumr6pY2e1xScfKu4IvkskPCO1O3eZBbMU9_k9IC14lXB-GTXy6Egnrt6CKwgxq0GvK6utNkpfdDgRUPzmZREpWV9vWXPwIeiZIBm3XjJl0En6YGeQ-a3s1F3UIABSWHtTf1f3RpGoxf5bMsa0P9DcnJcP6VFh7KxTEAsk9tYFgGO5LUa9E7WShGTH8wWliZZXTp7hi0QQ3ezYsiRoqjeatVoTzX3W4YL5BOqLXZQmZcefy8I0uG3tPWQyty-pUcGjfMMH9fCDriGD-_Hjsj8jSgv2QAuqwzn-MP4cQl2iw0TV5SgNpVqfFH_YcEch18jvcyJSX9NfktO0gLVXTNaBpLw0xPZa-xApG6aSK1foOw1CvhCOZvqb9jXv9tWuG90TbYBDijiIVTd9D7avgxrBv4dl5jeoRsuyyDsSwqzFzbBdJ6WeCXOhxnSjmf66dkZ0ljVPDePG8Vz5d3StO-ocjzppSDbxUnPmcXkuGKYJC9IfYl0G5ReDq0Xs0BHHDTcIPGK2BIWn74LL_M3iUM87YOI8t_vZOuBvdNsKrmMTSsm80WIzgczrRlEX1tp6XW9PlnoEuvUYlPHuj-QJ-Fp93Rc4O6duFhLlqLxITuWQ5G6YtZFUpyFLww_SDaNOoRwXLES0pVRe9TvNaE7CGeJiMhX-K5Hs2k6HG4pHWE8Xfk6GcVCoYLH9w6eGOwd4WV3u1ZeDlh2TSSK0wHZHjKutuMp4M4JzJoccwzseO21qbRTn6GaZQuxlaTtNRgnQGRDXxpG4DcmB0NnjuFrglbq4hn0cG4yiWPUU0dY0Jtw3xfTl2vGYTAdGsGfg1aWhbf_wOxueAmcQEBnB9VrBsx_IAJ-18BLqHBzl0ey3CtcKtZRvWniI9wtQULBYkPjilQRNvxpSB7ukGfeKZR2RhsaXJr34bHhuWO3SnsdHqAed10CDAb6E4uZmOuqFrhuvYjzkAOqqNhrfO0vVp8TVQt4bcd0T7JFeOrNU3z32mTgUhYq3Ak4YYJkHCIs0sTtjOJwPPKlZ4I5V70HEz1gHaBSrcofY-bC5Cyg3SeU9J_M1ahP3Zflw1ObJufC15Yapt1MdH30kJ7VuZwG2hyQFWRI3d8lOViGtF5PPJozyju4YM9Y818&type=js&k=7a338f7205ad405ac4ae80e5a8a21c3556ce6abf&t=1745986622" ></script><script src="/ind-script/optimizer_user.php?filename=rZLLDQMxCETvca6pg1saSQW2F63ZALaMUZRUn82ng_UJkEZPMyOgVEHAHNywG0RzXVMcBZonphzKEAZbMCxotCrYnfQKHJ_VB6RolGEzkEh63uwCU2j2oIb9lFwXxrMcQX-81cUZofV95gEWGUPrlHGe4e8yD_e7D4XOVaQe6A1fQEpjRvH_dOI8yEptt0Ktka4T_4Vplwiq78w3&type=js&k=866a515f65c964dc0fd9f08eaeaf5c5a739c8187&t=1675094995&user=T" ></script>
<script type="text/javascript">
var sIsChannelUi = 'F';
var sChRef = '';
var sUseShoppingpayPg = 'F';
var sOwnMallLanding = 'F';
var sShoppingPayCookie = '';
var sYtshopping = 'F';
if (sIsChannelUi === 'T') {
sessionStorage.setItem('ch_ref', sChRef);
}
CAFE24.getChRefData = function() {
if (sIsChannelUi === 'T') {
return sessionStorage.getItem('ch_ref');
}
}
// 자사몰랜딩/유튜브랜딩 공용
CAFE24.checkChannelUI = function() {
if ((sIsChannelUi === 'T' && sessionStorage.getItem('ch_ref') || (sUseShoppingpayPg === 'T' && sOwnMallLanding === 'T')) || sYtshopping === 'T') {
return true;
} else {
return false;
}
}
// 자사몰랜딩 UI확인
CAFE24.isOwnMallLandingUI = function() {
return sUseShoppingpayPg === 'T' && sOwnMallLanding === 'T';
}
CAFE24.attachShoppingpayParam = function(sUrl) {
if (sUrl) {
var sChRef = CAFE24.getChRefData();
if (sChRef) {
var sSeparator = (sUrl.includes('?')) ? '&' : '?';
sUrl += sSeparator + 'ch_ref=' + sChRef;
} else if (sUseShoppingpayPg === 'T' && sOwnMallLanding === 'T') {
var sSeparator = (sUrl.includes('?')) ? '&' : '?';
sUrl += sSeparator + 'co_servicetype=shoppingpay';
}
}
return sUrl;
}
CAFE24.attachChRef = function(sUrl) {
if (sUrl) {
var sChRef = CAFE24.getChRefData();
if (sChRef) {
var sSeparator = (sUrl.includes('?')) ? '&' : '?';
sUrl += sSeparator + 'ch_ref=' + sChRef;
}
}
return sUrl;
}
var sIsCheckout = 'F';
var sCheckoutToken = '';
if (sIsCheckout === 'T') {
sessionStorage.setItem('checkoutToken', sCheckoutToken);
} else {
sessionStorage.removeItem('checkoutToken');
}
CAFE24.getCheckoutToken = function() {
if (sIsCheckout === 'T') {
return sessionStorage.getItem('checkoutToken');
}
}
CAFE24.attachCheckoutParam = function(sUrl) {
if (sUrl) {
var sCheckoutToken = CAFE24.getCheckoutToken();
if (sCheckoutToken) {
var sSeparator = (sUrl.includes('?')) ? '&' : '?';
sUrl += sSeparator + 'checkoutToken=' + sCheckoutToken;
}
}
return sUrl;
}
CAFE24.MOBILE_WEB = false; var mobileWeb = CAFE24.MOBILE_WEB;
try {
var isUseLoginKeepingSubmit = false;
// isSeqNoKeyExpiretime
function isSeqNoKeyExpiretime(iExpiretime)
{
var sDate = new Date();
var iNow = Math.floor(sDate.getTime() / 1000);
// 유효시간 확인
if (iExpiretime > iNow) {
return false;
}
return true;
}
function isUseLoginKeeping()
{
// 디바이스 확인
if (EC_MOBILE_DEVICE === false) {
return;
}
// 로그인 여부
var isLogin = document.cookie.match(/(?:^| |;)iscache=F/) ? true : false
if (isLogin) {
return;
}
var sLoginKeepingInfo = localStorage.getItem('use_login_keeping_info');
var iSeqnoExpiretime;
var iSeqNoKey;
if (sLoginKeepingInfo == null) {
iSeqnoExpiretime = localStorage.getItem('seq_no_key_expiretime');
iSeqNoKey = localStorage.getItem('seq_no_key');
// 유효시간, key 값 확인
if (iSeqnoExpiretime === null || iSeqNoKey === null) {
return;
}
} else {
var oLoginKeepingInfo = JSON.parse(sLoginKeepingInfo);
iSeqNoKey = oLoginKeepingInfo.seq_no_key;
iSeqnoExpiretime = oLoginKeepingInfo.seq_no_key_expiretime;
if (isNaN(iSeqNoKey) === true || isNaN(iSeqnoExpiretime) === true) {
return;
}
}
if (isSeqNoKeyExpiretime(iSeqnoExpiretime) === false) {
return;
}
useLoginKeepingSubmit();
}
function findGetParamValue(paramKey)
{
var result = null,
tmp = [];
location.search.substr(1).split('&').forEach(function (item) {
tmp = item.split('=');
if (tmp[0] === paramKey) result = decodeURIComponent(tmp[1]);
});
return result;
}
function useLoginKeepingSubmit()
{
var iSeqnoExpiretime;
var iSeqNoKey;
var sUseLoginKeepingIp;
var sLoginKeepingInfo = localStorage.getItem('use_login_keeping_info');
if (sLoginKeepingInfo == null) {
iSeqnoExpiretime = localStorage.getItem('seq_no_key_expiretime');
iSeqNoKey = localStorage.getItem('seq_no_key');
} else {
var oLoginKeepingInfo = JSON.parse(sLoginKeepingInfo);
iSeqNoKey = oLoginKeepingInfo.seq_no_key;
iSeqnoExpiretime = oLoginKeepingInfo.seq_no_key_expiretime;
sUseLoginKeepingIp = oLoginKeepingInfo.use_login_keeping_ip;
}
var oForm = document.createElement('form');
oForm.method = 'post';
oForm.action = '/exec/front/member/LoginKeeping';
document.body.appendChild(oForm);
var oSeqNoObj = document.createElement('input');
oSeqNoObj.name = 'seq_no_key';
oSeqNoObj.type = 'hidden';
oSeqNoObj.value = iSeqNoKey;
oForm.appendChild(oSeqNoObj);
oSeqNoObj = document.createElement('input');
oSeqNoObj.name = 'seq_no_key_expiretime';
oSeqNoObj.type = 'hidden';
oSeqNoObj.value = iSeqnoExpiretime;
oForm.appendChild(oSeqNoObj);
var returnUrl = findGetParamValue('returnUrl');
if (returnUrl == '' || returnUrl == null) {
returnUrl = location.pathname + location.search;
}
oSeqNoObj = document.createElement('input');
oSeqNoObj.name = 'returnUrl';
oSeqNoObj.type = 'hidden';
oSeqNoObj.value = returnUrl;
oForm.appendChild(oSeqNoObj);
if (sUseLoginKeepingIp != undefined) {
oSeqNoObj = document.createElement('input');
oSeqNoObj.name = 'use_login_keeping_ip';
oSeqNoObj.type = 'hidden';
oSeqNoObj.value = sUseLoginKeepingIp;
oForm.appendChild(oSeqNoObj);
}
oForm.submit();
isUseLoginKeepingSubmit = true;
}
isUseLoginKeeping();
} catch(e) {
}
CAFE24.KAKAO_PIXEL_BRIDGE.init("4198393955297479002");
var bUseElastic = false;
var sSearchBannerUseFlag = 'F';
CAFE24.SHOP_CURRENCY_INFO = {"1":{"aShopCurrencyInfo":{"currency_code":"KRW","currency_no":"410","currency_symbol":"\uffe6","currency_name":"South Korean won","currency_desc":"\uffe6 \uc6d0 (\ud55c\uad6d)","decimal_place":0,"round_method_type":"F"},"aShopSubCurrencyInfo":null,"aBaseCurrencyInfo":{"currency_code":"KRW","currency_no":"410","currency_symbol":"\uffe6","currency_name":"South Korean won","currency_desc":"\uffe6 \uc6d0 (\ud55c\uad6d)","decimal_place":0,"round_method_type":"F"},"fExchangeRate":1,"fExchangeSubRate":null,"aFrontCurrencyFormat":{"head":"","tail":"\uc6d0"},"aFrontSubCurrencyFormat":{"head":"","tail":""}}}; var SHOP_CURRENCY_INFO = CAFE24.SHOP_CURRENCY_INFO;
if (typeof CAFE24.SHOP_FRONT_NEW_OPTION_COMMON !== "undefined") {CAFE24.SHOP_FRONT_NEW_OPTION_COMMON.initObject();}
if (typeof CAFE24.SHOP_FRONT_NEW_OPTION_BIND !== "undefined") {CAFE24.SHOP_FRONT_NEW_OPTION_BIND.initChooseBox();}
if (typeof CAFE24.SHOP_FRONT_NEW_OPTION_DATA !== "undefined") {CAFE24.SHOP_FRONT_NEW_OPTION_DATA.initData();}
if (typeof CAFE24.SHOP_FRONT_NEW_LIKE_COMMON !== "undefined") {CAFE24.SHOP_FRONT_NEW_LIKE_COMMON.init({"bIsUseLikeProduct":true,"bIsUseLikeCategory":false});}
if (typeof CAFE24.SHOP_FRONT_REVIEW_TALK_REVIEW_COUNT !== "undefined") {CAFE24.SHOP_FRONT_REVIEW_TALK_REVIEW_COUNT.bIsReviewTalk = 'F';}
var basket_result = '/product/add_basket.html';
var basket_option = '/product/basket_option.html';
var aLogData = {"log_server1":"eclog2-259.cafe24.com","log_server2":"elg-db-svcm-201.cafe24.com","mid":"asungbath","stype":"e","domain":"","shop_no":1,"lang":"ko_KR","ver":2,"hash":"","ca":"cfa-js.cafe24.com\/cfa.js","etc":"","mobile_flag":"F"};
var sMileageName = '적립금';
var sMileageUnit = '[:PRICE:]원';
var sDepositName = '예치금';
var sDepositUnit = '원';
CAFE24.APPSCRIPT_ASSIGN_DATA = CAFE24.APPSCRIPT_ASSIGN_DATA || [{'src':'https://simpletalk-static.happytalkio.com/storage/NAS/cafe24_shop/as/asungbath/1/kakao_plus_friend.js?v=1684416925&vs=20230518223526.1&client_id=gdc7WwhtIx4htbBH2iGjuB', 'integrity': 'sha384-zbKsbKRN3SOdAcFkdMyZEz3FcWOx+bWKC7nVGynXXLerhNXZZRLHZ+yeMSWqsMzz'},{'src':'https://app4you.cafe24.com/SmartPopup/tunnel/scriptTags?vs=20230823212146.1&client_id=AyPifbe9TEq8i4fmvfUgaZ', 'integrity': 'sha384-j+WLOriOo0/sb+Ho5fn6lGPknv0cW+wMxOLlx8qpy01ShkkynynGNJQ53niqAdze'}];
CAFE24.APPSCRIPT_SDK_DATA = CAFE24.APPSCRIPT_SDK_DATA || ['application','store','supply','category','collection','order','product'];
var EC_APPSCRIPT_ASSIGN_DATA = CAFE24.getDeprecatedNamespace('EC_APPSCRIPT_ASSIGN_DATA');
var EC_APPSCRIPT_SDK_DATA = CAFE24.getDeprecatedNamespace('EC_APPSCRIPT_SDK_DATA');
</script></body></html>