@charset "utf-8";

:root{
  --main-yellow: #FFD900;
  --main-pink: #EE9DC2;
  --nav-color: #E868A3;
}

/*header*/
header .ham{
  display: none;
}



header {
  margin: 0 160px;
  padding-top: 85px;
}

header nav{
  display: flex;
  justify-content: space-between;
  align-items: center; 
}

.fixed-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fee980b7;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 17px 30px;
}

main {
  padding-top: 85px; /* nav 높이에 맞춰 조정 */
}

header .logo{
  width: 188px;
}

header .logo img{
  width: 100%;
}

header .gnb{
  display: flex;
  gap: 69px;
  text-align: center;
}

header .gnb > li{
  position: relative;
}

header .gnb > li > a{
  font-size: 30px;
  color: var(--nav-color);
  font-family: "Jersey 20", sans-serif;
  font-weight: 400;
  font-style: normal;
}

header .gnb > li::before{
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  background-color: var(--nav-color);
  border-radius: 50%;
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.5s;
}

header .gnb > li:hover::before{
  opacity: 1;
}


header .depth2{
  width: 180px;
  text-align: center;
  padding: 29px 33px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.34);
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 888;
}

header .depth2 li{
  padding-bottom: 23px;
}

header .depth2 li:last-child{
  padding: 0;
}

header .depth2 li a{
  font-size: 22px;
  color: var(--nav-color);
  font-family: "Jersey 20", sans-serif;
  font-weight: 400;
  font-style: normal;
  transition: all 0.3s;
}

header .depth2 li a:hover{
  color: #c03475;
}

header .shortcut{
  display: flex;
  gap: 38px;
}

header .shortcut > div{
  font-size: 30px;
  color: var(--nav-color);
  transition: color 0.3s;
}

header .shortcut > div:hover{
  color: #c03475;
}

@media(max-width:1400px){

  header .logo{
  width: 150px;
  }

  header .gnb{
    gap: 55px;
  }

  header .gnb > li > a{
    font-size: 23px;
  }

  header .shortcut > div{
    font-size: 23px;
  }
}

@media(max-width:1200px){

  header .logo{
  width: 150px;
  }

  header .gnb{
    gap: 30px;
  }

  header .gnb > li > a{
    font-size: 18px;
  }

  header .shortcut > div{
    font-size: 23px;
  }
}

@media(max-width:1024px){

  header{
    margin: 0 55px;
  }

  header .logo{
  width: 214px;
  }

  header .gnb{
    display: none;
  }

  header .ham{
    display: block;
  }

  header .shortcut > div{
    font-size: 35px;
  }

}

@media(max-width:765px){


  header{
    margin: 0 50px;
  }

  header .logo{
  width: 177px;
  }

  header .gnb{
    display: none;
  }

  header .ham{
    display: block;
  }

  header .shortcut > div{
    font-size: 35px;
  }

}

/*mobile-menu*/
.mobile-menu{
  background-color: #FFF2B6;
  position: absolute;
  top: 0;
  left: -200%;
  width: 100%;
  height: 200%;
  padding: 250px 128px;
  z-index: 999;
}

.mobile-menu .close{
  position: absolute;
  top: 115px;
  right: 110px;
  width: 30px;
}

.mobile-menu .close img{
  width: 100%;
}

.mobile-menu .mb-gnb{
  border-top: 2px solid var(--nav-color);
  border-bottom: 2px solid var(--nav-color);
  padding: 70px 0;

}

.mobile-menu .mb-gnb > li{
  margin-bottom: 70px;
}

.mobile-menu .mb-gnb > li:last-child{
  margin: 0;
}



.mobile-menu .mb-gnb > li > a{
  font-size: 30px;
  color: var(--nav-color);
}

.mobile-menu .mb-depth2{
  margin: 30px 0 0 30px;
}

.mobile-menu .mb-depth2 li{
  padding: 15px 0;
}

.mobile-menu .mb-depth2 li a{
  color: #c03475;
  font-size: 25px;
}

