/* color */
/* font */
/* transition */
.categoryList a,
.productTopList .productItem .imgBox:after,
.productTopList .productItem .imgBox img,
.productTopList .productItem .title,
.productTopList .productItem .btnBox,
.productList .imgBox:after,
.productList .imgBox img,
.productList .title,
.productList .btnBox,
.contentBox.info .topBox .leftBox .dotList li,
.toolbar .btn span {
  transition: all 0.5s ease-in-out;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.categoryList {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

@media (max-width: 640px) {
  .categoryList {
    flex-wrap: wrap;
  }
}

.categoryList a {
  color: #fff;
  font-weight: 500;
  padding: 10px 40px;
  background-color: #3d6933;
  border-radius: 18px;
}

@media (max-width: 640px) {
  .categoryList a {
    padding: 5px 25px;
  }
}

@media (min-width: 1181px) {
  .categoryList a:hover {
    color: #3d6933;
    background-color: #fff22b;
  }
}

.categoryList a.current {
  color: #3d6933;
  background-color: #fff22b;
}

.productTopList {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 640px) {
  .productTopList {
    display: none;
  }
}

.productTopList .productItem {
  align-items: center;
  display: flex;
  flex-direction: column;
  position: relative;
}

@media (min-width: 1181px) {
  .productTopList .productItem:hover .imgBox:after {
    content: "";
    position: absolute;
    opacity: 1;
  }

  .productTopList .productItem:hover .imgBox img {
    scale: 1.05;
  }

  .productTopList .productItem:hover .title {
    color: #ed7541;
  }
}

.productTopList .productItem .imgBox {
  overflow: hidden;
  position: relative;
}

.productTopList .productItem .imgBox:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("../assets/images/deco_product.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
}

.productTopList .productItem .link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.productTopList .productItem .title {
  color: #3d6933;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 3px;
  line-height: 1.2;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.productTopList .productItem .btnBox {
  margin-top: 20px;
  justify-content: flex-end;
}

@media (max-width: 640px) {
  .productTopList .productItem .btnBox {
    opacity: 0;
  }
}

.productList {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  row-gap: 60px;
}

.productList.mobile {
  display: none;
}

@media (min-width: 641px) {
  .productList.pc, .productTopList.pc {
    display: none;
  }
  .productList.mobile {
    display: grid;
  }
}

@media (max-width: 1024px) {
  .productList {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .productList {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 0px;
  }
}

.productList .productItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

@media (min-width: 1181px) {
  .productList .productItem:hover .imgBox:after {
    content: "";
    position: absolute;
    opacity: 1;
  }

  .productList .productItem:hover .imgBox img {
    scale: 1.05;
  }

  .productList .productItem:hover .title {
    color: #ed7541;
  }

  .productList .productItem:hover .btnBox {
    opacity: 1;
  }
}

.productList .link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.productList .imgBox {
  margin-bottom: 15px;
  overflow: hidden;
  position: relative;
}

.productList .imgBox:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("../assets/images/deco_product.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
}

.productList .title {
  color: #3d6933;
  font-size: 20px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1.2;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.productList .btnBox {
  margin-top: 20px;
  justify-content: flex-end;
  opacity: 0;
}

.insContent {
  position: relative;
}

.insContent:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("../assets/images/ins_product_bg.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
  left: 0;
  top: 0;
  pointer-events: none;
}

@media (max-width: 640px) {
  .insContent:after {
    background-size: cover;
    background-repeat: repeat;
  }
}

.contentBox.info .topBox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-bottom: 120px;
}

@media (max-width: 820px) {
  .contentBox.info .topBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
  }
}

.contentBox.info .topBox .leftBox {
  max-width: 620px;
  position: relative;
}

@media (max-width: 1280px) {
  .contentBox.info .topBox .leftBox {
    max-width: 580px;
  }
}

@media (max-width: 1180px) {
  .contentBox.info .topBox .leftBox {
    max-width: 400px;
  }
}

@media (max-width: 640px) {
  .contentBox.info .topBox .leftBox {
    padding-top: 0;
  }
}

.contentBox.info .topBox .leftBox .imgMain {
  max-width: 100%;
}

.contentBox.info .topBox .leftBox .imgMain img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contentBox.info .topBox .leftBox .dotList {
  position: absolute;
  right: 15%;
  bottom: 15%;
  display: flex;
  flex-direction: column;
}

.contentBox.info .topBox .leftBox .dotList li {
  width: 10px;
  height: 10px;
  background-color: #ed7541;
  border-radius: 50%;
}

.contentBox.info .topBox .leftBox .dotList li.slick-active {
  height: 40px;
  border-radius: 25px;
  background-color: #fff22b;
}

.contentBox.info .topBox .leftBox .dotList button {
  display: none;
}

.contentBox.info .topBox .rightBox {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contentBox.info .topBox .rightBox .title {
  color: #344e45;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 3.6px;
  margin-bottom: 15px;
}

.contentBox.info .topBox .rightBox .category {
  color: #886d58;
  font-weight: 700;
  letter-spacing: 2.4px;
  margin-bottom: 20px;
}

.contentBox.info .topBox .rightBox .priceList {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.contentBox.info .topBox .rightBox .priceList .priceItem {
  color: #fff;
  border-radius: 16px;
  padding: 5px 40px;
  background-color: #8fb572;
}

.contentBox.info .topBox .rightBox .text {
  color: #886d58;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.8px;
  line-height: 1.72222;
}

.contentBox.info .albumList {
  display: none;
}

.toolbar {
  padding: 20px 0;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

@media (max-width: 640px) {
  .toolbar {
    flex-wrap: wrap;
    padding: 10px 0;
  }
}

.toolbar .btn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 900;
  font-size: 14px;
  color: #593f29;
  letter-spacing: 0.84px;
}

@media (max-width: 640px) {
  .toolbar .btn {
    width: 50%;
    margin: 10px 0;
  }
}

@media (min-width: 1181px) {
  .toolbar .btn:hover span {
    transform: translateX(15px);
  }
}