CINXE.COM
GOALSTUDIO
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "//www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="//www.w3.org/1999/xhtml" xml:lang="en" lang="en"><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.eyJpc3MiOiJnb2Fsc3R1ZGlvLmNhZmUyNC5jb20iLCJhdWQiOiJqcy1lcnJvci10cmFjZXItYXBpLmNhZmUyNC5jb20iLCJtYWxsX2lkIjoiZ29hbHN0dWRpbyIsInNob3Bfbm8iOjIsInBhdGhfcm9sZSI6Ik1FTUJFUl9BR1JFRU1FTlQiLCJsYW5ndWFnZV9jb2RlIjoiZW5fVVMiLCJjb3VudHJ5X2NvZGUiOiJLUiIsImlzX3l0cyI6ZmFsc2UsImlzX2NvbnRhaW5lciI6ZmFsc2UsIndvcmtzcGFjZSI6InByb2R1Y3Rpb24ifQ.VxrFbwdLVApwV1YbncYMux1CSfHsWQCK2nyddIuEORQ', {"errors":{"path":"\/api\/v1\/store","collectWindowErrors":true,"preventDuplicateReports":true,"storageKeyPrefix":"EC_JET.MEMBER_AGREEMENT","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":"\/member\/agreement.html","result":"\/member\/agreement.html","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="MEMBER_AGREEMENT" /> <meta name="author" content="GOALSTUDIO" /> <meta name="description" content="GOALSTUDIO is a football-inspired lifestyle brand built on an in-depth understanding of football culture from the world’s largest digital football destination, Goal (goal.com), which is published in 18 languages across 38 editions. Our vision is to help create a healthier society by spreading a positive message within football through various forms of products. “Everything I know about morality and the obligations of men, I owe it to football” - Albert Camus" /> <meta name="keywords" content="GOALSTUDIO,GOAL,Football,soccer,fashion.streetfootball,menswear,sportswear" /><meta http-equiv="Content-Type" content="text/html; charset=utf-8"/><meta http-equiv="X-UA-Compatible" content="IE=edge"/><!-- Do not delete. Required code for payment. --><meta http-equiv="Cache-Control" content="no-cache"/><meta http-equiv="Expires" content="0"/><meta http-equiv="Pragma" content="no-cache"/><!-- // Do not delete. Required code for payment. --><!-- Google Tag Manager --><script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-W7SHVS6');</script><!-- End Google Tag Manager --><link rel="stylesheet" href="/web/upload/brushlab/new/css/bootstrap.css" type="text/css"/><link rel="stylesheet" href="/web/upload/brushlab/new/style_Barlow.css" type="text/css"/><link rel="stylesheet" href="/web/upload/brushlab/new/css/dark.css" type="text/css"/><link rel="stylesheet" href="/web/upload/brushlab/new/css/font-icons.css" type="text/css"/><link rel="stylesheet" href="/web/upload/brushlab/new/css/custom.css" type="text/css"/><link rel="stylesheet" href="https://maxcdn.icons8.com/fonts/line-awesome/1.1/css/line-awesome.min.css"/><link rel="stylesheet" href="/web/upload/brushlab/css/components/radio-checkbox.css" type="text/css"/><meta property="og:image" content="https://www.goalstudio.com/web/upload/goal/images/share/goalstudio_21ss.png"> <link rel="alternate" hreflang="ko" href="https://en.goalstudio.com" /> <link rel="canonical" href="https://en.goalstudio.com/member/agreement.html" /> <link rel="alternate" href="https://m.en.goalstudio.com/member/agreement.html" /> <meta property="og:url" content="https://en.goalstudio.com/member/agreement.html" /> <meta property="og:title" content="GOALSTUDIO" /> <meta property="og:description" content="I HAVE A DREAM. GOALSTUDIO 21 S/S COLLECTION" /> <meta property="og:site_name" content="GOALSTUDIO" /> <meta property="og:type" content="website" /> <link rel="shortcut icon" href="/web/upload/favicon_20190306023747.ico" /> <script type="text/javascript">var CAFE24API = { instance : [], MALL_ID : 'goalstudio', SHOP_NO : 2, 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://goalstudio.cafe24api.com' + url; }, getLoginProvider: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'customer')) { return; } callback({'login': CAPP_ASYNC_METHODS.AppCommon.getLoginProvider()}); }, getCustomerProvider: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'customer')) { return; } callback({'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 = '2411201348'; CAFE24.getDeprecatedNamespace = function(sDeprecatedNamespace, sSupersededNamespace) { var sNamespace = sSupersededNamespace ? sSupersededNamespace : sDeprecatedNamespace.replace(/^EC_/, ''); return CAFE24[sNamespace]; } CAFE24.FRONT_LANGUAGE_CODE = "en_US"; CAFE24.MOBILE = false; CAFE24.MOBILE_DEVICE = false; CAFE24.MOBILE_USE = true; var EC_MOBILE = CAFE24.MOBILE; var EC_MOBILE_DEVICE = CAFE24.MOBILE_DEVICE; var EC_MOBILE_USE = CAFE24.MOBILE_USE; CAFE24.SKIN_CODE = "skin56"; 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 = 2;CAFE24.SHOP = {getLanguage : function() { return "en_US"; },getCurrency : function() { return "USD"; },getFlagCode : function() { return "US"; },getTimezone: function() { return "Asia/Seoul" },getDateFormat: function() { return "Y-m-d" },isMultiShop : function() { return true; },isDefaultShop : function() { return false; },isDefaultLanguageShop : function(sLanguageCode) { return SHOP.isDefaultShop() && SHOP.isLanguageShop(sLanguageCode); },isKR : function() { return false; },isUS : function() { return true; },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 === "en_US"; },getDefaultShopNo : function() { return 1; },getProductVer : function() { return 2; },isSDE : function() { return true; },isMode : function() {return false; },getModeName : function() {return false; },isMobileAdmin : function() {return false; },isNewProMode : function() {return true; },isExperienceMall : function() { return false; },isDcollection : function() {return false; },isYoutubeShops : function() {return false; },getYtShopsShopNo : function() {return 0; },getAdminID : function() {return ''},getMallID : function() {return 'goalstudio'},getCurrencyFormat : function(sPriceTxt, bIsNumberFormat) { sPriceTxt = String(sPriceTxt); var aCurrencySymbol = ["$","",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 'SGD'},getCurrencyList : function(sCurrencyCode) { var aCurrencyList = {"KRW":{"currency_symbol":"\uffe6","decimal_place":0,"round_method_type":"F"},"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"},"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":"goalstudio.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: [], sOverrideTimezone: '', sMomentNamespace: 'EC_GLOBAL_MOMENT' }; CAFE24.FRONT_JS_CONFIG_MANAGE = {"sSmartBannerScriptUrl":"https:\/\/app4you.cafe24.com\/SmartBanner\/tunnel\/scriptTags?vs=1563164396689206","sMallId":"goalstudio","sDefaultAppDomain":"https:\/\/app4you.cafe24.com","sWebLogOffFlag":"F","cdnUrl":"https:\/\/cafe24img.poxo.com\/goalstudio"}; var EC_FRONT_JS_CONFIG_MANAGE = CAFE24.getDeprecatedNamespace('EC_FRONT_JS_CONFIG_MANAGE'); CAFE24.FRONT_JS_CONFIG_SHOP = {"search_period":[],"calendar_config":{"maxDate":"2026-11-24","locale":"en"}}; var EC_FRONT_JS_CONFIG_SHOP = CAFE24.getDeprecatedNamespace('EC_FRONT_JS_CONFIG_SHOP'); 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'); typeof window.CAFE24 === "undefined" && (window.CAFE24 = {}); CAFE24.FRONTEND = {"FW_MANIFEST_CACHE_REVISION":2411201348,"IS_WEB_VIEW":"F"}; CAFE24.ROUTE = {"is_mobile":false,"is_need_route":false,"language_code":"ZZ","path":{"origin":"\/member\/agreement.html","result":"\/member\/agreement.html","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="//img.echosting.cafe24.com/editors/froala/css/froala_style_ec.min.css?vs=2411201348" charset="utf-8"/> <link rel="stylesheet" type="text/css" href="/ind-script/optimizer.php?filename=nc1LCoAwDIThfXHrOYLeqC3xAU2mpCno7RW8gHQ7zMdPB4RpWY2qYbcoZNzQLTPl1mgzqFOGCHR6h5n-_DmHhtL9hIaEaxB299FoiTfbGPWYCg9S1FBO5ZCi6td_AA&type=css&k=37c9481ac0212340e132f81eba4d1049fee7f18e&t=1681776733" /><link rel="stylesheet" type="text/css" href="/ind-script/optimizer_user.php?filename=tdRLDgIhDAbgvePWc9QY9SKegIFmaCyUTCHq7WU0egCd7njlo_lDgSgJAf3QFGeFSRxrbYEEShuZ_BBrYtCAQ0ClKYNeKZ_O4FUhogs4b_twBz8y7B7SKoxOyb9MLylJXtd8L6xrot_0CW4a2bhVhCsVGzwiG8llltC8UdbFTZRdRaPE3WgDj63WtZ_015a7WRpsFHQ_5v-SF2zGjDfHw2F_ONqU2Tf-_NwWLfV-YPzcklpvao1SLpFKoTwt_hM&type=css&k=eb0a398bfd1d74979042910aa9b1158c55dc3931&t=1724043354&user=T" /> <title>GOALSTUDIO</title></head><body class="stretched no-transition"> <!-- Google Tag Manager (noscript) --> <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-W7SHVS6" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) --> <!-- Document Wrapper ============================================= --> <div id="wrapper" class="clearfix"> <!--img src="https://prf.hn/conversion/campaign:1100l5940/clickref:CLICKREF/conversionref:CONVERSIONREF/country:KR/currency:KRW/customertype:CUSTOMERTYPE/custref:CUSTREF/voucher:VOUCHER/[category:CATEGORY/sku:SKU/value:VALUE/quantity:QUANTITY]" width="1" height="2" /--> <!-- Header ============================================= --> <header id="header" class="full-header dark sticky-header"><div id="header-wrap"> <div class="container clearfix" style="height:80px;min-width:1280px"> <!-- Logo ============================================= --> <div id="logo"> <a href="/" class="standard-logo" data-dark-logo="/web/upload/brushlab/2024/symbol.svg"><img src="/web/upload/brushlab/2024/symbol.svg?240619" alt="Logo"/></a> <a href="/" class="retina-logo" data-dark-logo="/web/upload/brushlab/2024/symbol.svg"><img src="/web/upload/brushlab/2024/symbol.svg?240619" alt="Logo"/></a> </div><!-- #logo end --> <!-- Primary Navigation ============================================= --> <nav id="primary-menu" class="with-arrows on-click clearfix"><ul style="margin-left: 120px;"><li><a href="/category/all/148/"> <div>SHOP</div> </a> </li><li class="split">|</li> <!--li><a href="/lookbook/lookbook_index.html"> <div>LOOKBOOK</div> </a></li> <li>|</li--> <li><a href="/lookbook/editorial_index.html"> <div>LOOKBOOK</div> </a></li> <li class="split">|</li> <li><a href="/journal/journal-list-2.html?cate_no=43"> <div>STORY</div> </a></li> <!-- <li>|</li> <li><a href="/journal/journal-list-2.html?cate_no=208"> <div>NEWS</div> </a></li!--> <!-- <li class="split">|</li> <li><a href="https://goalstudio.com/Stores.html"> <div>STORES</div> </a></li> --> <!-- <li class="split">|</li> <li><a href="/goalclub/"> <div>GOAL CLUB</div> </a></li> --> <li class="split">|</li> <li><a href="/about.html" style="padding: 0 0px 0 15px;"> <div>ABOUT GOALSTUDIO</div> </a></li> </ul><!-- TOP LANGUAGE ============================================= --><div id="top-flag" class="flagMenu" style="padding: 0;width: 80px;margin-right: -22px;"> <ul><li><a href="" id="top-falg-trigger" class="" style="padding-left:11px">ENG<i class="la la-angle-down" style="padding: 4px 0 0px 7px;font-size: 12px;margin-right: 0;"></i></a> <ul id="flagList"><li><a class="dropdown-item" href="https://goalstudio.com">KOR</a></li> <li><a class="dropdown-item" href="https://www.goalstudio.jp">JPN</a></li> <li><a class="dropdown-item" href="https://cn.goalstudio.com">CHN</a></li> <!--li><a class="dropdown-item" href="https://es.goalstudio.com">ESP</a></li--> </ul></li> </ul></div> <div style="display: inline-block; float: right; height:80px; padding-right:20px;"> <!-- Top Search ============================================= --> <div id="top-search"> <a href="#" id="top-search-trigger"><img src="/web/upload/brushlab/2024/topSearch_g.png" class="topSearch" width="18"/><i class="icon-line-cross"></i></a> <form id="searchForm" name="" action="/product/search.html" method="get" target="_self" enctype="multipart/form-data" > <input id="view_type" name="view_type" value="" type="hidden" /> <input id="supplier_code" name="supplier_code" value="" type="hidden" /><span class="xans-element- xans-search xans-search-form "><span style="display:none">상품코드/상품명/제조사</span> <form id="searchBarForm" name="" action="/product/search.html" method="get" enctype="multipart/form-data"> <input id="keyword" name="keyword" fw-filter="" fw-label="검색어" fw-msg="" class="inputTypeText" placeholder="검색어를 입력하세요" onmousedown="SEARCH_BANNER.clickSearchForm(this)" value="" type="text"/> </form> </span> </form> </div><!-- #top-search end --> <!-- Top Cart ============================================= --> <!-- #top-cart end --> <div id="top-cart" class="xans-element- xans-layout xans-layout-statelogoff "><a href="/order/basket.html" style="width: 23px;height: 23px;"><img src="/web/upload/brushlab/2024/topCart_g.png" style="width: auto;height: 20px;"/><span class="count cartCount displaynone EC-Layout_Basket-count-display"><span class="EC-Layout-Basket-count"></span></span> </a> </div> <!-- #top-cart end --> <!-- Top Account # Login ============================================= --> <!-- .top-links end --> <!-- Top Account #Logoff ============================================= --> <div id="top-account" style="padding:0" class="xans-element- xans-layout xans-layout-statelogoff "><ul> <li> <a href="#" id="top-myaccount-trigger" style="margin-top:-3px"><img src="/web/upload/brushlab/2024/topUser_g.png" style="width:16px;"/></a> <ul id="myAccountList" class="myAccountList"> <li><a href="/member/login.html">로그인</a></li> <li><a href="/member/join.html">회원가입</a></li> <li><a href="/myshop/coupon/coupon.html" style="min-width:50px;">쿠폰</a></li> <li><a href="/myshop/order/list_order.html">주문조회</a></li> <li><a href="/myshop/order/list_return.html">반품 신청</a></li> <li><a href="/board/notice/notice.html">문의하기</a></li> </ul> </li> </ul> </div> <!-- Top Help ============================================= --> <div id="top-help"><a href="/board/notice/notice.html" style="width:20px; height:20px; cursor:pointer"><img src="/web/upload/brushlab/2024/topHelp_g.png" style="width: 20px;"/></a></div> </div> </nav><!-- #primary-menu end --></div> <!-- 롤링배너 ============================================= --> <!--div class="testimonial center" style="min-width:1280px;"> <div class="testi-content"> <p><span class="font-white" style="font-weight:bold; padding:15px;"></span>Originated from the #1 football digital media for worldwide fans to express their passion for football</p> </div> </div--> <div class="clearfix"></div> </div> </header><!-- #header end --><section id="content"><div class="content-wrap"> <div class="container clearfix"> <div class="path"> <span>Current Page</span> <ol><li><a href="/">Home</a></li> <li title="Current Page"><strong>Terms and Conditions</strong></li> </ol></div> <div class="titleArea"> <h2>Terms and Conditions</h2> </div> <div class="xans-element- xans-mall xans-mall-term ec-base-box typeThinBg "><div class="agree"> <div class="fr-view fr-view-mall-agreement"><p>Article 1 (Purpose) <br />The purpose of the following Terms and Conditions of Use(‘T&C’) is to establish guidelines on rights, duties and responsibilities of cybermall Users utilizing the internet-related services (hereinafter referred to as the ‘Services’) provided by the cybermall (hereinafter referred to as the ‘Mall’) operated by company (e-commerce company). <br />※ 『Unless transactions contradict its properties, the following terms apply to e-commerce transactions utilizing methods of PC communication, wireless and others』</p><p>Article 2 (Definition) <br />①‘Mall’ refers to a virtual business site established by company to trade goods or services (hereinafter referred to as ‘Goods and Services’) using computers and information communication facilities to provide Goods and Services to Users. The term can also be defined as a company operating a cybermall. <br />②‘User’ refers to a Member and Non-Member who has accessed the ‘Mall’ to use the services provided by the ‘Mall’ in accordance with this T&C. <br />③‘Member’ refers to a User who uses the services provided by the ‘Mall’ by subscribing for Membership. <br />④‘Non-Member’ refers to a User who uses the services provided by the ‘Mall’ without subscription. </p><p>Article 3 (Display, Explanation and Amendment of Terms and Conditions of Use)<br />① The ‘Mall’ shall, for easy recognition by Users, display the contents of this T&C, name of company and representative, business address(including an address handling customer complaints), phone number, fax number, email address, business license number, e-commerce permit number, and the name of personal information manager on the main page of the ‘Mall’. Only the content of this T&C can be displayed though a link page. <br />② Prior to User’s final agreement to this T&C, the ‘Mall’ shall provide a separate link or pop-up screen to obtain User’s verification on the terms of cancellation rights, delivery responsibilities, refund conditions and other important details. <br />③ The ‘Mall’ may make amendments within the permissible range without violating applicable laws such as the 「Act on Consumer Protection in Electronic Commerce」, 「Regulation of T&C」, 「Framework Act on Electronic Commerce and Electronic Document」, 「Electronic Financial Transaction Act」, 「Electronic Signature Act」, 「Act on Protection of Information and Promotion of Utilization of Information and Communications Network」, 「Door-To-Door Sales Act」, 「Framework Act on Consumers」 and other related Consumer Protection Laws.<br />④ The ‘Mall’ shall specify the effective date and the reasons for amendment of the terms and have post on the initial screen for 7 days prior to effective date until the day before the effective date.<br />If the amendment is modified to the User’s disadvantage, then the ‘Mall’ shall grant at least 30 days of grace period for notice. In this case, the ‘Mall’ shall clarify the ‘before and after’ changes in an ‘easy-to-understand’ manner. <br />⑤ When the ‘Mall’ makes an amendment to the T&C, the modified T&C shall be applied only to contracts concluded after the effective date, whereas all contracts concluded before the effective date will remain under the provisions of the old T&C. However, if the User who has already signed the contract wishes to have the amendments administered, then the User may send his/her intent to the ‘Mall’ and acquire consent from the ‘Mall’ within the notice period stated in Clause ③ and it shall be applied accordingly. <br />⑥ Any information not specified and interpreted in this T&C shall be in accordance with the e-commerce Transaction Guidelines and Related Consumer Protection Acts provided by the Fair Trade Commission and other applicable Consumer Protection Laws and Regulation of T&C Act. </p><p>Article 4 (Provision & Replacement of Service)<br />① The ‘Mall’ shall perform the following duties: <br />1. Provide information regarding Goods and Services and conclude purchasing contracts. <br />2. Deliver Goods and Services on purchase contract. <br />3. Other duties designated by the ‘Mall.’<br />② The ‘Mall’ may replace Goods and Services provided in future T&C in the event that Goods and Services are sold out or technical specifications are revised. In this case, the ‘Mall’ shall immediately announce the replacement of Goods and Services and the date of application on the page where present Goods and Services are displayed. <br />③ In the event that Goods and Services are replaced because of a change in technical specifications or when Goods and Services are sold out, the ‘Mall’ shall immediately notify the cause of replacement to the addresses of the Users.<br />④ Following the previous Clause, the ‘Mall’ shall compensate for all damages caused. However, this shall not apply if the ‘Mall’ proves that such event is not caused by its intention or negligence. </p><p>Article 5 (Suspension of Service)<br />① The ‘Mall’ may temporarily suspend its services as a result of the following reasons: maintenance of computers and telecommunications equipment, replacement or damage repairs, and interruption of communication. <br />② The ‘Mall’ shall compensate User or any Third Party Member of damages caused by the temporary suspension of services due to reason(s) detailed in Clause ①. However, this shall not apply if the ‘Mall’ proves that such event is not caused by its intention or negligence. <br />③ In the case of a conversion of business item, abandonment of business, merging between businesses and for other various reasons, the ‘Mall’ shall notify the consumer as specified in Article 8 and reward consumer in accordance with the conditions suggested by the original ‘Mall.’ However, if the ‘Mall’ does not advise such standard of compensation, the ‘Mall’ shall pay Users for their mileage or reserve in kind or cash of which value corresponds to the currency being used at the ‘Mall.’ </p><p>Article 6 (Membership)<br />① The User shall apply for Membership by expressing his/her intent to agree to this T&C after filling out the form designated by the ‘Mall’ with Member’s personal information. <br />② The ‘Mall’ shall register all Users who apply for Membership in the manner stipulated in Clause ① unless the User is not engaged in one of the following issues: <br />1. After the applicant has lost Membership for reasons indicated in Article 7 Clause ③, the applicant may acquire approval to re-subscribe for Membership three years after the loss of Membership. <br />2. Entry of false information or omission in the registration form. <br />3. If deemed that registering the User would present technical difficulties to the ‘Mall.’ <br />③ Establishment of Membership becomes effective at the time that the Member receives the ‘Mall’s approval of Membership.<br />④ In due course of time, the Member shall update the ‘Mall’ with any changes to his/her account information through the methods of editing personal information.</p><p>Article 7 (Withdrawal from Membership & Loss of Eligibility)<br />① Members of the ‘Mall’ may request, at any time, to withdraw from Membership and the ‘Mall’ shall immediately process the request. <br />② The ‘Mall’ may limit or suspend Membership for the following reasons:<br />1. Entry of false information or omission in the registration form.<br />2. If the purchase payment of goods and other ‘Mall’ usage related liabilities have not been paid for before the appointed date. <br />3. If Member interferes with others to use the ‘Mall’ or threatens the order of e-commerce (such as the illegal use of personal information). <br />4. If Member uses the ‘Mall’ to act against public order and morals prohibited by the law and this ‘T&C.’<br />③ The ‘Mall’ may forfeit Membership of the Member whose Membership was suspended or limited, if the same actions are repeated twice or more, or if the cause is not corrected within 30 days. <br />④ When the ‘Mall’ forfeits Membership, all information will be cancelled. Prior to cancellation, the ‘Mall’ shall notify the Member and give at least 30 days or more to grant an opportunity to explain the cause. </p><p>Article 8 (Notification to Members)<br />① Any notifications from the ‘Mall’ will be sent to the email address designated in advance by the Member during registration.<br />② In the event of sending notifications to unspecified Members, a display of notifications on the notice board on the website for 1 week or more may replace sending emails. However, the ‘Mall’ shall send individual notice to a Member in regards to matters which may have a significant influence in his/her transaction. </p><p>Article 9 (Application for Purchase)<br />① The User shall apply for purchase in the following or in a similar manner, and the ‘Mall’ shall provide the User with the following information in an ‘easy-to-understand’ manner to aid in his/her request for purchase.<br />1. Search and select Goods and Services<br />2. Enter name of recipient, address, phone number, email address (or mobile phone number)<br />3. Confirm matter(s) in respect to the contents of this T&C, limited cancellation policies, delivery fees, installation fees, and others<br />4. Express agreement to this T&C and confirm or refuse the above Item 3 (ex. mouse click)<br />5. Apply and confirm purchase of goods; Agree to allow confirmation of application from the ‘Mall’<br />6. Select payment method<br />② In case of an inevitable need (for the ‘Mall’) to disclose∙consign consumer’s personal information to a third party, the ‘Mall’ shall obtain consumer’s consent at the time of applying for purchase. This consent is not obtained in advance at the time of applying for Membership. At this time, the ‘Mall’ shall specify to the consumer the provisions of personal information that are being disclosed, information of the receiving party, purpose and intent of use and the duration of retention∙use. But, consignment of personal information according to Clause ① of Article 25 in the 「Act on Protection of Information and Promotion of Utilization of Information and Communications Network」 shall comply with relevant laws and legislations in regards to affairs not mentioned in the Act.</p><p>Article 10 (Conclusion of Contract)<br />① The ‘Mall’ may not accept request for purchase in Article 9 if it falls under one of the following items. In the event of concluding a contract with a minor, the ‘Mall’ shall notify that the failure to acquire agreement from a legal representative may cause cancellation of the contract by the minor him/herself or the legal representative. <br />1. Entry of false information or omission in the registration form<br />2. Purchase of cigarettes and liquor and other Goods and Services prohibited by the Youth Protection Law<br />3. If deemed that accepting application for purchase may cause technical problems to the ‘Mall’<br />② The contract is deemed to be concluded when the acceptance of the ‘Mall’ is delivered to the User in the form stipulated in Clause ① of Article 12.<br />③ The acceptance of the ‘Mall’ shall include confirmation on the User’s request for purchase, availability of sales, and correction or cancellation of the request for purchase. </p><p>Article 11 (Payment Method)<br />The method of payment for Goods and Services purchased through the ‘Mall’ may be selected from the following items. The ‘Mall’ may not collect any additional fees regarding payment for Goods and Services. <br />1. Account transfer through phone banking, internet banking, mail banking and others. <br />2. Card payment through prepaid card, debit card, credit card, and others.<br />3. Online bank transfer<br />4. Electronic money <br />5. Payment upon receipt<br />6. Mileage points or points offered by the ‘Mall’<br />7. Gift voucher contracted or approved by the ‘Mall’ <br />8. Other means of electronic payment</p><p>Article 12 (Notice of Receipt, Change and Cancellation of Application for Purchase)<br />① The ‘Mall’ shall send a notice of receipt to the User after receiving the User’s application for purchase. <br />② In the case of a discord between the User’s intent and the received notice, the User may change or cancel the application for purchase immediately after receipt. If the request for change or cancellation is made prior to delivery, the ‘Mall’ shall process the request accordingly without any delay. In the event that payment has already been made, User shall follow the guidelines detailed in Article 15 - Cancellation of Purchase. </p><p>Article 13 (Provision of Goods and Services)<br />① Unless otherwise specified, the ‘Mall’ shall take necessary measures such as customizing production and packaging and deliver Goods and Services within 7 days from the date of purchase. However, if the ‘Mall’ has already received payment in whole or in part, then delivery shall be processed within 3 business days from the date of receipt. In such instances, the ‘Mall’ shall take necessary measures to inform the User on procedures of provision and delivery status of Goods and Services. <br />② The ‘Mall’ shall specify delivery method, payer, and delivery time for each delivery method for the Goods and Services purchased by the User. In the event that the ‘Mall’ exceeds the designated period of delivery, it shall compensate the User for damages. However, this shall not apply if the ‘Mall’ proves that such event is not caused by its intention or negligence. </p><p>Article 14 (Refund)<br />In the event that the Goods and Services are sold-out or unavailable and cannot be provided or delivered to a User who applied for purchase, the ‘Mall’ shall notify the User without any delay, and if payment for Goods and Services has already been made in advance, the ‘Mall’ shall take necessary measures or refund payment within 3 business days from the date of receipt. </p><p>Article 15 (Cancellation of Purchase) <br />① The User who purchased Goods and Services by concluding the contract with the ‘Mall’ in accordance to Clause ② of Article 13 in the 「Acts on Consumer Protection in Electronic Commerce」 may cancel purchase within 7 days from the date on which the User received a written contract (if the written contract is received later than the supply of Goods and Services, then the receipt date is set on the date when User received the Goods and Services or when Goods and Services have been supplied). But, cancellation of purchase according to 「Acts on Consumer Protection in Electronic Commerce」 shall comply with relevant laws and legislations in regards to affairs not mentioned in the Acts. <br />② The User may not return or exchange Goods and Services in the event of one of the following reasons: <br />1. Delivered Goods lost or damaged at the fault of the User (however, cancellation of purchase may be acceptable if packaging was damaged in the process of checking content)<br />2. Significant decrease in value of Goods and Services due to partial use or consumption by the User<br />3. Not available for resale due to a significant decrease in value of Goods and Services from lapse of time<br />4. The Goods may be replaced by Goods showing the same performance, but packaging of the original is damaged<br />③ In the case of items 2 or 4 of Article 2 Clause ②, the cancellation of purchase by User will not be limited if the ‘Mall’ failed to clearly specify the fact that cancellation of purchase is limited or that it would take necessary measures to provide the Goods.<br />④ Despite Clause ① and ②, the User may cancel his/her purchase of goods within 3 months from the date of receipt of the goods or within 30 days from the date on which he/she recognized or could have recognized that Goods and Services differ from the advertisement or the provision of contract.</p><p>Article 16 (Effect of Cancellation of Purchase)<br />① In the event of a return of Goods from a User, the ‘Mall’ shall refund payment of Goods within 3 business days. In the event of a delay in refund, the ‘Mall’ shall pay User with the interest calculated by the number of days delayed with the overdue interest rate indicated on the 「Act on Consumer Protection in Electronic Commerce」 <br />② In regards to the above-mentioned case, if the User made payment of Goods with credit card or electronic money, the ‘Mall’ shall immediately request the business who provided such payment method to suspend or cancel payment. <br />③ In the event of any cancellation of purchase, the User shall bear the costs arising from returning the Goods. On the account of the User’s cancellation of purchase, the ‘Mall’ shall not claim charge for cancellation or compensation for damage. However, in the event of a cancellation of purchase caused by a discord in the contents of Goods and the advertisement or the provision of contract, the ‘Mall’ shall bear the costs of returning the Goods.<br />④ If the User bore the delivery fees when he/she received the Goods, the ‘Mall’ shall specify and make noticeable as to who would bear the delivery fees upon cancellation of purchase. </p><p>Article 17 (Protection of Personal Information)<br />① The ‘Mall’ collects a minimum amount of information necessary to provide the services. <br />② At the time of applying for Membership, the ‘Mall’ shall not collect information needed for the performance of purchase contract in advance. But, in the case where personal identification is required before the performance of a purchase contract, a minimum amount of specified personal information is collected for the fulfillment of obligation in regards to relevant laws and legislation. <br />③ The ‘Mall’ shall obtain consent from User to collect∙use personal information by notifying User with the aim/purpose of collection∙use. <br />④ The ‘Mall’ shall not use the personal information outside their intended purpose. In the event of an uprising of a new use or when disclosing to third parties, the ‘Mall’ shall notify the purpose of use and obtain consent from User during the stage of use disclosure. But, there are exceptions for cases regulated in the relevant laws and legislations. <br />⑤ In the event that the ‘Mall’ is required to acquire the approval of User by Clause ② and ③, the ‘Mall’ shall specify its personal information manager (affiliation, name, phone number, other contact information), purpose of collection and use of information, information about Third Party (recipient, purpose of provision and the information to be provided), and the provisions stipulated in Clause ② of Article 22 of the 「Act on Protection of Information and Promotion of Utilization of Information and Communications Network」. The User may at any time cancel his/her approval. <br />⑥ User may, at any time, request for confirmation and correction of error in their personal information possessed by the ‘Mall,’ and the ‘Mall’ shall be responsible for taking any necessary measures without any delay. In the event that a User requests for the correction of an error, the ‘Mall’ shall not use the applicable personal information until error is corrected. <br />⑦ For protection of personal information, the ‘Mall’ shall limit the number of persons handling personal information to a minimum, and shall be responsible for any damages caused by loss, theft, leakage, falsification, and disclosure of personal information including credit card and bank account information to third parties without consent of the User.<br />⑧ The ‘Mall’ or any Third Parties who received personal information from the ‘Mall,’ shall without any delay destroy all personal information once the purpose of collection has been achieved. <br />⑨ The ‘Mall’ shall not have the agreement form regarding the collection∙use∙disclosure of personal information set to be filled out in advance. The ‘Mall’ must specify services that will be restricted if User does not agree to the collection∙use∙disclosure of personal information, and the ‘Mall’ shall not limit services or refuse to accept Membership applications on the basis of User’s refusal to agree to collecting∙using∙disclosing of personal information that do not include the collection of compulsory information. </p><p>Article 18 (Obligations of the ‘Mall’)<br />① The ‘Mall’ shall not take any actions against public policy or actions restricted by the law and this T&C. The ‘Mall’ shall put its best efforts in providing Goods and Services on a stable basis in accordance with the provisions in this T&C.<br />② The ‘Mall’ shall be equipped with a security system to protect personal information of Users (including credit information) and provide a safe environment for Users to use the online services. <br />③ In accordance with Article 3 of the Law related to 『Fairness of Display and Advertisement』, the ‘Mall’ shall be responsible to compensate User(s) if damages were caused by displaying or adding unjust or unreasonable advertisement for certain Goods and Services <br />④ The ‘Mall’ shall not send any profit-making emails which are not wanted by Users.</p><p>Article 19 (Obligations for ID & Password of Member)<br />① Member shall be responsible for the management of his/her ID and password, except for the case in Article 17. <br />② Member shall not allow any Third Party to use his/her ID and password.<br />③ When a Member recognizes that his/her ID and/or password is stolen or is being used by a Third Party, the Member shall immediately notify the ‘Mall’, and follow the instructions of the ‘Mall.’</p><p>Article 20 (Obligations of User)<br />Users shall avoid the following actions: <br />1. Register false information at the time application or revision of information<br />2. Use others’ personal information <br />3. Change information displayed on the ‘Mall’<br />4. Remit or display information (computer program and others) other than the information put on by the ‘Mall’<br />5. Infringe copyright or intellectual property rights of the ‘Mall’ or the Third Party<br />6. Take any action that harms the reputation and interrupts the operation of the ‘Mall’ or a Third Party <br />7. Disclose or display any information containing indecent or violent message, video, voice, and other information going against good public order and morals. </p><p>Article 21 (Relationship between Linking Mall & Linked Mall)<br />① In the event that the main mall and the sub-mall are linked with a hyperlink (ex. the subject of hyperlink includes text, image and video), the former is called as the Linking Mall (Website) and the latter is called as the Linked Mall (Website).<br />② If the Linking Mall specifies and notifies the fact that it is not responsible for any transaction with the User for any Goods and Services independently provided by the Linked Mall on the initial page of the website of the Linking Mall or a pop-up window, then the Linking Mall is not responsible for such transaction. </p><p>Article 22 (Copyright & Limitation of Use)<br />① The copyright and other intellectual property rights for the works produced by the ‘Mall’ shall belong to the ‘Mall.’<br />② The User may not use or cause any Third Party to use information with intellectual property rights belonging to the ‘Mall’ for reproduction, transmission, publishing, distribution, broadcasting or other profit-making use without prior consent of the ‘Mall.’<br />③ The ‘Mall’ shall notify the User when using the copyright belonging to the applicable User in accordance with mutual T&C.</p><p>Article 23 (Resolution of Dispute)<br />① The ‘Mall’ shall apply and reflect the opinion or complaint made by User(s), and install and operate a process for compensation of consumers’ damages. <br />② The ‘Mall’ shall give priority to any opinion or complaint made by User(s). However, in the event that it may not be able to promptly deal with the matter, the ‘Mall’ shall notify the User with the cause and the final settlement schedule. <br />③ When a User files for Remedy of Damage regarding a dispute between the ‘Mall’ and the User, the matter may be commissioned for arbitration by the Fair Trade Commission or a Dispute Conciliation Services Organization selected by the City Mayor. </p><p>Article 24 (Jurisdiction & Governing Law)<br />① All e-commerce related lawsuits between the ‘Mall’ and a User shall be in accordance with the address of the User at the time of indictment. If an address is nonexistent, then the lawsuit shall fall under exclusive jurisdiction of the district court in the vicinity of User’s place of residence. In the event that the address or residence of the User is not clear at the time of indictment or if User is a foreign resident, the lawsuit shall be filed to the competent court on the Civil Procedures Code. <br />② Any and all e-commerce-related lawsuits between the ‘Mall’ and a User shall be governed by the law of the Republic of Korea.</p> </div> </div> </div> </div> </div> </section><!-- Footer ============================================= --><footer id="footer"><div class="container-fluid clearfix"> <div class="row justify-content-between col-padding nobottompadding"> <div><img src="/web/upload/brushlab/2024/logotype.svg" style="height: 32px;"/></div> <div class="line topmargin-sm bottommargin-sm"></div> <!-- <div class="col-6 nopadding"> <h2 class="font-white">STAY IN TOUCH FOR NEW RELEASES<br/> AND PROMOTION UPDATES</h2> </div> --> <div class="col-4 nopadding"> <!--<iframe src="http://brushlab.net/wagti/email.html" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" width="100%" height="120px" hspace="0" vspace="0" style="vertical-align: top;"></iframe>--> </div> <!-- <div class="line bottommargin-sm" style="margin-top:16px;"></div> --> </div> </div> <!-- Copyrights ============================================= --> <div id="copyrights"> <div class="container-fluid nopadding clearfix"> <div class="col_half col-padding notoppadding" style="color: #7e7e7e; font-size:12px; text-align: left;"> Company:(주)왁티 | Owner: Junghoon Kang | 7, Apgujeong-ro 10-gil, Gangnam-gu, Seoul, Korea, 06028<br/> Company Registration No.: 240-88-00299 | Telecommunication services registration No.: 2016-서울강남-03076<br/> Email: assist@goalstudio.com | Tel: 1660-1215<br/><br/><a href="https://www.ftc.go.kr/bizCommPop.do?wrkr_no=2408800299" target="_blank" style="color: #ffffff; font-size:12px;">Business License(사업자 정보 확인) </a> <!--div class="" style="color: #ffffff; font-size:12px;">The GOAL, GOAL POSTS and related trade marks are used under licence from Perform Media Sales Ltd</div--> <div class="clear"></div> <div class="pt-30 clearfix" style="margin-left:-15px;"> <a href="https://www.facebook.com/goalstudio.official" class="social-icon"> <i class="icon-facebook"></i> <i class="icon-facebook"></i> </a> <a href="https://www.instagram.com/goalstudio_official/" class="social-icon"> <i class="icon-instagram"></i> <i class="icon-instagram"></i> </a> <a href="https://www.youtube.com/channel/UCe5m37HU4UdYIUU7T7nZzDw?view_as=subscriber" class="social-icon"> <i class="icon-youtube"></i> <i class="icon-youtube"></i> </a> </div> </div> <div class="col_half col_last tright col-padding notoppadding"> <div class="copyright-links"><a href="/member/agreement.html">Terms and Policy</a> <a href="/member/privacy.html">Privacy Policy</a> <!--a href="#">Returns Privacy</a> </div--> <div class="clear"></div> </div> </div> </div><!-- #copyrights end --> <!-- #footer end --> <!-- Go To Top&Bottom ============================================= --> <div id="gotoTop" class="icon-angle-up"></div> <!-- Enliple Common Tracker v3.6 [공용] start --> <!-- <script type="text/javascript"> function mobRf() { var rf = new EN(); rf.setData("userid", "goalstore"); rf.setSSL(true); rf.sendRf(); } </script> --> <div class="criteo-onetag" data-version="1.3"> <script type="text/javascript" src="//static.criteo.net/js/ld/ld.js" async="true"></script> <script type="text/javascript"> var enableNpayTag = true; var partnerId = 63120; var listingModuleClass = "xans-product-listnormal"; var detailModuleClass = "xans-product-detail"; var basketModuleClass = "xans-order-basketpackage"; var salesModuleClass = "xans-order-result"; var pageType = getPageType(); if (pageType === "listing") { criteoEvent({ event: "viewList", item: getTop3ProductIds() }); } else if (pageType === "detail") { callProductEvents(); } else if (pageType === "basket") { callBasketEvents(); } else if (pageType === "sales") { callSalesEvents(); } else { criteoEvent({ event: "viewHome" }); } function callProductEvents() { if (typeof iProductNo !== "undefined") { criteoEvent({ event: "viewItem", item: iProductNo }); if (enableNpayTag) { criteoNpayEvent(pageType, iProductNo); } } else { setTimeout(callProductEvents, 100); } } function callSalesEvents() { if (typeof EC_FRONT_EXTERNAL_SCRIPT_VARIABLE_DATA !== "undefined") { var transactionId = EC_FRONT_EXTERNAL_SCRIPT_VARIABLE_DATA.order_id; var criteoProductData = []; EC_FRONT_EXTERNAL_SCRIPT_VARIABLE_DATA.order_product.forEach(function (productData) { criteoProductData.push({ id: productData.product_no, price: productData.product_price, quantity: productData.quantity }); }); criteoEvent({ event: "trackTransaction", id: transactionId, item: criteoProductData }); } else { setTimeout(callSalesEvents, 100); } } function callBasketEvents() { if (typeof aBasketProductData !== "undefined") { var criteoProductData = []; aBasketProductData.forEach(function (productData) { criteoProductData.push({ id: productData.product_no, price: productData.product_sum_price, quantity: productData.quantity }); }); criteoEvent({ event: "viewBasket", item: criteoProductData }); if (enableNpayTag) { criteoNpayEvent(pageType, criteoProductData); } } else { setTimeout(callBasketEvents, 100); } } function getProductId() { if (typeof iProductNo !== "undefined") { return iProductNo; } else { setTimeout(getProductId, 100); } } function getTop3ProductIds() { var productIds = []; var elements = document.querySelectorAll("." + listingModuleClass + " ul.prdList > li"); if (elements.length === 0) { elements = document.querySelectorAll("." + listingModuleClass + " div.prd-list a[name*='anchorBoxName']:first-child"); } elements.forEach(function (element) { var elementId = element.name; if (elementId !== "") { var productId = elementId.split("_")[1]; productIds.push(productId); } }); return productIds.slice(0, 3); } function getPageType() { var elements = document.getElementsByClassName(listingModuleClass); if (elements.length > 0) return "listing"; elements = document.getElementsByClassName(detailModuleClass); if (elements.length > 0) return "detail"; elements = document.getElementsByClassName(basketModuleClass); if (elements.length > 0) return "basket"; elements = document.getElementsByClassName(salesModuleClass); if (elements.length > 0) return "sales"; return "homepage"; } function addEvent(className, evType, fn) { document.addEventListener(evType, function (e) { if (e.target && e.target.classList.contains(className)) { fn(); } }); } function arraysMatch(arr1, arr2) { if (arr1.length !== arr2.length) return false; for (var i = 0; i < arr1.length; i++) { if (arr1[i] !== arr2[i]) return false; } return true; }; function criteoNpayEvent(pageType, obj) { window.criteo_q = window.criteo_q || []; window.criteo_q.push({ requiresDOM: "non-blocking", cb: function () { addEvent("npay_btn_pay", "click", function () { if (typeof (Storage) !== "undefined") { var lastNpayTransaction = localStorage.lastNpayTransaction; var itemIdArray = []; if (pageType === "detail") { itemIdArray.push(obj); } else if (pageType === "basket") { for (item in obj) itemIdArray.push(obj[item].id); itemIdArray.sort(); } if (lastNpayTransaction !== undefined) { var lastNpayTimestamp = lastNpayTransaction.split("||")[0]; var lastNpayProductsArray = lastNpayTransaction.split("||")[1].split(",").sort(); if ((Date.now() - lastNpayTimestamp) / 1000 / 60 < 10 && arraysMatch(itemIdArray, lastNpayProductsArray)) return; } var deviceType = /iPad/.test(navigator.userAgent) ? "t" : /Mobile|iP(hone|od)|Android|BlackBerry|IEMobile|Silk/.test(navigator.userAgent) ? "m" : "d"; if (pageType === "detail") { criteo_q.push( { event: "setAccount", account: partnerId }, { event: "setEmail", email: "" }, { event: "setSiteType", type: deviceType }, { event: "trackTransaction", id: "npay" + Math.floor(Math.random() * 99999999999), item: [{ id: obj, price: iOptionPrice, quantity: checkQuantity() }] }, { event: "setResponseType", type: "gif" } ); } else if (pageType === "basket") { criteo_q.push( { event: "setAccount", account: partnerId }, { event: "setEmail", email: "" }, { event: "setSiteType", type: deviceType }, { event: "trackTransaction", id: "npay" + Math.floor(Math.random() * 99999999999), item: obj }, { event: "setResponseType", type: "gif" } ); } localStorage.lastNpayTransaction = Date.now() + "||" + itemIdArray.join(); } }); } }); } function criteoEvent(eventObj) { window.criteo_q = window.criteo_q || []; var deviceType = /iPad/.test(navigator.userAgent) ? "t" : /Mobile|iP(hone|od)|Android|BlackBerry|IEMobile|Silk/.test(navigator.userAgent) ? "m" : "d"; window.criteo_q.push( { event: "setAccount", account: partnerId }, { event: "setEmail", email: "" }, { event: "setSiteType", type: deviceType }, eventObj); } </script> </div> </div> <!-- Do not delete. Required code for payment. --> <div id="progressPaybar" style="display:none;"> <div id="progressPaybarBackground" class="layerProgress"></div> <div id="progressPaybarView"> <div class="box"> <p class="graph"> <span><img src="//img.echosting.cafe24.com/skin/base_en_US/layout/txt_progress.gif" alt="Payment is being processed."/></span> <span><img src="//img.echosting.cafe24.com/skin/base/layout/img_loading.gif" alt=""/></span> </p> <p class="txt"> This window will automatically close when payment is processed.<br/> Do not close this window until processing completes. </p> </div> </div> </div> <!-- // Do not delete. Required code for payment. --> <div class="xans-element- xans-layout xans-layout-multishopshipping "><div class="dimmed"></div> <div class="worldshipLayer ec-base-layer"> <div class="header"> <h3>WORLD SHIPPING</h3> </div> <div class="content"> <p class="desc">PLEASE SELECT THE DESTINATION COUNTRY AND LANGUAGE :</p> <div class="select"> <select class="xans-element- xans-layout xans-layout-multishopshippingcountrylist"><option value="GH" class="xans-record-">SHIPPING TO : GHANA</option> <option value="GA" class="xans-record-">SHIPPING TO : GABON</option> <option value="GY" class="xans-record-">SHIPPING TO : GUYANA</option> <option value="GM" class="xans-record-">SHIPPING TO : GAMBIA</option> <option value="GT" class="xans-record-">SHIPPING TO : GUATEMALA</option> <option value="GD" class="xans-record-">SHIPPING TO : GRENADA</option> <option value="GE" class="xans-record-">SHIPPING TO : GEORGIA</option> <option value="GR" class="xans-record-">SHIPPING TO : GREECE</option> <option value="GN" class="xans-record-">SHIPPING TO : GUINEA</option> <option value="GW" class="xans-record-">SHIPPING TO : GUINEA-BISSAU</option> <option value="NA" class="xans-record-">SHIPPING TO : NAMIBIA</option> <option value="NG" class="xans-record-">SHIPPING TO : NIGERIA</option> <option value="ZA" class="xans-record-">SHIPPING TO : SOUTH AFRICA</option> <option value="AN" class="xans-record-">SHIPPING TO : NETHERLANDS(ANTILLES)</option> <option value="NL" class="xans-record-">SHIPPING TO : NETHERLANDS</option> <option value="AW" class="xans-record-">SHIPPING TO : ARUBA</option> <option value="NP" class="xans-record-">SHIPPING TO : NEPAL</option> <option value="NO" class="xans-record-">SHIPPING TO : NORWAY</option> <option value="NZ" class="xans-record-">SHIPPING TO : NEW ZEALAND</option> <option value="NE" class="xans-record-">SHIPPING TO : NIGER</option> <option value="NI" class="xans-record-">SHIPPING TO : NICARAGUA</option> <option value="KR" class="xans-record-">SHIPPING TO : KOREA (REP OF,)</option> <option value="DK" class="xans-record-">SHIPPING TO : DENMARK</option> <option value="GL" class="xans-record-">SHIPPING TO : GREENLAND</option> <option value="FO" class="xans-record-">SHIPPING TO : FAROE ISLANDS</option> <option value="DO" class="xans-record-">SHIPPING TO : DOMINICAN REPUBLIC</option> <option value="DM" class="xans-record-">SHIPPING TO : DOMINICA</option> <option value="DE" class="xans-record-">SHIPPING TO : GERMANY</option> <option value="TL" class="xans-record-">SHIPPING TO : TIMOR-LESTE</option> <option value="LR" class="xans-record-">SHIPPING TO : LIBERIA</option> <option value="LV" class="xans-record-">SHIPPING TO : LATVIA</option> <option value="LB" class="xans-record-">SHIPPING TO : LEBANON</option> <option value="LS" class="xans-record-">SHIPPING TO : LESOTHO</option> <option value="LU" class="xans-record-">SHIPPING TO : LUXEMBOURG</option> <option value="MY" class="xans-record-">SHIPPING TO : MALAYSIA</option> <option value="MX" class="xans-record-">SHIPPING TO : MEXICO</option> <option value="MC" class="xans-record-">SHIPPING TO : MONACO</option> <option value="MU" class="xans-record-">SHIPPING TO : MAURITIUS</option> <option value="MR" class="xans-record-">SHIPPING TO : MAURITANIA</option> <option value="MZ" class="xans-record-">SHIPPING TO : MOZAMBIQUE</option> <option value="ME" class="xans-record-">SHIPPING TO : MONTENEGRO</option> <option value="MD" class="xans-record-">SHIPPING TO : MOLDOVA, REPUBLIC OF</option> <option value="MV" class="xans-record-">SHIPPING TO : MALDIVES</option> <option value="MT" class="xans-record-">SHIPPING TO : MALTA</option> <option value="US" class="xans-record-">SHIPPING TO : U.S.A</option> <option value="GU" class="xans-record-">SHIPPING TO : GUAM</option> <option value="MH" class="xans-record-">SHIPPING TO : MARSHALL ISLANDS</option> <option value="VI" class="xans-record-">SHIPPING TO : VIRGIN ISLANDS U.S.</option> <option value="WS" class="xans-record-">SHIPPING TO : SAMOA</option> <option value="AS" class="xans-record-">SHIPPING TO : AMERICAN SAMOA</option> <option value="MP" class="xans-record-">SHIPPING TO : NORTHERN MARIANA ISLANDS</option> <option value="MM" class="xans-record-">SHIPPING TO : MYANMAR</option> <option value="FM" class="xans-record-">SHIPPING TO : MICRONESIA</option> <option value="VU" class="xans-record-">SHIPPING TO : VANUATU</option> <option value="BH" class="xans-record-">SHIPPING TO : BAHRAIN</option> <option value="BS" class="xans-record-">SHIPPING TO : BAHAMAS</option> <option value="BD" class="xans-record-">SHIPPING TO : BANGLADESH</option> <option value="VE" class="xans-record-">SHIPPING TO : VENEZUELA</option> <option value="VN" class="xans-record-">SHIPPING TO : VIET NAM</option> <option value="BE" class="xans-record-">SHIPPING TO : BELGIUM</option> <option value="BY" class="xans-record-">SHIPPING TO : BELARUS</option> <option value="BZ" class="xans-record-">SHIPPING TO : BELIZE</option> <option value="BA" class="xans-record-">SHIPPING TO : Bosnia and Herzegovina</option> <option value="BO" class="xans-record-">SHIPPING TO : BOLIVIA</option> <option value="BF" class="xans-record-">SHIPPING TO : BURKINA FASO</option> <option value="BT" class="xans-record-">SHIPPING TO : BHUTAN</option> <option value="BG" class="xans-record-">SHIPPING TO : BULGARIA(REP)</option> <option value="BR" class="xans-record-">SHIPPING TO : BRAZIL</option> <option value="BN" class="xans-record-">SHIPPING TO : BRUNEI DARUSSALAM</option> <option value="BI" class="xans-record-">SHIPPING TO : BURUNDI</option> <option value="CY" class="xans-record-">SHIPPING TO : CYPRUS</option> <option value="SM" class="xans-record-">SHIPPING TO : SAN MARINO</option> <option value="SN" class="xans-record-">SHIPPING TO : SENEGAL</option> <option value="RS" class="xans-record-">SHIPPING TO : SERBIA/KOSOVO</option> <option value="SC" class="xans-record-">SHIPPING TO : SEYCHELLES</option> <option value="LC" class="xans-record-">SHIPPING TO : SAINT LUCIA</option> <option value="KN" class="xans-record-">SHIPPING TO : SAINT KITTS AND NEVIS</option> <option value="SB" class="xans-record-">SHIPPING TO : SOLOMON ISLANDS</option> <option value="SR" class="xans-record-">SHIPPING TO : SURINAME</option> <option value="LK" class="xans-record-">SHIPPING TO : SRI LANKA</option> <option value="SZ" class="xans-record-">SHIPPING TO : SWAZILAND</option> <option value="SE" class="xans-record-">SHIPPING TO : SWEDEN</option> <option value="CH" class="xans-record-">SHIPPING TO : SWITZERLAND</option> <option value="ES" class="xans-record-">SHIPPING TO : SPAIN</option> <option value="SK" class="xans-record-">SHIPPING TO : SLOVAKIA</option> <option value="SI" class="xans-record-">SHIPPING TO : SLOVENIA</option> <option value="SL" class="xans-record-">SHIPPING TO : SIERRA LEONE</option> <option value="SG" selected="selected" class="xans-record-">SHIPPING TO : SINGAPORE</option> <option value="AE" class="xans-record-">SHIPPING TO : UNITED ARAB EMIRATES</option> <option value="AM" class="xans-record-">SHIPPING TO : ARMENIA</option> <option value="AR" class="xans-record-">SHIPPING TO : ARGENTINA</option> <option value="IS" class="xans-record-">SHIPPING TO : ICELAND</option> <option value="HT" class="xans-record-">SHIPPING TO : HAITI</option> <option value="IE" class="xans-record-">SHIPPING TO : IRELAND</option> <option value="AZ" class="xans-record-">SHIPPING TO : AZERBAIJAN</option> <option value="AL" class="xans-record-">SHIPPING TO : ALBANIA</option> <option value="DZ" class="xans-record-">SHIPPING TO : ALGERIA</option> <option value="ER" class="xans-record-">SHIPPING TO : ERITREA</option> <option value="EE" class="xans-record-">SHIPPING TO : ESTONIA</option> <option value="SV" class="xans-record-">SHIPPING TO : EL SALVADOR</option> <option value="GB" class="xans-record-">SHIPPING TO : UNITED KINGDOM</option> <option value="MS" class="xans-record-">SHIPPING TO : MONTSERRAT</option> <option value="BM" class="xans-record-">SHIPPING TO : BERMUDA</option> <option value="VG" class="xans-record-">SHIPPING TO : VIRGIN ISLANDS BRITISH</option> <option value="AI" class="xans-record-">SHIPPING TO : ANGUILLA</option> <option value="GI" class="xans-record-">SHIPPING TO : GIBRALTAR</option> <option value="KY" class="xans-record-">SHIPPING TO : CAYMAN ISLANDS</option> <option value="TC" class="xans-record-">SHIPPING TO : TURKS AND CAICOS ISLANDS</option> <option value="YE" class="xans-record-">SHIPPING TO : YEMEN</option> <option value="OM" class="xans-record-">SHIPPING TO : OMAN</option> <option value="NF" class="xans-record-">SHIPPING TO : NORFOLK ISLAND</option> <option value="AU" class="xans-record-">SHIPPING TO : AUSTRALIA</option> <option value="AT" class="xans-record-">SHIPPING TO : AUSTRIA</option> <option value="HN" class="xans-record-">SHIPPING TO : HONDURAS</option> <option value="JO" class="xans-record-">SHIPPING TO : JORDAN</option> <option value="UZ" class="xans-record-">SHIPPING TO : UZBEKISTAN</option> <option value="UA" class="xans-record-">SHIPPING TO : UKRAINE</option> <option value="ET" class="xans-record-">SHIPPING TO : ETHIOPIA</option> <option value="IL" class="xans-record-">SHIPPING TO : ISRAEL</option> <option value="EG" class="xans-record-">SHIPPING TO : EGYPT</option> <option value="IT" class="xans-record-">SHIPPING TO : ITALY</option> <option value="IN" class="xans-record-">SHIPPING TO : INDIA</option> <option value="ID" class="xans-record-">SHIPPING TO : INDONESIA</option> <option value="JP" class="xans-record-">SHIPPING TO : JAPAN</option> <option value="JM" class="xans-record-">SHIPPING TO : JAMAICA</option> <option value="ZM" class="xans-record-">SHIPPING TO : ZAMBIA</option> <option value="CF" class="xans-record-">SHIPPING TO : CENTRAL AFRICAN REPUBLIC</option> <option value="MO" class="xans-record-">SHIPPING TO : MACAU</option> <option value="DJ" class="xans-record-">SHIPPING TO : DJIBOUTI</option> <option value="ZW" class="xans-record-">SHIPPING TO : ZIMBABWE</option> <option value="CZ" class="xans-record-">SHIPPING TO : CZECH REP</option> <option value="CL" class="xans-record-">SHIPPING TO : CHILE</option> <option value="CM" class="xans-record-">SHIPPING TO : CAMEROON</option> <option value="CV" class="xans-record-">SHIPPING TO : CAPE VERDE</option> <option value="KZ" class="xans-record-">SHIPPING TO : KAZAKHSTAN</option> <option value="QA" class="xans-record-">SHIPPING TO : QATAR</option> <option value="KH" class="xans-record-">SHIPPING TO : CAMBODIA</option> <option value="CA" class="xans-record-">SHIPPING TO : CANADA</option> <option value="KE" class="xans-record-">SHIPPING TO : KENYA</option> <option value="CR" class="xans-record-">SHIPPING TO : COSTA RICA</option> <option value="CI" class="xans-record-">SHIPPING TO : COTE D IVOIRE</option> <option value="CO" class="xans-record-">SHIPPING TO : COLOMBIA</option> <option value="CG" class="xans-record-">SHIPPING TO : CONGO</option> <option value="CU" class="xans-record-">SHIPPING TO : CUBA</option> <option value="KW" class="xans-record-">SHIPPING TO : KUWAIT</option> <option value="HR" class="xans-record-">SHIPPING TO : CROATIA</option> <option value="KG" class="xans-record-">SHIPPING TO : KYRGYZSTAN</option> <option value="KI" class="xans-record-">SHIPPING TO : KIRIBATI</option> <option value="TH" class="xans-record-">SHIPPING TO : THAILAND</option> <option value="TW" class="xans-record-">SHIPPING TO : TAIWAN</option> <option value="TJ" class="xans-record-">SHIPPING TO : TAJIKISTAN</option> <option value="TZ" class="xans-record-">SHIPPING TO : TANZANIA(UNITED REP)</option> <option value="TG" class="xans-record-">SHIPPING TO : TOGO</option> <option value="TO" class="xans-record-">SHIPPING TO : TONGA</option> <option value="TV" class="xans-record-">SHIPPING TO : TUVALU</option> <option value="TN" class="xans-record-">SHIPPING TO : TUNISIA</option> <option value="TT" class="xans-record-">SHIPPING TO : TRINIDAD AND TOBAGO</option> <option value="PA" class="xans-record-">SHIPPING TO : PANAMA(REP)</option> <option value="PY" class="xans-record-">SHIPPING TO : PARAGUAY</option> <option value="PK" class="xans-record-">SHIPPING TO : PAKISTAN</option> <option value="PG" class="xans-record-">SHIPPING TO : PAPUA NEW GUINEA</option> <option value="PE" class="xans-record-">SHIPPING TO : PERU</option> <option value="HU" class="xans-record-">SHIPPING TO : HUNGARY(REP)</option> <option value="PH" class="xans-record-">SHIPPING TO : PHILIPPINES</option> <option value="FI" class="xans-record-">SHIPPING TO : FINLAND</option> <option value="FJ" class="xans-record-">SHIPPING TO : FIJI</option> <option value="PF" class="xans-record-">SHIPPING TO : FRENCH POLYNESIA</option> <option value="RE" class="xans-record-">SHIPPING TO : REUNION</option> <option value="NC" class="xans-record-">SHIPPING TO : NEW CALEDONIA</option> <option value="GF" class="xans-record-">SHIPPING TO : FRENCH GUIANA</option> <option value="GP" class="xans-record-">SHIPPING TO : GUADELOUPE</option> <option value="FR" class="xans-record-">SHIPPING TO : FRANCE</option> <option value="PL" class="xans-record-">SHIPPING TO : POLAND(REP)</option> <option value="PT" class="xans-record-">SHIPPING TO : PORTUGAL</option> <option value="CN" class="xans-record-">SHIPPING TO : CHINA(PEOPLE'S REP)</option> <option value="HK" class="xans-record-">SHIPPING TO : HONG KONG</option> </select> </div> <div class="select"> <select class="xans-element- xans-layout xans-layout-multishopshippinglanguagelist"><option value="goalstudio.com" class="xans-record-">LANGUAGE : 한국어</option> <option value="en.goalstudio.com" selected="selected" class="xans-record-">LANGUAGE : English</option> <option value="cn.goalstudio.com" class="xans-record-">LANGUAGE : 中文</option> <option value="goalstudio.cafe24.com/shop8" class="xans-record-">LANGUAGE : English</option> </select> </div> </div> <div class="ec-base-button"> <a href="#none"><img src="//img.echosting.cafe24.com/skin/base_ko_KR/link/btn_go.gif" alt="GO"/></a> </div> <a href="#none" class="close"><img src="//img.echosting.cafe24.com/skin/base/common/btn_close.gif" width="13" height="13" alt="close"/></a> </div> </div> <script type="text/javascript" src="/web/upload/brushlab/js/jquery.js"></script> <script src="/web/upload/brushlab/js/plugins.js"></script> <script src="/web/upload/brushlab/js/functions.js"></script> <script> $( document ).ready(function() { $('input[name="order_password"]').val('1234') $('input[name="order_password_confirm"]').val('1234') }); </script> </footer></div><span itemscope="" itemtype="https://schema.org/Organization"> <link itemprop="url" href="https://en.goalstudio.com"> </span> <script type="text/javascript" src="/app/Eclog/js/cid.generate.js?vs=3260ad7ef0f55524eb46b16414cb560c&u=goalstudio.2"></script> <script type="text/javascript" src="/ind-script/i18n.php?lang=en_US&domain=front&v=2411201348" charset="utf-8"></script> <script src="/ind-script/optimizer.php?filename=zVjbbttGEH23-drvYN0WQV9tuW6D2IjgOMjzcDmkxlzubPYimfn6DCkljeqQ4sUGCgEkRc45O7tz3U03XGN68ZtLCwc17thVqUPP0SlMH31KF3-a5NH_kg7JRbKgqvTxc0TXHG6_J2-SXyci8SmgM6D94UWimCvCpSzR6VlTSFAlhZkNNazYFJpUmEVxkfwhv1mDy9fA7j_rZh2Xgj-ybg4BA4lALVImpKjuuodPFDYPX64hQFKTmcCjKRMUPsjzaZS3jkwoRtCziq1aN-zqFZvgWGt0p3FrHf2ltVeO8nKEPjGQPi1VOO5W6syzFgSbs8D2TJPBswyMGaPXnkJxXbMZK_0ERqLRiGtbh2H8KB0uYG212OXnILA2veOMNKb3P-D3-g2sSg-u5jzKK78jO23AIhrVLmgrl0cJm7rXiccyDCghrpp-3EfPjxQavjSaIZ8EqmOAdtz3mUe37TNOD9iybgrSo10vxwKiDu0S-BpcuBrwulbow4bt0YA3Hc07qIDTqr2u6Qn1UJQM0Kw6L_k46CQ90GvMYjkxw1kdSxKP3oImyTrsvuW87y8SeQC_mLatIib3z-mFwbLx-HojbFBbfPV5bMDkz7LoSw4gcUBF83r8EjPhxZZJswJJJhWfjsJ_NZjq8PdYoEOjcBVde2_WjtTi9iYrqQP9P5qtXEq_8ZIL_VImBE-mXMpSY4C8bWT66wgYKI_ryA4zzeWkLP7NpKkX25_b54adhFeHf-eFtDwQlmryUjTjOqRNqLV0axQI_WnplWts4HfYTLIQ-Mao_XU2rsY6GyqcJ-DvXY5OmTCb4Ap8hWE5w4CzjeZYHxqmuSwrjlIVl8zlTpo5KOfP4xote5o__ifym1vyywgUxwVL4FDhAvh9B6-wkQSZL2R54AB6tWg2XXzMd0s0WNDS0LiFZoEOfzvI5zvkZQwsSZdURyMtwW5-bEi_T2u20c4P0OhFHXQS6FtaYphb2qLsdqu-retYz_iH2kOK5gV87MD0ANkknq20ldL5fd9-9Z50TNTjrey2FyWSjuxa-hbSb03B802ugWrINC7QyELYONZ4PqLrPeU4vbvqHrCdUZP2Nf1cureJ1vS7RHYAeigw_jr0lsdHDl1nL5-9cmTDRHS7b04v2x2DRdWd7hQwVMt_SnKUdKxdjTxXchwD3tCTSH4F&type=js&k=10ca46d309a5035507207ceab15e4723e6680955&t=1729056897" ></script><script src="/ind-script/optimizer_user.php?filename=rc6xDQIxDEDRAULLHK5gESbIOVbiOzsOOAaxPSchFgC6Xz19aKYEhCmcbg7VsviMwgYjFmFMbaqAF0qFnGsH37ifziD5aTFhyc4Iq7_jsPoRvgR3A03V-o-IWgmhz981GLd0Z3r8ldWQyd5sXBqPwb3u-gs&type=js&k=8682a03579861914dbe9b45f4b0a8d3318b5c2c4&t=1552364949&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) { } var EC_SHOP_MULTISHOP_SHIPPING = {"bMultishopShipping":false,"bMultishopShippingCountrySelection":false,"bMultishopShippingLanguageSelection":false}; var aLogData = {"log_server1":"eclog2-260.cafe24.com","log_server2":"elg-db-svcm-267.cafe24.com","mid":"goalstudio","stype":"e","domain":"","shop_no":2,"lang":"en_US","ver":2,"hash":"","ca":"cfa-js.cafe24.com\/cfa.js","etc":"","mobile_flag":"F"}; var sMileageName = 'Point($)'; var sMileageUnit = '[:PRICE:]P($)'; var sDepositName = 'Store Credits'; var sDepositUnit = '$'; CAFE24.SHOP_CURRENCY_INFO = {"2":{"aShopCurrencyInfo":{"currency_code":"USD","currency_no":"840","currency_symbol":"$","currency_name":"United States dollar","currency_desc":"$ \ub2ec\ub7ec (\ubbf8\uad6d)","decimal_place":2,"round_method_type":"R"},"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":1122.2,"fExchangeSubRate":null,"aFrontCurrencyFormat":{"head":"$","tail":""},"aFrontSubCurrencyFormat":{"head":"","tail":""}}}; var SHOP_CURRENCY_INFO = CAFE24.SHOP_CURRENCY_INFO; var EC_ASYNC_LIVELINKON_ID = ''; CAFE24.APPSCRIPT_ASSIGN_DATA = CAFE24.APPSCRIPT_ASSIGN_DATA || [{'src':'https://calendar-app.cafe24.com/openapi/inject.js?vs=20240926125433.1&client_id=A8RQp67UIt9nBlqvThz2jC'}]; CAFE24.APPSCRIPT_SDK_DATA = CAFE24.APPSCRIPT_SDK_DATA || ['application','category','collection','community','order','product','store','customer','supply','promotion','shipping','design','notification','personal','privacy','salesreport','mileage']; 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><script type="text/javascript" src="/web/upload/brushlab/js/jquery.js"></script><script type="text/javascript">var brushlab$= jQuery.noConflict();</script><script> brushlab$(document).ready(function(){ //마이페이지 //URL 체크 마이페이지용 var urlChk = brushlab$(location).attr('href'); console.log(urlChk.split('/').slice(3)[1]); var value = urlChk.split('/').slice(3)[1]; switch(value) { case 'index.html' : brushlab$('.mypage-0').addClass('select'); break; case 'order' : brushlab$('.mypage-1').addClass('select'); break; case 'consult' : brushlab$('.mypage-2').addClass('select'); break; case 'board_list.html' : brushlab$('.mypage-3').addClass('select'); break; case 'mileage' : brushlab$('.mypage-4').addClass('select'); break; case 'coupon' : brushlab$('.mypage-5').addClass('select'); break; case 'addr' : brushlab$('.mypage-6').addClass('select'); break; case 'member' : brushlab$('.mypage-7').addClass('select'); break; }; }); </script>