/* Watches Header Variant */

/* ── Topbar ── */
.wtc-topbar { background: #0a0a0a; border-bottom: 1px solid rgba(201,169,110,.2); }
.wtc-topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 36px; font-size: 12px; color: rgba(255,255,255,.6);
}
.wtc-topbar-msg { letter-spacing: .3px; }
.wtc-topbar-right { display: flex; align-items: center; gap: 12px; }
.wtc-topbar-right a { color: rgba(255,255,255,.6); text-decoration: none; }
.wtc-topbar-right a:hover { color: var(--molla-accent); }
.wtc-sep { opacity: .3; }
.wtc-td-wrap { position: relative; }
.wtc-td-toggle {
  background: none; border: none; color: rgba(255,255,255,.6);
  font-size: 12px; cursor: pointer; padding: 0; display: flex; align-items: center; gap: 4px;
}
.wtc-td-menu {
  display: none; position: absolute; right: 0; top: calc(100% + 6px);
  background: #1a1a1a; border: 1px solid rgba(201,169,110,.2);
  min-width: 100px; z-index: 200;
}
.wtc-td-menu a { display: block; padding: 8px 14px; font-size: 12px; color: rgba(255,255,255,.7); text-decoration: none; }
.wtc-td-menu a:hover { color: var(--molla-accent); background: rgba(255,255,255,.05); }
.wtc-td-wrap:hover .wtc-td-menu { display: block; }

/* ── Main Header ── */
.wtc-header { background: #fff; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 100; }
.wtc-header-inner {
  display: flex; align-items: center; gap: 32px;
  height: 72px;
}

/* Logo */
.wtc-logo { flex: 0 0 auto; text-decoration: none; min-width: 0; }
.wtc-logo img { max-width: 140px; }
.wtc-logo-text {
  font-size: 22px; font-weight: 300; letter-spacing: 6px; text-transform: uppercase; color: #111;
}

/* Nav */
.wtc-nav { flex: 1; overflow: hidden; }
.wtc-nav ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 0; flex-wrap: nowrap; }
.wtc-nav > ul > li { position: relative; }
.wtc-nav > ul > li > a {
  display: block; padding: 0 12px; line-height: 72px;
  font-size: 12px; font-weight: 600; letter-spacing: .3px; text-transform: uppercase;
  color: #333; text-decoration: none; transition: color .15s; white-space: nowrap;
}
.wtc-nav > ul > li > a:hover,
.wtc-nav > ul > li > a.active { color: var(--molla-accent); }
.wtc-nav > ul > li > a.active {
  box-shadow: inset 0 -2px 0 var(--molla-accent);
}

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

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

/* Search Bar */
.wtc-search-bar {
  background: #f8f8f8; border-top: 1px solid #eee;
  max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease;
}
.wtc-search-bar.open { max-height: 80px; padding: 14px 0; }
.wtc-search-form { display: flex; align-items: center; gap: 8px; }
.wtc-search-form input {
  flex: 1; border: 1px solid #ddd; padding: 10px 16px; font-size: 14px;
  outline: none; background: #fff;
}
.wtc-search-form input:focus { border-color: var(--molla-accent); }
.wtc-search-form button {
  height: 42px; padding: 0 18px; border: none; cursor: pointer;
  font-size: 16px; background: var(--molla-accent); color: #fff;
}
.wtc-search-close { background: #eee !important; color: #666 !important; }

/* Responsive */
@media (max-width: 992px) {
  .wtc-nav { display: none; }
  .wtc-mobile-toggle { display: flex; }
  .wtc-header-inner { justify-content: space-between; gap: 0; }
}
@media (max-width: 480px) {
  .wtc-topbar-msg { display: none; }
  .wtc-topbar-inner { justify-content: flex-end; }
  .wtc-logo-text { font-size: 15px; letter-spacing: 3px; }
  .wtc-icon, .wtc-search-toggle, .wtc-mobile-toggle { width: 32px; height: 32px; font-size: 15px; }
  .wtc-icons { gap: 2px; }
}
