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;
}

/* ============================================================
   쿠키 동의 배너
   ============================================================ */
.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;
  }
}