@charset "UTF-8";
/* =========================================================
   HEADER - COMMON
========================================================= */
*, *::before, *::after {
  box-sizing: border-box;
}
.header {
  position: relative;
  width: 100%;
  background: #fff;
  z-index: 999;
  transition: .3s ease;
}
.header a {
  color: #222;
  text-decoration: none;
}
.header a:visited {
  color: #222;
}
.header a:hover {
  color: #d70018;
}
.header i {
  color: #222;
}
/* =========================================================
   INNER
========================================================= */
.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  height: 72px;
  transition: .3s;
}
/* =========================================================
   COMPACT
========================================================= */
.header.compact {
  box-shadow: 0 6px 24px rgba(0, 0, 0, .08);
}
.header.compact .header__inner {
  height: 60px;
}
.header.compact .header-logo img {
  width: 190px;
}
/* =========================================================
   LOGO
========================================================= */
.header-logo {
  flex-shrink: 0;
}
.header-logo img {
  display: block;
  width: 220px;
  height: auto;
  transition: .3s;
}
/* =========================================================
   SEARCH
========================================================= */
.header-search-wrap {
  flex: 1;
  transition: .35s;
}
.header-search {
  margin: 0 32px;
}

.search-form {
  display: flex;
  align-items: center;
  height: 46px;
  border: 1px solid #ddd;
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}
.search-select {
  padding: 0 16px;
  border-right: 1px solid #eee;
}
.search-select select {
  border: none;
  outline: none;
  background: none;
  font-size: 14px;
}
.search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0 16px;
  font-size: 16px;
  transform: scale(0.875);
  transform-origin: left top;
}
.search-button {
  width: 52px;
  border: none;
  background: none;
  cursor: pointer;
}
.search-button i {
  font-size: 20px;
}
select {
  -webkit-appearance: none; 
  appearance: none;         
  background-color: transparent; 
}
/* =========================================================
   ICONS
========================================================= */
.header-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-icons i {
  font-size: 24px;
}
/* =========================================================
   MENU BUTTON
========================================================= */
.menu-wrapper {
  position: relative;
}
.menu-button {
  width: 48px;
  height: 48px;
  margin-left: 20px;
  border: none;
  background: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 10001;
}
.menu-button:focus {
  outline: none;
}
.menu-icon {
  width: 24px;
  text-align: center;
  font-size: 28px;
  transition: transform .25s ease, opacity .25s ease;
}
.menu-button.open .menu-icon {
  transform: rotate(90deg);
}
/* =========================================================
   MENU PANEL
========================================================= */
.menu-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 760px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition:
    opacity .28s ease, transform .28s ease, visibility .28s;
  z-index: 1000;
}
.menu-panel.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
/* =========================================================
   MENU GROUP
========================================================= */
.menu-group {
  padding: 28px;
  border-bottom: 1px solid #f2f2f2;
}
.menu-group:last-child {
  border-bottom: none;
}
.menu-group h3 {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #777;
  text-transform: uppercase;
}
.menu-group a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 52px;
  padding: 12px 0;
  color: #222;
  transition: .2s;
}
.menu-group a span {
  flex: 1;
}
.menu-group a i {
  font-size: 14px;
  color: #bbb;
}
.menu-group a:hover {
  color: #d70018;
  padding-left: 8px;
}
.menu-group a:hover i {
  color: #d70018;
}
/* =========================================================
   MENU BANNER
========================================================= */
.menu-banner {
  padding: 20px;
  border-right: 1px solid #eee;
  background: #fafafa;
}
.menu-banner img {
  display: block;
  width: 90%;
  margin: auto;
  border-radius: 10px;
}
/* =========================================================
   SCROLL BAR
========================================================= */
.menu-panel::-webkit-scrollbar {
  width: 8px;
}
.menu-panel::-webkit-scrollbar-track {
  background: #fafafa;
}
.menu-panel::-webkit-scrollbar-thumb {
  background: #d6d6d6;
  border-radius: 20px;
}
.menu-panel::-webkit-scrollbar-thumb:hover {
  background: #bbb;
}
/* =========================================================
   BODY LOCK
========================================================= */
body.menu-open {
  overflow: hidden;
  touch-action: none;
}
/* =========================================================
   DESKTOP LAYOUT
========================================================= */
@media (min-width:769px) {
  /* ---------------------------------
       Header
    --------------------------------- */
  .header__inner {
    display: flex;
    align-items: center;
    height: 72px;
  }
  .header-logo {
    flex-shrink: 0;
  }
  .header-search-wrap {
    flex: 1;
  }
  .header-search {
    margin: 0 32px;
  }
  .header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .pc-only {
    display: flex;
  }
  /* ---------------------------------
       Menu Button
    --------------------------------- */
  .menu-button {
    margin-left: 20px;
  }
  /* ---------------------------------
       Mega Menu
    --------------------------------- */
  .menu-panel {
    display: grid;
    grid-template-columns: 320px 1fr;
    width: 760px;
    max-height: 80vh;
  }
  .menu-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-content: start;
    background: #fff;
  }
  .menu-group {
    min-height: 100%;
  }
  .menu-group:nth-child(even) {
    border-left: 1px solid #eee;
  }
  /* ---------------------------------
       Banner
    --------------------------------- */
  .menu-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
  }
  .menu-banner img {
    width: 100%;
    max-width: 260px;
    transition: .25s;
  }
  .menu-banner img:hover {
    transform: scale(1.02);
  }
  /* ---------------------------------
       Mobile Search Hidden
    --------------------------------- */
  .menu-search {
    display: none !important;
  }
}
/* =========================================================
   MOBILE LAYOUT
========================================================= */
@media (max-width:768px) {
  /* ---------------------------------
       PC Only
    --------------------------------- */
  .pc-only {
    display: none !important;
  }
  /* ---------------------------------
       Header
    --------------------------------- */
  .header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 9999;
  }
  .header__inner {
    display: grid;
    grid-template-columns: 56px 1fr 56px;
    grid-template-areas:
      "menu logo cart"
      "search search search";
    align-items: center;
    gap: 12px;
    padding: 14px 12px;
    max-width: none;
    height: auto;
  }
  /* ---------------------------------
       Logo
    --------------------------------- */
  .header-logo {
    grid-area: logo;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header-logo img {
    width: 170px;
    max-width: 100%;
  }
  /* ---------------------------------
       Cart
    --------------------------------- */
  .header-icons {
    grid-area: cart;
    justify-self: end;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
  .header-icons a {
    width: 48px;
    height: 48px;
  }
  /* ---------------------------------
       Hamburger
    --------------------------------- */
  .menu-wrapper {
    grid-area: menu;
    justify-self: start;
  }
  .menu-button {
    margin: 0;
    width: 48px;
    height: 48px;
  }
  /* ---------------------------------
       Search
    --------------------------------- */
  .header-search-wrap {
    grid-area: search;
    width: 100%;
    padding: 0;
  }
  .header-search {
    margin: 0;
  }
  .search-form {
    width: 100%;
  }
  .search-select {
    flex: 0 0 130px;
  }
  .search-input {
    min-width: 0;
  }
  /* ---------------------------------
       Mobile Menu
    --------------------------------- */
  .menu-panel {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    border: none;
    border-radius: 0;
    padding-bottom: 60px;
    max-height: none;
  }
  /* ---------------------------------
       Banner
    --------------------------------- */
  .menu-banner {
    border: none;
    padding: 24px;
  }
  /* ---------------------------------
       Content
    --------------------------------- */
  .menu-content {
    display: block;
  }
  .menu-group {
    padding: 24px;
  }
}
/* =========================================================
   MOBILE DETAIL SEARCH
========================================================= */
.menu-search {
  display: none;
}
@media (max-width:768px) {
  .menu-search {
    display: block;
    margin-top: 0;
    background: #fafafa;
    border-top: 8px solid #f6f6f6;
  }
  /* --------------------------
       Header
    -------------------------- */
  .menu-search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: #fafafa;
    cursor: pointer;
    font-size: 17px;
    font-weight: 700;
    color: #222;
    border-bottom: 1px solid #e8e8e8;
  }
  .menu-search-header i {
    transition: .3s;
  }
  .menu-search-header.open i {
    transform: rotate(180deg);
  }
  /* --------------------------
       Body
    -------------------------- */
  .menu-search-body {
    display: none;
    padding: 28px 24px 34px;
    background: #fafafa;
  }
  .menu-search-body.open {
    display: block;
  }
  /* --------------------------
       Block
    -------------------------- */
  .refine-block {
    margin-bottom: 28px;
  }
  .refine-title {
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #777;
  }
  /* --------------------------
       Input
    -------------------------- */
  .refine-block input[type=text], .refine-block select {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    font-size: 15px;
    transition: .25s;
  }
  .refine-block input[type=text]:focus, .refine-block select:focus {
    outline: none;
    border-color: #222;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .08);
  }
  /* --------------------------
       Radio
    -------------------------- */
  .refine-block label {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: calc(50% - 6px);
    height: 46px;
    margin: 0 8px 12px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    font-size: 15px;
    transition: .25s;
    box-sizing: border-box;
  }
  .refine-block label:nth-child(even) {
    margin-right: 0;
  }
  .refine-block input[type=radio] {
    display: none;
  }
  .refine-block label:has(input:checked) {
    background: #222;
    border-color: #222;
    color: #fff;
  }
  /* --------------------------
       Price
    -------------------------- */
  .price-range {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  /* --------------------------
       Button
    -------------------------- */
  .fs-c-button {
    width: 100%;
    height: 56px;
    border: none;
    border-radius: 10px;
    background: #222;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .08em;
    transition: .25s;
  }
  .fs-c-button:hover {
    background: #111;
  }
  .fs-c-button:active {
    transform: scale(.98);
  }
}