/*footer*/
footer{
  height: 860px;
  background: url(../img/bg/footer-main-bg.png) no-repeat center top 0 / cover;
  padding: 323px 188px 0 188px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

footer .f-left .f-logo{
  width: 190px;
  margin-bottom: 65px;
}

footer .f-left .f-logo img{
  width: 100%;
}

footer .f-left .info{
  color: #AC8137;
  font-size: 16.1px;
}

footer .f-left .info h3{
  font-family: 'Paperlogy-7Bold';
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  margin-bottom: 19px;
}

footer .f-left .info p{
  padding: 7px 0;
}

footer .f-left .info span{
  font-family: 'Paperlogy-6SemiBold';
  font-weight: 600;
  font-style: normal;
  padding-right: 5px;
}

footer .f-left ul{
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

footer .f-left ul li{
  position: relative;
}

footer .f-left ul li::before{
  content: "";
  display: block;
  height: 11.71px;
  width: 1px;
  position: absolute;
  top: 4px;
  right: -8px;
  background-color: #AC8137;
  opacity: 0.7;
}

footer .f-left ul li:last-child::before{
  display: none;
}

footer .f-left ul li a{
  font-size: 13px;
  color: #AC8137;
}

footer .f-right{
  text-align: right;
  font-size: 16.48px;
  color: #AC8137;
}

footer .f-right .sns-icon{
  display: flex;
  justify-content: end;
  gap: 25px;
  margin-bottom: 34px;
}

footer .f-right .sns-icon li{
  width: 51px;
}

footer .f-right .sns-icon li:hover img{
  opacity: 1;
}

footer .f-right .sns-icon li img{
  width: 100%;
  opacity: 0.5;
  transition: all 0.4s;
}

footer .f-right h3{
  font-family: 'Paperlogy-7Bold';
  font-weight: 700;
  font-style: normal;
  margin-bottom: 21px;
}

footer .f-right .info p{
  padding: 6px 0;
}

footer .f-right .info span{
  font-family: 'Paperlogy-6SemiBold';
  font-weight: 600;
  font-style: normal;
  padding-right: 5px;
}

@media(max-width:1260px){

  footer{
  height: 1100px;
  background: url(../img/bg/footer-tablet-bg.png) no-repeat center top 0 / cover;
  padding: 260px 120px 0 120px;
}

  footer .f-left{
    width: 100%;
  }

  footer .f-right{
    width: 100%;
  }

  footer .f-left .f-logo{
    width: 156px;
    margin-bottom: 60px;
  }

  footer .f-right{
  text-align: left;
  font-size: 16.48px;
  color: #AC8137;
}

footer .f-right .sns-icon{
  display: flex;
  justify-content: flex-start;
  gap: 25px;
  margin-bottom: 34px;
}
}


@media(max-width:765px){

  footer{
  height: 850px;
  background: url(../img/bg/footer-mobile-bg.png) no-repeat center top 0 / cover;
  padding: 185px 65px 0 65px;
}

  footer .f-left .f-logo{
    width: 127px;
    margin-bottom: 50px;
  }

footer .f-left .info{
  font-size: 13.72px;
}

footer .f-right .sns-icon li{
  width: 49px;
}

footer .f-right{
  font-size: 13.72px;
}

}

/*dtail-page*/

.product-detail-wrap{
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.product-detail{
  position: fixed;
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
  width: 448px;
  height: 800px;
  background-color: #FFEE9E;
  border-radius: 35.8px;
  z-index: 999;
  overflow: hidden;
}

.product-detail h2{
  margin-top: 40px;
  text-align: center;
  font-size: 25px;
  color: #6E5428;
  font-family: 'Paperlogy-6SemiBold';
  font-weight: 600;
  font-style: normal;
}

.product-detail .close{
  width: 24px;
  height: 24px;
  position: absolute;
  top: 40px;
  right: 40px;
  cursor: pointer;
}

.product-detail .close img{
  width: 100%;
}

.product-detail .product-img{
  width: 292px;
  height: 292px;
  border-radius: 50%;
  background-color: #fff;
  margin: 80px auto 65px auto;
}

.product-detail .product-img img{
  width: 100%;
}

.product-detail .beverage-img{
  width: 292px;
  height: 292px;
  border-radius: 50%;
  background-color: #fff;
  margin: 80px auto 65px auto;
}

.product-detail .beverage-img img{
    width: 50%;
    display: block;
    margin: 0 auto;
}


.product-detail .product-txt{
  width: 100%;
  background-color: #fff;
  padding: 25px 35px 120px 35px;
  font-size: 17.18px;
}

.product-detail .product-txt .intro{
  margin-bottom: 35px;
}

.product-detail .product-txt h3{
  color: #A38859;
  font-family: 'Paperlogy-6SemiBold';
  font-weight: 600;
  font-style: normal;
  margin-bottom: 14px;
}

.product-detail .product-txt > div{
  font-size: 15px;
}

.product-detail .product-txt > div > p{
  color: rgba(0, 0, 0, 0.39);
}

.product-detail .product-txt .allergy{
  margin-bottom: 28px;
}

/*top*/
.top{
  width: 80px;
  height: 80px;
  background: #EE9DC2 url(../img/top-arrow.png) no-repeat center;
  background-size: 28px 28px;
  border-radius: 50%;
  box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.1);
  position: fixed;
  bottom: 30px;
  right: 10px;
  z-index: 999;
  cursor: pointer;
}