li >a > i{
  color:#12cf6c;  
  margin-bottom: -3px;
}
i{
  color:#12cf6c;  
}
li > a{
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
/* Clickable header icons (cart / wishlist / account) */
a.hicon{
  text-decoration: none;
  color: #fff;
}
a.hicon i{
  color: #fff;
  transition: .3s;
}
a.hicon:hover i{
  color: #12cf6c;
}
a.hicon .badge{
  color: #fff;
}
a.hicon:hover .badge{
  color: #fff;
}

/* ============================================================
   퀵 링크 바 (헤더 하단)
   ============================================================ */
.quicklinks{
  background: #fafafa;
  border-bottom: 1px solid #e7e5e2;
}
.quicklinks-inner{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.quicklinks-inner::-webkit-scrollbar{
  display: none;
}
.qlink{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #e7e5e2;
  font-size: .82rem;
  font-weight: 600;
  color: #2b2b2b;
  white-space: nowrap;
  text-decoration: none;
  transition: .25s;
}
.qlink i{
  font-size: .78rem;
  color: #12cf6c;
}
.qlink:hover{
  border-color: #12cf6c;
  color: #12cf6c;
}
.qlink.more{
  background: #141414;
  color: #fff;
  border-color: #141414;
}
.qlink.more i{
  color: #fff;
}
.qlink.more:hover{
  background: #2b2b2b;
  border-color: #2b2b2b;
  color: #fff;
}

/* 퀵 링크(좌) + 멀티미디어(우)를 한 줄에 배치 */
.quicklinks-bar{
  display: flex;
  align-items: center;
  gap: 18px;
}
/* 칩 영역만 남는 공간을 차지하고 넘치면 가로 스크롤 */
.quicklinks-bar .quicklinks-inner{
  flex: 1 1 auto;
  min-width: 0;
}

/* ============================================================
   멀티미디어 채널 (영상 투어 + 소셜)
   ============================================================ */
.mmlinks{
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 10px 0 10px 18px;
  border-left: 1px solid #e7e5e2;
}

/* 영상 투어 - 라벨이 있는 알약형 버튼 */
.mmtour{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 15px;
  border-radius: 20px;
  background: #12cf6c;
  border: 1px solid #12cf6c;
  font-size: .82rem;
  font-weight: 700;
  color: #10241a;
  white-space: nowrap;
  text-decoration: none;
  transition: .25s;
}
.mmtour i{
  color: #10241a;
  font-size: .9rem;
}
.mmtour:hover{
  background: #0fb85f;
  border-color: #0fb85f;
  color: #10241a;
}

/* 소셜 아이콘 - 원형 버튼 */
.mmlink{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e7e5e2;
  text-decoration: none;
  transition: .25s;
}
.mmlink i{
  font-size: .88rem;
  color: #2b2b2b;
  transition: .25s;
}
.mmlink:hover{
  transform: translateY(-2px);
}
.mmlink:hover i{
  color: #fff;
}

/* 채널별 브랜드 컬러 */
.mmlink.yt:hover{
  background: #ff0000;
  border-color: #ff0000;
}
.mmlink.ig:hover{
  background: linear-gradient(45deg, #f09433, #dc2743 55%, #bc1888);
  border-color: #bc1888;
}
.mmlink.blog:hover{
  background: #03c75a;
  border-color: #03c75a;
}
.mmlink.kakao:hover{
  background: #fee500;
  border-color: #fee500;
}
.mmlink.kakao:hover i{
  color: #3c1e1e;
}
.mmlink.place:hover{
  background: #12cf6c;
  border-color: #12cf6c;
}

/* 키보드 접근성 */
.qlink:focus-visible,
.mmtour:focus-visible,
.mmlink:focus-visible{
  outline: 2px solid #12cf6c;
  outline-offset: 2px;
}

/* 태블릿 - 멀티미디어를 아랫줄로 내림 */
@media(max-width:900px){
  .quicklinks-bar{
    flex-wrap: wrap;
    gap: 0;
  }
  .quicklinks-bar .quicklinks-inner{
    flex: 1 1 100%;
  }
  .mmlinks{
    flex: 1 1 100%;
    padding: 0 0 10px;
    border-left: 0;
    border-top: 1px solid #e7e5e2;
    padding-top: 10px;
  }
}

/* 모바일 - 영상 투어 라벨 숨기고 아이콘만 노출 */
@media(max-width:480px){
  .mmtour{
    padding: 7px 11px;
  }
  .mmtour span{
    display: none;
  }
}

/* ============================================================
   쿠키 동의 배너
   ============================================================ */
.cookie-banner{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: #141414;
  color: #fff;
  padding: 37px 24px;
  transform: translateY(120%);
  transition: transform .4s cubic-bezier(.22,.61,.36,1);
  box-shadow: 0 -10px 30px -10px rgba(0,0,0,.35);
}
.cookie-banner.show{
  transform: translateY(0);
}
.cookie-inner{
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text{
  font-size: .88rem;
  line-height: 1.6;
  color: #cfcac3;
  margin: 0;
  flex: 1;
  min-width: 240px;
}
.cookie-text i{
  color: #12cf6c;
  margin-right: 6px;
}
.cookie-link{
  color: #fff;
  text-decoration: underline;
  margin-left: 6px;
  white-space: nowrap;
}
.cookie-actions{
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn{
  padding: 10px 22px;
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: .25s;
  font-family: inherit;
}
.cookie-btn.accept{
  background: #12cf6c;
  color: #10241a;
}
.cookie-btn.accept:hover{
  background: #0fb85f;
}
.cookie-btn.deny{
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.3);
}
.cookie-btn.deny:hover{
  border-color: #fff;
}
@media(max-width:640px){
  .cookie-inner{
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-actions{
    width: 100%;
  }
  .cookie-btn{
    flex: 1;
    text-align: center;
  }
}