/* Plants Header */

/* Topbar */
.plt-topbar { background: #2d2d2d; color: rgba(255,255,255,.75); font-size: 12px; }
.plt-topbar-inner { display: flex; align-items: center; justify-content: space-between; height: 36px; }
.plt-topbar-left { display: flex; align-items: center; gap: 10px; }
.plt-topbar-sep { color: rgba(255,255,255,.3); }
.plt-topbar-right { display: flex; align-items: center; gap: 14px; }
.plt-topbar-link { color: rgba(255,255,255,.75); text-decoration: none; font-size: 12px; display: flex; align-items: center; gap: 4px; transition: color .15s; }
.plt-topbar-link:hover { color: var(--molla-accent, #4a8f3f); }
.plt-td-wrap { position: relative; }
.plt-td-toggle { background: none; border: none; color: rgba(255,255,255,.75); font-size: 12px; cursor: pointer; padding: 0; display: flex; align-items: center; gap: 3px; }
.plt-td-menu { display: none; position: absolute; right: 0; top: calc(100% + 6px); background: #fff; border: 1px solid #eee; min-width: 100px; z-index: 300; box-shadow: 0 4px 12px rgba(0,0,0,.1); }
.plt-td-menu a { display: block; padding: 8px 14px; font-size: 12px; color: #444; text-decoration: none; }
.plt-td-menu a:hover { color: var(--molla-accent, #4a8f3f); background: #f9f9f9; }
.plt-td-wrap:hover .plt-td-menu { display: block; }

/* Main Header */
.plt-header { background: #fff; border-bottom: 1px solid #e8f0e9; position: sticky; top: 0; z-index: 100; }
.plt-header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 16px; }

/* Hamburger */
.plt-hamburger { display: none; }

/* Logo */
.plt-logo { text-decoration: none; display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.plt-logo-icon { font-size: 26px; color: var(--molla-accent, #4a8f3f); line-height: 1; }
.plt-logo-text { font-size: 20px; font-weight: 800; color: #2d2d2d; letter-spacing: -.5px; }
.plt-logo-text span { color: var(--molla-accent, #4a8f3f); }

/* Nav */
.plt-nav ul { list-style: none; padding: 0; margin: 0; display: flex; align-items: center; gap: 0; flex-wrap: nowrap; }
.plt-nav > ul > li { position: relative; }
.plt-nav > ul > li > a {
  display: block; padding: 0 14px; line-height: 70px;
  font-size: 13px; font-weight: 600; color: #333; text-decoration: none;
  white-space: nowrap; transition: color .15s;
}
.plt-nav > ul > li > a:hover,
.plt-nav > ul > li > a.active { color: var(--molla-accent, #4a8f3f); }
.plt-nav > ul > li > a.active { box-shadow: inset 0 -3px 0 var(--molla-accent, #4a8f3f); }

/* Dropdown */
.plt-dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: #fff; border: 1px solid #eee; border-top: 3px solid var(--molla-accent, #4a8f3f);
  min-width: 200px; list-style: none; padding: 8px 0; margin: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.08); z-index: 200;
}
.plt-nav > ul > li:hover > .plt-dropdown { display: block; }
.plt-dropdown li a { display: block; padding: 10px 20px; font-size: 13px; color: #555; text-decoration: none; transition: color .15s, padding-left .15s; }
.plt-dropdown li a:hover { color: var(--molla-accent, #4a8f3f); padding-left: 26px; }

/* Icons */
.plt-icons { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.plt-icon-btn {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; color: #333; font-size: 17px;
  text-decoration: none; cursor: pointer; position: relative; transition: color .15s, background .15s;
}
.plt-icon-btn:hover { color: var(--molla-accent, #4a8f3f); background: rgba(74,143,63,.08); }
.plt-badge {
  position: absolute; top: 3px; right: 3px;
  min-width: 16px; height: 16px; border-radius: 8px;
  background: var(--molla-accent, #4a8f3f); color: #fff;
  font-size: 10px; font-weight: 700; line-height: 16px; text-align: center; padding: 0 3px;
}

/* Search */
.plt-search-bar { background: #f4f9f4; border-top: 1px solid #e0ede0; max-height: 0; overflow: hidden; transition: max-height .3s, padding .3s; }
.plt-search-bar.open { max-height: 72px; padding: 14px 0; }
.plt-search-form { display: flex; gap: 8px; }
.plt-search-form input { flex: 1; border: 1px solid #c8dfc8; padding: 10px 16px; font-size: 13px; outline: none; border-radius: 4px; }
.plt-search-form input:focus { border-color: var(--molla-accent, #4a8f3f); }
.plt-search-form button { height: 40px; padding: 0 16px; border: none; border-radius: 4px; cursor: pointer; font-size: 15px; background: var(--molla-accent, #4a8f3f); color: #fff; transition: background .2s; }
.plt-search-form button:last-child { background: #e0e0e0; color: #666; }
.plt-search-form button:last-child:hover { background: #ccc; }

/* Responsive */
@media (max-width: 992px) {
  .plt-nav { display: none; }
  .plt-hamburger { display: flex; }
  .plt-logo { position: absolute; left: 50%; transform: translateX(-50%); }
}
@media (max-width: 480px) {
  .plt-topbar { display: none; }
  .plt-header-inner { height: 56px; }
  .plt-logo-text { font-size: 16px; }
  .plt-logo { position: static; transform: none; }
}
