
/* HEADER (Mobile only version, cleaned) */
.k2t-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 2fr 0.5fr 1fr; /* logo | login | spacer | search | spacer | nav */ /* logo | login | search | nav */
  align-items: center;
  padding: 8px 10px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  column-gap: 5px;
}

.k2t-logo img {
  height: 40px;
  width: auto;
}
.k2t-login-btn {
  background-color: #80336b;
  color: white;
  padding: 8px 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
}
.k2t-search-form {
  display: inline-flex;
  align-items: center;
  margin: 0;
}
.k2t-search-form input {
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 4px 0 0 4px;
  width: 100px;
}
.k2t-search-form button {
  padding: 6px 10px;
  background: #80336b;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}
.k2t-search-form img { width: 16px; height: 16px; }

/* NAV (hamburger + drawer) */
.k2t-nav-links {
  display: none;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  padding: 20px;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 250px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 1500;
}
#k2t-nav-toggle { display: none; }
#k2t-nav-toggle:checked ~ .k2t-nav-links {
  display: flex;
  transform: translateX(0);
}
.k2t-nav-links li { position: relative;
  column-gap: 5px; list-style: none; }
.k2t-nav-links a {
  text-decoration: none;
  color: #80336b;
  font-weight: 600;
  font-size: 22px; /* further increased for readability */
  padding: 6px 10px;
  display: block;
}
.k2t-nav-links a:hover { color: #f7b948; }
.k2t-menu-icon {
  display: block;
  font-size: 26px;
  cursor: pointer;
  color: #80336b;
  text-align: right;
}

/* MODAL (shared styling remains intact) */
.k2t-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}
.k2t-modal-box {
  background: white;
  padding: 30px;
  border-radius: 10px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: center;
  font-family: 'Poppins', sans-serif !important;
  position: relative;
  column-gap: 5px;
}
.k2t-modal-box h2 {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}
.k2t-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}
.k2t-modal-toggle-buttons { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
.k2t-modal-toggle-buttons button {
  background-color: #80336b;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}
.k2t-modal-box input {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border-radius: 6px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif !important;
}
.k2t-toggle-container { position: relative;
  column-gap: 5px; }
.k2t-toggle-container input { padding-right: 60px; }
.k2t-toggle-container button {
  position: absolute; right: 10px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none; font-size: 13px; cursor: pointer;
}
.k2t-disclosure { font-size: 13px; text-align: left; margin-top: 10px; }
#k2t_pwWarning { font-size: 13px; color: red; display: none; text-align: left; }
#k2t_pwCriteria { font-size: 13px; text-align: left; list-style: none; padding-left: 0; display: none; }
.k2t-disabled { background-color: gray !important; cursor: not-allowed !important; }
.k2t-enabled { background-color: #80336b !important; cursor: pointer !important; }
.k2t-hidden { display: none; }
.k2t-small { font-size: 13px; margin-top: 10px; }

.k2t-logo, .k2t-login-btn, .k2t-search-form {
  justify-self: start;
}
.k2t-menu-icon {
  justify-self: end;
}
