/* ===== FORCE RESET FOR NAVBAR ONLY ===== */
.gw-top, .gw-top * ,
.gw-bottom, .gw-bottom * {
  all: unset;
  box-sizing: border-box;
}

/* ===== BASIC FONT ===== */
.gw-top, .gw-bottom {
  font-family: Inter, system-ui, -apple-system;
}

/* ===== TOP BAR ===== */
.gw-top {
  background: #fff;
  border-bottom: 1px solid #e6e6e6;
}

.gw-top-inner {
  max-width: 1320px;
  margin: auto;
  height: 74px;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 24px;
}

/* LOGO */
.gw-logo {
  font-size: 28px;
  font-weight: 800;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
}

/* SEARCH */
.gw-search-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
}

.gw-search {
  display: flex;
  align-items: center;
  background: #ededed;
  border-radius: 10px;
  height: 44px;
  width: 100%;
  max-width: 640px;
  padding: 0 14px;
  gap: 12px;
}

.gw-search select,
.gw-search input {
  border: none;
  background: transparent;
  font-size: 14px;
  outline: none;
  color: #000;
}

.gw-search input {
  flex: 1;
}

/* ICONS */
.gw-icons {
  display: flex;
  align-items: center;
  gap: 22px;
}

.gw-icons a {
  font-size: 20px;
  color: #000;
  text-decoration: none;
}

/* ===== BOTTOM NAV ===== */
.gw-bottom {
  background: #fff;
}

.gw-bottom-inner {
  max-width: 1320px;
  margin: auto;
  padding: 0 24px;
}

.gw-menu {
  display: flex;
  justify-content: center;
  gap: 26px;
}

.gw-menu a {
  font-size: 14px;
  color: #000;
  text-decoration: none;
  padding: 16px 0;
  white-space: nowrap;
}

.gw-menu a:hover {
  text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .gw-search-wrap { display: none; }
  .gw-menu {
    overflow-x: auto;
    justify-content: flex-start;
  }
}
