/* =========================================
   CLEAN MOBILE HEADER (NO STACKING)
========================================= */

.k2t-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  background: #fff;
  border-bottom: 1px solid #eee;
  width: 100%;
  box-sizing: border-box;
}

/* LEFT SIDE */
.k2t-logo img {
  height: 40px;
}

/* CENTER */
.k2t-search-form {
  display: flex;
  align-items: center;
  gap: 6px;
}

.k2t-search-form input {
  width: 120px;
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.k2t-search-form button {
  padding: 6px 8px;
  background: #80336b;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.k2t-search-form img {
  width: 16px;
  height: 16px;
}

/* RIGHT SIDE */
.k2t-login-btn {
  background-color: #80336b;
  color: white;
  padding: 6px 10px;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
}

/* HAMBURGER */
.k2t-menu-icon {
  font-size: 24px;
  cursor: pointer;
  color: #80336b;
  margin-left: 8px;
}

#k2t-nav-toggle {
  display: none;
}

/* =========================================
   SLIDING DRAWER (RIGHT SIDE)
========================================= */

.k2t-nav-links {
  position: fixed;
  top: 0;
  right: 0;
  width: 260px;
  height: 100%;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 3000;
  padding: 20px;
  box-shadow: -5px 0 20px rgba(0,0,0,0.15);
  overflow-y: auto;
}

/* OPEN DRAWER */
#k2t-nav-toggle:checked ~ .k2t-nav-links {
  transform: translateX(0);
}

/* =========================================
   MENU STYLE (CLEAN LIST — NO BOXES)
========================================= */

.k2t-nav-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.k2t-nav-links li {
  margin-bottom: 12px;
}

.k2t-nav-links a,
.k2t-panel-btn {
  display: block;
  width: 100%;
  text-decoration: none;
  color: #80336b;
  font-weight: 600;
  font-size: 18px;
  padding: 8px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}

/* REMOVE GOLD BUTTON LOOK */
.k2t-panel-btn {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}

.k2t-nav-links a:hover,
.k2t-panel-btn:hover {
  color: #f7b948;
}

/* =========================================
   SUB PANELS
========================================= */

.k2t-menu-panel {
  display: none;
}

.k2t-menu-panel.active {
  display: block;
}

.k2t-panel-back {
  font-size: 16px;
  margin-bottom: 10px;
  background: none;
  border: none;
  color: #80336b;
  cursor: pointer;
}