@charset "utf-8";

/* ==============================
  Products Common
============================== */

body {
  background: #f7f8fb;
  color: #111;
}

#products_wrap {
  min-height: 100vh;
}

.products_header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  padding: 0 40px;
  border-bottom: 1px solid rgba(17,17,17,.06);
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(18px);
  box-sizing: border-box;
}

.products_logo {
  color: #111;
  font-size: 20px;
  font-weight: 900;
  text-decoration: none;
}

.products_nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.products_nav a {
  color: #666;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.products_nav a.active,
.products_nav a:hover {
  color: #111;
}

/* ==============================
  Mobile
============================== */

@media (max-width: 767px) {

  .products_header {
    height: 64px;
    padding: 0 18px;
  }

  .products_nav {
    gap: 14px;
  }

  .products_nav a {
    font-size: 13px;
  }

}
