.kc-header {
  /* position: fixed; */
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #10b981;
  color: #fff;
  font-family: Inter, Arial, sans-serif;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
}

.kc-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 20px;
  flex-wrap: wrap;
}

.kc-brand {
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  white-space: nowrap;
}

.kc-search {
  flex: 1;
  max-width: 480px;
  position: relative;
}

.kc-search input::placeholder {
  color: #000;
}

.kc-search input {
  width: 100%;
  padding: 10px 14px;
  font-size: 16px;
  border-radius: 0;
  border: none;
  outline: none;
  background: #fff;
  color: #000;
  box-shadow: 0 0 0 1px #ccc inset;
}

.kc-search-popup {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  background: #fff;
  color: #000;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
  max-height: 300px;
  overflow-y: auto;
  z-index: 2000;
}

.kc-search-popup a {
  display: block;
  padding: 12px 16px;
  font-size: 14px;
  text-decoration: none;
  color: #111;
  border-bottom: 1px solid #f0f0f0;
}

.kc-search-popup a:hover {
  background: #f9f9f9;
}

/* Icons */
.kc-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.kc-icon {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: color .25s ease;
  background: none; /* REMOVE unintended white */
}

.kc-icon span {
  font-size: 12px;
  margin-top: 2px;
}

.kc-icon:hover {
  color: #00c88c; /* Replace with actual --emerald if using CSS vars */
}

/* Account popup overlay */
.kc-account {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, .4); */
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 3000;
}

.kc-account.show-popup {
  display: flex;
}

.kc-account-box {
  background: #fff;
  color: #000;
  border-radius: 0;
  max-width: 420px;
  width: 90%;
  padding: 28px;
  position: relative;
}

.kc-close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 24px;
  border: none;
  background: none;
  cursor: pointer;
  color: #555;
}

.kc-btn {
  display: inline-block;
  margin-top: 12px;
  background: #00c88c;
  color: #fff;
  padding: 10px 18px;
  border-radius: 0;
  text-decoration: none;
  font-weight: 600;
}

.kc-btn:hover {
  opacity: .9;
}

/* Burger and Mobile menu */
.kc-burger-o, .kc-burger-t {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  display: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .kc-search {
    display: none;
  }
  .kc-icons {
    display: none;
  }
  .kc-burger-o {
    display: block;
    /* margin-left: auto; */
  }
  .kc-burger-t {
    display: block;
    margin-left: auto;
  }
  body.menu-open .kc-icons {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 94px;
    right: 0;
    background: #10b981;
    width: 200px;
    padding: 12px 0;
    border-radius: 0;
    z-index: 10;
  }
  body.menu-open .kc-icons a,
  body.menu-open .kc-icons button {
    padding: 12px 18px;
    width: 100%;
    justify-content: flex-start;
  }
  body.menu-open .kc-icon span {
    margin-left: 10px;
  }
}

/* Make sure page starts below fixed header */
/* body {
  padding-top: 20px; 
} */






/* ---------- 2. UTILITY STRIP ---------- */
.kc-utility{
  background:#f2f3f5;color:#444;font-size:13px;
  border-bottom:1px solid #e5e7eb;
}
.kc-utility-inner{
  max-width:1200px;margin:auto;
  display:flex;justify-content:space-between;align-items:center;
  padding:5px 20px;
}
.kc-sell{color:#00c88c;text-decoration:none;font-weight:600;display:flex;gap:6px;align-items:center;}
.kc-sell i{margin-right:0px;margin-top: 0px;}
.kc-mini-icons{display:flex;gap:17px;font-weight:600;color:#666;}
.kc-mini-icons i{margin-right:-7px;color:#00c88c;margin-top: 4px;}

/* ---------- Animation ---------- */
@keyframes slideIn{
  from{transform:translateY(-100%);}
  to{transform:translateY(0);}
}

/* ---------- 3. MAIN HEADER OVERRIDES ---------- */
.kc-search input{max-width:100%;}               /* ensure flexible width */
@media(min-width:992px){.kc-search{max-width:540px;}}  /* clamp for large desktop */

/* push body for new combined height (promo + utility + header) */
/* body{padding-top:128px;}   34 + 26 + ~68 */
/* @media(max-width:768px){body{padding-top:96px;}} shorter on mobile */


#accBtn {
    outline: none;
    border: none;
    cursor: pointer;
    text-align: center;
}


.kc-search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 14px 20px;
  z-index: 4000;
  display: none;
  animation: slideIn 0.3s ease forwards;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.kc-search-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  background: #f9f9f9;
}

.kc-search-close {
  position: absolute;
  right: 18px;
  top: 12px;
  background: none;
  border: none;
  font-size: 24px;
  color: #666;
  cursor: pointer;
}


.fixed-header {
  position: fixed !important;
}