.shell-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04), 0 4px 18px rgba(0, 0, 0, 0.08);
}

.shell-header__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 30px;
}

.shell-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.shell-brand img {
  height: 42px;
  width: auto;
  display: block;
}

.shell-menu-btn {
  display: none !important;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #e5e5e5;
  background: #fff;
  color: var(--primary-color, #b80a0a);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  cursor: pointer;
}

.shell-actions {
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.shell-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid #e7e7e7;
  background: #fff;
  color: #222;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.shell-pill:hover {
  color: var(--primary-color, #b80a0a);
  text-decoration: none;
}

.shell-pill--solid {
  background: var(--primary-color, #b80a0a);
  border-color: var(--primary-color, #b80a0a);
  color: #fff;
}

.shell-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #2ea6df;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(46, 166, 223, 0.3);
  border: 1px solid #1f7cad;
}

.shell-footer {
  background: var(--primary-color, #b80a0a);
  color: #fff;
  padding: 40px 0 22px;
  text-align: center;
}

.shell-footer__logo {
  height: 74px;
  width: auto;
  display: block;
  margin: 0 auto 18px;
}

.shell-footer__copy {
  max-width: 980px;
  margin: 0 auto;
  line-height: 1.65;
  font-size: 1rem;
}

.shell-footer__line {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 0.95rem;
}

@media (max-width: 767px) {
  .shell-header__inner {
    flex-wrap: wrap;
    align-items: center;
    padding: 10px 0;
    flex-direction: row-reverse;
  }

  .shell-menu-btn {
    display: inline-flex !important;
    margin-left: auto;
  }

  .shell-actions {
    display: none !important;
    width: 100%;
    order: 3;
    padding: 10px 0 4px;
    justify-content: flex-start;
    align-items: stretch;
    gap: 8px;
  }

  .shell-header.is-open .shell-actions {
    display: flex !important;
    flex-direction: column;
  }

  .shell-pill {
    width: 100%;
    min-height: 36px;
    padding: 0 14px;
    font-size: 0.88rem;
    justify-content: flex-start;
  }

  .shell-icon {
    width: 100%;
    border-radius: 999px;
  }

  .shell-brand {
    order: 1;
  }
}
