/* for campaigns */

#campaigns {
  height: 185px;
  position: relative;
}

#campaigns > a {
  background-repeat: no-repeat;
}

#campaigns > .campaign {
  height: 100%;
  width: 100%;
  position: absolute;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s;
  z-index: 1;
}

#campaigns > .campaign.campaign-active {
  opacity: 1;
  z-index: 2;
}

#campaigns > .campaign > .campaign-story {
  width: 100%;
  max-width: 1160px;
  margin: 36px auto 0;
  padding-left: 23px;
  font-size: 16px;
  line-height: 32px;
  font-weight: 100;
  color: #070707;
  white-space: pre;
}

#campaigns > .dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  cursor: pointer;
  z-index: 3;
}

#campaigns > .dots > .dot {
  width: 10px;
  height: 10px;
  margin: 0 11px;
  border-radius: 50%;
  background-color: white;
}

#campaigns > .dots > .dot.dot-active {
  background-color: #8b572a;
}

/* for products */

#products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  grid-gap: 24px 6px;
  justify-content: center;
  justify-items: center;
  margin: 0 auto;
  max-width: 1160px;
  padding: 15px 30px;
}

.product img {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 8px;
}

.product img:hover {
  animation: toScale 3s;
  animation-fill-mode: forwards;
}

@keyframes toScale {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.05);
    opacity: 0.7;
  }
}

.product-colors,
.product-name,
.product-price {
  margin-top: 1em;
}

.product-colors {
  display: flex;
  flex-direction: row;
  margin-top: 8px;
}

.color {
  display: block;
  width: 12px;
  height: 12px;
  margin-right: 6px;
  border-radius: 5px;
}

.color:hover {
  cursor: pointer;
}

.product-name {
  margin-top: 10px;
  line-height: 14px;
  font-size: 12px;
  letter-spacing: 2.4px;
}

.product-price {
  margin-top: 10px;
  line-height: 14px;
  font-size: 12px;
  letter-spacing: 2.4px;
}

#detect-loading > h2 {
  padding-bottom: 140px;
  margin-top: 28px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

/* media query for campaigns */
@media (min-width: 768px) {
  #campaigns {
    height: 500px;
  }
  #campaigns > .campaign > .campaign-story {
    margin: 166px auto 0;
    padding-left: 27px;
    font-size: 30px;
    line-height: 57px;
    white-space: pre;
  }

  #products {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 50px 40px;
    padding: 70px 24px;
  }

  .product-colors {
    margin-top: 20px;
  }
  .color {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    box-shadow: 0px 0px 1px #bbbbbb;
  }
  .product-name,
  .product-price {
    margin-top: 20px;
    line-height: 24px;
    font-size: 20px;
    letter-spacing: 4px;
    color: #3f3a3a;
  }
}

@media (min-width: 1200px) {
  #products {
    max-width: 1160px;
  }
}
