/* ── HEADER ── */
.ihpl-header {
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  width: 100%;
}
.ihpl-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 68px;
  max-width: 1400px;
  margin: 0 auto;
}

/* ── LOGO ── */
.ihpl-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
}
.ihpl-logo-text {
  font-style: italic;
  font-size: 28px;
  color: #c0392b;
  letter-spacing: 1px;
  line-height: 1;
}
.ihpl-logo-tag {
  font-size: 8px;
  letter-spacing: 3px;
  color: #555;
  text-transform: uppercase;
  margin-top: 3px;
}

/* ── DESKTOP NAV ── */
.ihpl-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.ihpl-nav-item {
  position: relative;
}
.ihpl-nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 22px 14px;
  font-size: 14px;
  font-weight: 400;
  color: #2c2c2c !important;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.2s;
  letter-spacing: 0.2px;
}
.ihpl-nav-link:hover { color: #c0392b; }
.ihpl-nav-link .ihpl-chev {
  width: 10px;
  height: 10px;
  opacity: 0.5;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.ihpl-nav-item:hover .ihpl-chev {
  transform: rotate(180deg);
  opacity: 0.8;
}

/* ── DROPDOWN ── */
.ihpl-drop {
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  min-width: 300px;
  padding: 20px 24px 24px;
  z-index: 9998;
  animation: ihplFade 0.18s ease;
}
@keyframes ihplFade {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
/* Edge alignment */
.ihpl-nav-item:first-child .ihpl-drop,
.ihpl-nav-item:nth-child(2) .ihpl-drop {
  left: 0; transform: none;
  animation-name: ihplFadeEdge;
}
.ihpl-nav-item:last-child .ihpl-drop,
.ihpl-nav-item:nth-last-child(2) .ihpl-drop {
  left: auto; right: 0; transform: none;
  animation-name: ihplFadeEdge;
}
@keyframes ihplFadeEdge {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ihpl-nav-item:hover .ihpl-drop { display: block; }

.ihpl-drop-link {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  transition: opacity 0.15s;
}
.ihpl-drop-link:last-child { border-bottom: none; padding-bottom: 0; }
.ihpl-drop-link:first-child { padding-top: 0; }
.ihpl-drop-link:hover { opacity: 0.7; }
.ihpl-drop-title {
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 4px;
}
.ihpl-drop-desc {
  font-size: 13px;
  color: #777;
  line-height: 1.5;
  font-weight: 400;
}

/* ── SEARCH ── */
.ihpl-search {
  display: flex;
  align-items: center;
  border: 1px solid #d5d5d5;
  border-radius: 3px;
  overflow: hidden;
  height: 36px;
  flex-shrink: 0;
}
.ihpl-search input {
  border: none;
  outline: none;
  padding: 0 12px;
  font-size: 13px;
  color: #444;
  width: 180px;
  background: transparent;
}
.ihpl-search input::placeholder { color: #aaa; }
.ihpl-search button {
  background: none;
  border: none;
  padding: 0 10px;
  cursor: pointer;
  color: #888;
  display: flex;
  align-items: center;
}
.ihpl-search button:hover { color: #c0392b; }

/* ── HAMBURGER ── */
.ihpl-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.ihpl-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #2c2c2c;
  border-radius: 2px;
  transition: all 0.3s;
}
.ihpl-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ihpl-burger.open span:nth-child(2) { opacity: 0; }
.ihpl-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.ihpl-mobile {
  display: none;
  background: #fff;
  border-top: 1px solid #eee;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  z-index: 9997;
  padding-bottom: 40px;
}
.ihpl-mobile.open { display: block; }

.ihpl-m-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  user-select: none;
}
	.ihpl-m-link a{

  font-size: 15px;
  color: #1a1a1a;
  cursor: pointer;
  user-select: none;
}
.ihpl-m-chev {
  width: 16px;
  height: 16px;
  color: #aaa;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.ihpl-m-item.open .ihpl-m-chev { transform: rotate(180deg); }

.ihpl-m-drop {
  display: none;
  background: #fafafa;
  border-bottom: 1px solid #f0f0f0;
}
.ihpl-m-item.open .ihpl-m-drop { display: block; }

.ihpl-m-drop-link {
  display: block;
  padding: 14px 24px 14px 32px;
  border-bottom: 1px solid #efefef;
  text-decoration: none;
}
.ihpl-m-drop-link:last-child { border-bottom: none; }
.ihpl-m-drop-title {
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 3px;
}
.ihpl-m-drop-desc {
  font-size: 14px;
  color: #888;
  line-height: 1.45;
  font-weight: 300;
}

.ihpl-m-search {
  display: flex;
  align-items: center;
  margin: 20px 24px;
  border: 1px solid #d5d5d5;
  border-radius: 3px;
  height: 44px;
  overflow: hidden;
}
.ihpl-m-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0 14px;
  font-size: 14px;
  color: #444;
  background: transparent;
}
.ihpl-m-search button {
  background: none;
  border: none;
  padding: 0 14px;
  cursor: pointer;
  color: #888;
  display: flex;
  align-items: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .ihpl-nav, .ihpl-search { display: none; }
  .ihpl-burger { display: flex; }
  .ihpl-inner { padding: 0 20px; }
	form#searchform{width:100% !important;}
}

@media (min-width: 1024px) and (max-width: 1240px) {
	.ihpl-nav-link {
    gap: 4px;
    padding: 22px 6px;
    font-size: 12px;
    letter-spacing: 0.2px;
}
	}
	
	