/* mobile.css */
.container {
  width: 100% /* 가변 최대 1200px */;
  /* background: #f00; */
  margin: 0 auto;
}
#main_header {
  text-align: center;
}
#main_header h1 { 
  position: fixed;
  left: 50%; top: 0px;
  padding-top: 15px;
  transform: translateX(-50%);
  z-index: 9;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
}
#main_gnb {
  margin-top: 10px;
}
#util {
  margin-bottom: 10px;
}
#util li:nth-child(1){
  display: none;
}
#util li:nth-child(2){
  display: none;
}
#util li:nth-child(4){
  display: none;
}
#util span {
  display: none;
}
.nav_group {
  position: fixed;
  left: 0; top: 72px;
  width: 100%;
  height: 0px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  /* opacity: 0; */
  overflow: hidden;
  transition: 0.4s;
  z-index: 9;
  /* display: none; */
}
.nav_group li:first-child {
  margin-top: 20px;
}
.nav_group li {
  margin: 1.4em 0;
}
.nav_group li:active {
  font-weight: bold;
}
.nav_group.show {
  height: 370px;
}

.nav_group + #toggle i {
  color: #fff;
}
.nav_group.show + #toggle i {
  color: #666;
}
#toggle {
  position: fixed;
  left: 20px; top: 24px;
  z-index: 10;
}
#toggle i { 
  color: #fff;
  font-size: 24px;
}
#util i {
  font-size: 24px;
}
#util .fa-user {
  position: fixed;
  right: 20px; top: 24px;
  font-size: 24px;
  color: #fff;
}
/* 타이틀 */
#title {
  background-image: url("../images/main4.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
  margin-bottom: 50px;
}
/* 베스트 */
#best ul li {
  float: left;
  margin-right: 15px;
  margin-bottom: 50px;
}
#best ul li:nth-child(5) {
  margin-right: 0;
}
#best ul li:last-child {
  margin-right: 0;
}
/* 추천상품 */
#recommend {
  position: relative;
  clear: both;
  background-image: url("../images/main1.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 500px;
}
#recommend .title {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
#recommend h2, p {
  text-align: center;
  line-height: 24px;
}
.cta {
  width: 160px; height: 50px;
  background: #000;
  color: #fff;
  font-size: 16px;
  text-align: center;
  line-height: 50px;
  display: inline-block;
  margin-top: 30px;
}
.cta:hover {
  background: #fff;
  color: #000;
  transition: 0.4s;
}
/* 리미티드 */
#limited ul {
  overflow: hidden;
  width: 100%;
  float: left;
  margin-bottom: 50px;
}
#limited li img {
  width: 100%;
}
#limited ul li a:active {
  font-weight: bold;
}
#limited .title {
  display: block;
  text-align: center;
  /* font-size: 1.1em; */
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #777777;
}
#limited .price {
  display: block;
  text-align: center;
  /* color: red; */
  /* font-size: 1.1em; */
  font-weight: bold;
  margin-bottom: 50px;
  text-decoration: none;
}
/* 푸터 */
#main_footer .container {
  padding: 10px;
}