:root{--color-primary: #f4a8c1;--color-primary-dark: #e8879f;--color-secondary: #a8d8ea;--color-bg: #fef6f0;--color-card-bg: #ffffff;--color-text: #4a4a4a;--color-text-light: #888888;--color-accent: #ffd700;--border-radius: 16px;--shadow: 0 4px 15px rgba(0, 0, 0, .08)}*,*:before,*:after{margin:0;padding:0;box-sizing:border-box}body{font-family:Noto Sans KR,sans-serif;background-color:var(--color-bg);color:var(--color-text);line-height:1.6;-webkit-font-smoothing:antialiased}.page-loader{display:flex;justify-content:center;align-items:center;padding:80px 20px}.page-loader__spinner{width:32px;height:32px;border:3px solid #eee;border-top-color:var(--color-primary);border-radius:50%;animation:spin .6s linear infinite}@keyframes spin{to{transform:rotate(360deg)}}button{cursor:pointer;border:none;font-family:inherit}img{max-width:100%;display:block}.header{background:linear-gradient(135deg,var(--color-primary),var(--color-secondary));padding:16px 24px;display:flex;justify-content:space-between;align-items:center;position:sticky;top:0;z-index:100;box-shadow:0 2px 10px #0000001a}.header__logo{display:flex;align-items:center;gap:8px;flex-wrap:wrap}.header__logo-icon{font-size:2rem}.header__title{font-size:1.5rem;font-weight:700;color:#fff;letter-spacing:-.5px}.header__subtitle{font-size:.75rem;color:#ffffffd9;margin-left:4px}.header__actions,.header__user{display:flex;align-items:center;gap:8px}.header__user-name{font-size:.85rem;font-weight:600;color:#fff}.header__user-name:hover{text-decoration:underline}.header__text-btn{background:#fff3;color:#fff;padding:6px 14px;border-radius:20px;font-size:.8rem;font-weight:500;transition:background .2s}.header__text-btn:hover{background:#ffffff59}.header__admin-btn{background:#ffffff26;border-radius:50%;width:42px;height:42px;display:flex;align-items:center;justify-content:center;font-size:1.1rem;transition:background .2s;flex-shrink:0}.header__admin-btn:hover{background:#ffffff59}.header__icon-btn{position:relative;background:#ffffff40;border-radius:50%;width:44px;height:44px;display:flex;align-items:center;justify-content:center;font-size:1.2rem;transition:background .2s;flex-shrink:0}.header__icon-btn:hover{background:#fff6}.header__badge{position:absolute;top:-4px;right:-4px;background:#ff4757;color:#fff;font-size:.65rem;font-weight:700;width:20px;height:20px;border-radius:50%;display:flex;align-items:center;justify-content:center}.header__badge--wish{background:#ff6b81}.header__badge--notif{background:#ff9800;min-width:20px;width:auto;padding:0 4px;border-radius:10px}.header__notif-wrap{position:relative}.header__notif-dropdown{position:absolute;top:calc(100% + 8px);right:-8px;width:300px;max-height:420px;background:#fff;border-radius:14px;box-shadow:0 8px 32px #00000026;z-index:1000;display:flex;flex-direction:column;overflow:hidden}.header__notif-header{display:flex;align-items:center;justify-content:space-between;padding:14px 16px 10px;border-bottom:1px solid #f0f0f0}.header__notif-title{font-size:.95rem;font-weight:700;color:#333}.header__notif-read-all{font-size:.75rem;color:#667eea;font-weight:600;background:none;border:none;cursor:pointer;padding:0}.header__notif-read-all:hover{text-decoration:underline}.header__notif-empty{text-align:center;color:#bbb;font-size:.85rem;padding:28px 16px}.header__notif-list{overflow-y:auto;flex:1;list-style:none;padding:0;margin:0}.header__notif-item{padding:12px 16px;border-bottom:1px solid #f5f5f5;cursor:pointer;transition:background .15s}.header__notif-item:hover{background:#f8f8ff}.header__notif-item--unread{background:#fffbf0;border-left:3px solid #ff9800}.header__notif-item--unread:hover{background:#fff3e0}.header__notif-item-title{font-size:.82rem;font-weight:700;color:#333;margin-bottom:2px}.header__notif-item-msg{font-size:.78rem;color:#666;margin-bottom:4px;line-height:1.4}.header__notif-item-time{font-size:.7rem;color:#bbb}@media(max-width:768px){.header{padding:10px 12px}.header__title{font-size:1.1rem}.header__subtitle{display:none}.header__actions{gap:4px}.header__user-name{display:none}.header__text-btn{padding:5px 10px;font-size:.7rem}.header__admin-btn{width:36px;height:36px;font-size:.9rem}.header__icon-btn{width:38px;height:38px;font-size:1rem}}.cart-modal__overlay{position:fixed;top:0;left:0;width:100%;height:100%;background:#00000080;display:flex;justify-content:flex-end;z-index:200;animation:fadeIn .2s ease}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.cart-modal{background:#fff;width:400px;max-width:90vw;height:100%;display:flex;flex-direction:column;animation:slideIn .3s ease}.cart-modal__header{display:flex;justify-content:space-between;align-items:center;padding:20px;border-bottom:1px solid #eee}.cart-modal__header h2{font-size:1.2rem;font-weight:700}.cart-modal__close{background:#f0f0f0;width:36px;height:36px;border-radius:50%;font-size:1rem;display:flex;align-items:center;justify-content:center;transition:background .2s}.cart-modal__close:hover{background:#ddd}.cart-modal__body{flex:1;overflow-y:auto;padding:20px}.cart-modal__empty{text-align:center;padding:60px 20px;color:var(--color-text-light)}.cart-modal__empty-icon{font-size:3rem;display:block;margin-bottom:16px}.cart-modal__empty-sub{font-size:.85rem;margin-top:4px}.cart-modal__list{list-style:none;display:flex;flex-direction:column;gap:16px}.cart-modal__item{display:flex;gap:12px;align-items:center;padding:12px;background:#fafafa;border-radius:12px}.cart-modal__item-image{width:64px;height:64px;border-radius:8px;object-fit:cover;flex-shrink:0}.cart-modal__item-info{flex:1;min-width:0}.cart-modal__item-name{font-size:.9rem;font-weight:600;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.cart-modal__item-options{font-size:.78rem;color:var(--color-text-light);margin-top:2px}.cart-modal__item-price{font-size:.95rem;font-weight:700;color:var(--color-primary-dark);margin-top:2px}.cart-modal__quantity{display:flex;align-items:center;gap:8px;margin-top:6px}.cart-modal__quantity button{width:28px;height:28px;border-radius:50%;background:var(--color-primary);color:#fff;font-size:1rem;font-weight:700;display:flex;align-items:center;justify-content:center;transition:background .2s}.cart-modal__quantity button:hover{background:var(--color-primary-dark)}.cart-modal__quantity button:disabled{background:#ddd;cursor:not-allowed}.cart-modal__quantity span{font-weight:600;min-width:20px;text-align:center}.cart-modal__remove{background:none;font-size:1.2rem;padding:4px;transition:transform .2s;flex-shrink:0}.cart-modal__remove:hover{transform:scale(1.2)}.cart-modal__coupon{margin-top:16px;padding-top:16px;border-top:1px solid #eee}.cart-modal__coupon-input-row{display:flex;gap:8px}.cart-modal__coupon-input{flex:1;padding:10px 12px;border:2px solid #e8e8e8;border-radius:10px;font-size:.85rem;font-family:inherit;outline:none;transition:border-color .2s}.cart-modal__coupon-input:focus{border-color:var(--color-primary)}.cart-modal__coupon-btn{padding:10px 16px;background:var(--color-primary);color:#fff;font-size:.85rem;font-weight:600;border-radius:10px;white-space:nowrap;transition:background .2s}.cart-modal__coupon-btn:hover{background:var(--color-primary-dark)}.cart-modal__coupon-applied{display:flex;align-items:center;justify-content:space-between;padding:10px 14px;background:#f0f7ff;border:1px solid #b3d4fc;border-radius:10px;font-size:.85rem;font-weight:500;color:#2d6a8a}.cart-modal__coupon-remove{background:none;font-size:.9rem;color:#999;padding:2px 6px;transition:color .2s}.cart-modal__coupon-remove:hover{color:#ff4757}.cart-modal__coupon-error{color:#ff4757;font-size:.8rem;margin-top:6px}.cart-modal__shipping-banner{margin-top:16px;padding:12px 14px;background:#f8f9fa;border-radius:10px}.cart-modal__shipping-free{text-align:center;font-size:.9rem;font-weight:700;color:#22c55e}.cart-modal__shipping-bar-wrap{height:6px;background:#e9ecef;border-radius:3px;overflow:hidden;margin-bottom:8px}.cart-modal__shipping-bar{height:100%;background:linear-gradient(90deg,var(--color-primary),var(--color-primary-dark));border-radius:3px;transition:width .3s ease}.cart-modal__shipping-text{font-size:.8rem;color:#666;text-align:center}.cart-modal__shipping-text strong{color:var(--color-primary-dark)}.cart-modal__shipping-free-text{color:#22c55e;font-weight:600}.cart-modal__footer{border-top:2px solid #eee;padding-top:16px;margin-top:16px}.cart-modal__total,.cart-modal__discount{display:flex;justify-content:space-between;align-items:center;font-size:.9rem;margin-bottom:8px}.cart-modal__discount-price{color:#ff4757;font-weight:600}.cart-modal__final{font-size:1rem;font-weight:700;padding-top:8px;border-top:1px solid #eee;margin-bottom:12px}.cart-modal__total-price{font-size:1.3rem;font-weight:700;color:var(--color-primary-dark)}.cart-modal__checkout-btn{width:100%;padding:14px;background:linear-gradient(135deg,var(--color-primary),var(--color-primary-dark));color:#fff;font-size:1.05rem;font-weight:700;border-radius:12px;transition:opacity .2s,transform .1s}.cart-modal__checkout-btn:hover{opacity:.9}.cart-modal__checkout-btn:active{transform:scale(.98)}.cart-modal__item-options-row{display:flex;align-items:center;gap:6px}.cart-modal__option-edit-btn{font-size:.7rem;padding:2px 8px;border-radius:6px;background:#f0f0f0;color:#666;font-weight:600;transition:background .2s}.cart-modal__option-edit-btn:hover{background:#e0e0e0}.cart-modal__option-edit{margin-top:8px;padding:10px;background:#f8f8f8;border-radius:10px}.cart-modal__option-edit-group{margin-bottom:8px}.cart-modal__option-edit-label{font-size:.75rem;font-weight:600;color:#888;display:block;margin-bottom:4px}.cart-modal__option-edit-btns{display:flex;flex-wrap:wrap;gap:4px}.cart-modal__option-chip{padding:4px 10px;border:1.5px solid #ddd;border-radius:8px;font-size:.75rem;font-weight:600;background:#fff;cursor:pointer;transition:border-color .2s,background .2s}.cart-modal__option-chip--active{border-color:var(--color-primary);background:#f4a8c11a;color:var(--color-primary-dark)}.cart-modal__option-edit-actions{display:flex;gap:6px;margin-top:8px}.cart-modal__option-confirm{flex:1;padding:6px;border-radius:8px;background:var(--color-primary);color:#fff;font-size:.8rem;font-weight:600}.cart-modal__option-cancel{padding:6px 12px;border-radius:8px;background:#e0e0e0;font-size:.8rem;font-weight:600}@media(max-width:768px){.cart-modal{width:100%;max-width:100%}}.wishlist-modal__overlay{position:fixed;top:0;left:0;width:100%;height:100%;background:#00000080;display:flex;justify-content:flex-end;z-index:200;animation:fadeIn .2s ease}.wishlist-modal{background:#fff;width:400px;max-width:90vw;height:100%;display:flex;flex-direction:column;animation:slideIn .3s ease}@keyframes slideIn{0%{transform:translate(100%)}to{transform:translate(0)}}.wishlist-modal__header{display:flex;justify-content:space-between;align-items:center;padding:20px;border-bottom:1px solid #eee}.wishlist-modal__header h2{font-size:1.2rem;font-weight:700}.wishlist-modal__close{background:#f0f0f0;width:36px;height:36px;border-radius:50%;font-size:1rem;display:flex;align-items:center;justify-content:center;transition:background .2s}.wishlist-modal__close:hover{background:#ddd}.wishlist-modal__body{flex:1;overflow-y:auto;padding:20px}.wishlist-modal__empty{text-align:center;padding:60px 20px;color:var(--color-text-light)}.wishlist-modal__empty-icon{font-size:3rem;display:block;margin-bottom:16px}.wishlist-modal__empty-sub{font-size:.85rem;margin-top:4px}.wishlist-modal__list{list-style:none;display:flex;flex-direction:column;gap:16px}.wishlist-modal__item{display:flex;gap:12px;align-items:flex-start;padding:12px;background:#fafafa;border-radius:12px}.wishlist-modal__item-image{width:64px;height:64px;border-radius:8px;object-fit:cover;flex-shrink:0}.wishlist-modal__item-info{flex:1;min-width:0}.wishlist-modal__item-name{font-size:.9rem;font-weight:600;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.wishlist-modal__item-price{font-size:.95rem;font-weight:700;color:var(--color-primary-dark);margin-top:2px}.wishlist-modal__cart-btn{margin-top:8px;padding:6px 14px;background:var(--color-primary);color:#fff;font-size:.8rem;font-weight:600;border-radius:8px;transition:background .2s}.wishlist-modal__cart-btn:hover{background:var(--color-primary-dark)}.wishlist-modal__remove{background:#eee;width:28px;height:28px;border-radius:50%;font-size:.75rem;display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:background .2s}.wishlist-modal__remove:hover{background:#fdd}@media(max-width:768px){.wishlist-modal{width:100%;max-width:100%}}.kakao-channel{position:fixed;bottom:24px;right:24px;width:60px;height:60px;border-radius:50%;background:#fee500;color:#3c1e1e;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:1px;box-shadow:0 4px 12px #0003;z-index:200;transition:transform .2s,box-shadow .2s;cursor:pointer}.kakao-channel:hover{transform:scale(1.1);box-shadow:0 6px 16px #00000040}.kakao-channel:active{transform:scale(.95)}.kakao-channel__icon{width:28px;height:28px}.kakao-channel__text{font-size:.55rem;font-weight:700;letter-spacing:-.5px}@media(max-width:768px){.kakao-channel{bottom:16px;right:16px;width:52px;height:52px}.kakao-channel__icon{width:24px;height:24px}.kakao-channel__text{font-size:.5rem}}.bottom-nav{display:none}@media(max-width:768px){.bottom-nav{display:flex;position:fixed;bottom:0;left:0;right:0;background:#fff;border-top:1px solid #eee;z-index:150;padding:6px 0 env(safe-area-inset-bottom,6px)}.bottom-nav__item{flex:1;display:flex;flex-direction:column;align-items:center;gap:2px;padding:6px 0;background:none;border:none;color:#999;font-size:.65rem;cursor:pointer;transition:color .2s}.bottom-nav__item--active{color:var(--color-primary-dark)}.bottom-nav__icon{font-size:1.3rem;position:relative;line-height:1}.bottom-nav__badge{position:absolute;top:-4px;right:-10px;background:#ff4757;color:#fff;font-size:.6rem;font-weight:700;min-width:16px;height:16px;border-radius:8px;display:flex;align-items:center;justify-content:center;padding:0 4px}.bottom-nav__label{font-weight:600}}.toast-container{position:fixed;top:80px;left:50%;transform:translate(-50%);z-index:10000;display:flex;flex-direction:column;gap:8px;pointer-events:none;width:max-content;max-width:90vw}.toast{display:flex;align-items:center;gap:10px;padding:14px 22px;border-radius:12px;font-size:.9rem;font-weight:600;box-shadow:0 4px 16px #0000002e;animation:toastSlideIn .3s ease,toastFadeOut .3s ease 2.5s forwards;pointer-events:auto}.toast--success{background:#22c55e;color:#fff}.toast--error{background:#ff4757;color:#fff}.toast--info{background:#333;color:#fff}.toast__icon{width:22px;height:22px;border-radius:50%;background:#ffffff40;display:flex;align-items:center;justify-content:center;font-size:.8rem;flex-shrink:0}.toast__message{line-height:1.3}@keyframes toastSlideIn{0%{opacity:0;transform:translateY(-12px)}to{opacity:1;transform:translateY(0)}}@keyframes toastFadeOut{0%{opacity:1}to{opacity:0}}@media(max-width:768px){.toast-container{top:16px}.toast{font-size:.85rem;padding:12px 16px}}.app{min-height:100vh;display:flex;flex-direction:column}.main{flex:1;max-width:1200px;width:100%;margin:0 auto;padding:0 24px}.footer{text-align:center;padding:32px 24px;background:#f8f8f8;color:var(--color-text-light);font-size:.85rem;margin-top:auto}.footer p+p{margin-top:4px}.footer__brand{margin-bottom:16px}.footer__biz{font-size:.75rem;color:#aaa;line-height:1.7;margin-bottom:12px}.footer__links{display:flex;justify-content:center;gap:16px;font-size:.78rem}.footer__links a{color:#888;text-decoration:underline}.footer__links a:hover{color:var(--color-primary)}@media(max-width:768px){.main{padding:0 16px 68px}.footer{padding-bottom:80px}}
