body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #121212;
  font-weight: 400;
  margin: 0;
  padding: 0;
}
#slider {
  width: 100%;
  height: 750px;
  position: relative;
}
#layer {
  width: 100%;
  height: 700px;
  background-color: rgba(96, 95, 94, 0.2);
  position: absolute;
}
#banner {
  width: 215vh;
  object-fit: cover;
  height: 700px;
}
#floting-text-box {
  text-align: center;
  position: absolute;
  margin-top: -300px;
  margin-left: 600px;
  z-index: 1;
}
#floting-text-box h1 {
  font-size: 52px;
  line-height: 68px;
  color: white;
  font-weight: 400;
}
#floting-text-box h4 {
  font-weight: 400;
  font-size: 16px;
  line-height: 29px;
  color: rgb(255, 255, 255, 0.75);
  margin-top: -20px;
  margin-bottom: 35px;
}
#floting-text-box a {
  background-color: transparent;
  padding: 14px 35px;
  border: 1px solid white;
  border-radius: 1px;
  color: white;
  font-size: 14px;
  transition: transform 0.2s;
  text-decoration: none;
}
#floting-text-box a:hover {
  cursor: pointer;
  outline: 1px solid white;
}
#product-list {
  width: 70%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 10px;
  margin-top: 40px;
}
.card:hover {
  cursor: pointer;
}
.card {
  overflow: hidden;
}
.img-box {
  height: 400px;
  overflow: hidden;
  margin-bottom: 10px;
}
.card img {
  width: 100%;
  height: 100%;
  transition: 0.5s all ease-in-out;
  overflow-y: hidden;
  object-fit: cover;
}
.card img:hover {
  transform: scale(1.05);
}
.card button {
  position: absolute;
  border-radius: 50%;
  border: none;
  background-color: white;
  height: 32px;
  width: 32px;
  margin-top: 3px;
  font-size: 20px;
  z-index: 1;
}
.card button:hover {
  cursor: pointer;
}
.fa-heart-o {
  z-index: 1;
  position: absolute;
  margin-left: -10px;
  margin-top: -8px;
  color: #c9ac92;
}
.fa-heart {
  z-index: 1;
  position: absolute;
  margin-left: -10px;
  margin-top: -8px;
  color: #c9ac92;
}
.prod-title {
  font-size: 13px;
  font-weight: 400;
  line-height: 17px;
  color: #121212;
}
.prod-price {
  font-size: 14x;
  font-weight: 400;
  line-height: 17px;
  color: #121212;
}
#shop {
  text-align: center;
  font-weight: 400;
  font-size: 40px;
  line-height: 52px;
  color: #121212;
  margin-top: 80px;
  margin-bottom: -60px;
}
#shop-social {
  width: 50%;
  margin: auto;
  text-align: left;
  font-weight: 400;
  font-size: 52px;
  line-height: 52px;
  color: #121212;
  margin-top: 80px;
  margin-bottom: -20px;
}
#pc {
  text-align: center;
  margin-top: 80px;
  font-weight: 400;
  font-size: 16px;
  line-height: 29px;
  color: rgba(18, 18, 18, 0.75);
  margin-bottom: 50px;
}
#grid-img-list {
  width: 70%;
  margin: auto;
}
#grid-img-list-shop-social {
  width: 50%;
  margin: auto;
}
#shop-feed-list {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(3, auto);
  grid-template-areas:
    "A A B C D"
    "A A E F F"
    "G H I F F";
  gap: 10px;
  margin-bottom: 10px;
}
#shop-feed-list > div {
  display: grid;
  overflow: hidden;
}
#shop-feed-list > div:nth-child(1) {
  grid-area: A;
}
#shop-feed-list > div:nth-child(2) {
  grid-area: B;
}
#shop-feed-list > div:nth-child(3) {
  grid-area: C;
}
#shop-feed-list > div:nth-child(4) {
  grid-area: D;
}
#shop-feed-list > div:nth-child(5) {
  grid-area: E;
}
#shop-feed-list > div:nth-child(6) {
  grid-area: F;
}
#shop-feed-list > div:nth-child(7) {
  grid-area: G;
}
#shop-feed-list > div:nth-child(8) {
  grid-area: H;
}
#shop-feed-list > div:nth-child(9) {
  grid-area: I;
}
.grid-img {
  width: 100%;
  transition: 0.5s all ease-in-out;
  z-index: 1;
}
.grid-img:hover {
  cursor: pointer;
  transform: scale(1.05);
}
#more {
  display: block;
  margin: auto;
  text-align: center;
  font-size: 13px;
  color: #585a65;
  font-weight: 900;
  border: none;
  background-color: transparent;
  padding: 0 0 5px 0;
  border-bottom: 4px solid #585a65;
  margin-top: 20px;
  margin-bottom: 80px;
}
#more:hover {
  cursor: pointer;
  color: #9d9ea4;
  border-bottom: 4px solid #9d9ea4;
}
@media all and (min-width: 1025px) {
  #banner {
    width: 100%;
  }
  #layer {
    width: 100%;
    height: 700px;
  }
}
@media all and (min-width: 769px) and (max-width: 1024px) {
  #banner {
    width: 250vh;
  }
  #floting-text-box {
    margin-left: 350px;
  }
  #product-list {
    width: 90%;
  }
  .img-box {
    height: 375px;
  }
  #grid-img-list {
    width: 90%;
  }
  #grid-img-list-shop-social {
    width: 70%;
  }
  #shop-social {
    width: 70%;
    font-size: 52px;
  }
}
@media all and (min-width: 427px) and (max-width: 768px) {
  #banner {
    width: 100%;
  }
  #floting-text-box {
    margin-left: 220px;
  }
  #product-list {
    width: 90%;
    grid-template-columns: repeat(3, 1fr);
  }
  .img-box {
    height: 325px;
  }
  #grid-img-list {
    width: 90%;
  }
  #grid-img-list-shop-social {
    width: 80%;
  }
  #shop-social {
    width: 80%;
    font-size: 42px;
    margin-bottom: -40px;
  }
}
@media all and (min-width: 376px) and (max-width: 426px) {
  #banner {
    width: 105vh;
    height: 430px;
  }
  #layer {
    width: 105vh;
    height: 430px;
  }
  #floting-text-box {
    margin-top: -350px;
    margin-left: 100px;
  }
  #floting-text-box h1 {
    font-size: 32px;
  }
  #product-list {
    margin-top: -250px;
    width: 90%;
    grid-template-columns: repeat(2, 1fr);
  }
  .img-box {
    height: 290px;
  }
  #shop {
    font-size: 30px;
    margin-top: 30px;
    margin-bottom: -70px;
  }
  #pc {
    font-size: 14px;
    margin-bottom: 30px;
  }
  #grid-img-list {
    width: 90%;
  }
  #grid-img-list-shop-social {
    width: 90%;
  }
  #shop-social {
    width: 90%;
    font-size: 42px;
    margin-bottom: -50px;
  }
  #shop-feed-list {
    margin-bottom: 30px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(auto, auto);
    grid-template-areas:
      "A A"
      "A A"
      "B C"
      "D E"
      "F F"
      "F F"
      "G H"
      "I I";
    gap: 0px;
    margin-bottom: 10px;
  }
}
@media all and (max-width: 376px) {
  #banner {
    width: 100vh;
    height: 430px;
  }
  #layer {
    width: 100vh;
    height: 430px;
  }
  #floting-text-box {
    margin-top: -350px;
    margin-left: 80px;
  }
  #floting-text-box h1 {
    font-size: 32px;
  }
  #product-list {
    margin-top: -250px;
    width: 90%;
    grid-template-columns: repeat(2, 1fr);
  }
  .img-box {
    height: 255px;
  }
  #shop {
    font-size: 30px;
    margin-top: 30px;
    margin-bottom: -70px;
  }
  #pc {
    font-size: 14px;
    margin-bottom: 30px;
  }
  #grid-img-list {
    width: 90%;
  }
  #grid-img-list-shop-social {
    width: 90%;
  }
  #shop-social {
    width: 90%;
    font-size: 42px;
    margin-bottom: -50px;
  }
  #shop-feed-list {
    margin-bottom: 30px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(auto, auto);
    grid-template-areas:
      "A A"
      "A A"
      "B C"
      "D E"
      "F F"
      "F F"
      "G H"
      "I I";
    gap: 0px;
    margin-bottom: 10px;
  }
}
