/* ════════════════════════════════
   HEADER + FOOTER — перенесено 1:1 из assets/css/layout.css основного сайта
════════════════════════════════ */
.header {
  position: sticky; top: 0; z-index: 200;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.header-top {
  display: flex; align-items: stretch; justify-content: center;
  padding: 0 40px; height: 60px;
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: "PT Sans", "Open Sans", Arial, sans-serif;
  font-size: 31px; font-weight: 700; line-height: 40px; color: #000;
  text-decoration: none;
  display: flex; align-items: center;
  margin-right: 32px;
  white-space: nowrap;
}
.logo span { color: var(--accent); }
.eco-tabs { display: flex; align-items: center; gap: 6px; }
.eco-tab {
  font-size: 13px; font-weight: 500; color: var(--text-2);
  padding: 7px 16px;
  text-decoration: none;
  display: flex; align-items: center;
  position: relative;
  white-space: nowrap;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.eco-tab:hover { color: var(--text); }
.eco-tab.active { color: #fff; font-weight: 600; background: var(--accent); }

/* мобильный select вместо строки эко-табов — скрыт на десктопе */
.eco-select { display: none; }

.stripes { display: flex; flex-direction: column; }
.stripes hr { height: 5px; margin: 0 0 2px; border: none; }
.stripes hr:nth-child(1) { background: #1b5366; }
.stripes hr:nth-child(2) { background: #c80600; }
.stripes hr:nth-child(3) { background: #fe7a24; }
.stripes hr:nth-child(4) { background: #00aff5; margin-bottom: 0; }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
footer { background: var(--dark); padding: 24px 40px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-top: auto; flex-shrink: 0; }
.foot-logo { font-size: 15px; font-weight: 800; color: #fff; text-decoration: none; }
.foot-logo span { color: var(--accent); }
footer p { font-size: 13px; color: rgba(255,255,255,0.3); }

@media (max-width: 640px) {
  .header-top { padding: 0 16px; height: 52px; justify-content: flex-start; }
  .logo { font-size: 20px; line-height: 28px; margin-right: 14px; }

  .eco-tabs { display: none; }
  .eco-select { display: flex; align-items: center; flex: 1; min-width: 0; }
  .eco-select .custom-select-trigger {
    padding: 7px 12px; font-size: 12px; font-weight: 600;
    border-radius: 8px; border-color: transparent; background: var(--bg-soft);
  }
  .eco-select .custom-select-panel { left: auto; right: 0; width: 220px; }

  footer { padding: 20px 16px; justify-content: center; text-align: center; }
}
