@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #eee;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

.wrapper {
  background: #fff;
  /*border: 4px solid #F47D2C;*/
  min-width: 320px;
  width: 100%;
}

.content-area {
  margin: 0 auto;
  max-width: 1024px;
}

header {
  background: #F47D2C;
  margin-bottom: 30px;
  padding: 3% 0 1%;
  width: 100%;
}

.logo {
  margin-left: 4%;
}

.top-nav {
  position: relative;
}

.top-nav ul li{
  display: none;
  font-size: 0.875em;
  list-style: none;
  padding: 4%;
}

.top-nav.show-nav ul li {
  display: block;
}

.top-nav ul li a {
  color: #fff;
  text-decoration: none;
}

.top-nav ul li a.active, .top-nav ul li a:hover {
  font-weight: 700;
}

.icon {
  color: #fff;
  display: block;
  position: absolute;
  right: 4%;
  top: -30px;
}

.product-name, .price {
  text-align: center;
}

.product-name, .buy-btn {
  font-weight: 700;
}

.product-name {
  color: #F47D2C;
  font-size: 3.125em;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.desc {
  color: #444;
  font-size: 0.75em;
  font-weight: 400;
  line-height: 1.75;
  margin: 0 auto;
  margin-bottom: 30px;
  text-align: center;
  width: 90%;
}

.price {
  color: #646464;
  font-size: 1em;
  font-weight: 400;
  margin-bottom: 10px;
}

.buy-btn {
  background: #F47D2C;
  border: 2px solid #F47D2C;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 0.875em;
  font-weight: 700;
  height: 30px;
  margin: 0 auto;
  margin-bottom: 30px;
  transition: all .5s;
  width: 100px;
}

.buy-btn:hover {
  background: #fff;
  color: #F47D2C;
  transition: all .5s;
}

.slideshow-container {
  margin: 0 auto;
  max-width: 300px;
  position: relative;
}

.slides {
  margin: 0 auto;
}

.prev, .next, .indicators {
  background: #F47D2C;
  border-radius: 50%;
  cursor: pointer;

}

.prev, .next {
  border: none;
  color: #fff;
  height: 30px;
  opacity: 0.5;
  position: absolute;
  top: 50%;
  width: 30px;
}

.prev:hover, .next:hover {
  opacity: 1;
  transition: all .5s;
}

.prev {
  left: -2%;
}

.next {
  right: -2%;
}

.indicators-container {
  margin-bottom: 30px;
  text-align: center;
}

.indicators {
  display: inline-block;
  height: 10px;
  width: 10px;
}

footer {
  background: #F47D2C;
  padding: 2% 0;
}

footer p {
  color: #fff;
  font-size: 0.6875em;
  text-align: center;
}

@media screen and (min-width: 481px) {
  .desc {
    width: 80%;
  }

  .prev {
    left: -12%;
  }

  .next {
    right: -12%;
  }
}

@media screen and (min-width: 768px) {
  body {
    font-size: 18px;
  }

  header {
    padding: 2% 0 1%;
  }

  .top-nav ul li{
    padding: 2% 4%;
  }

  .icon {
    top: -34px;
  }

  .flex-col {
    display: flex;
  }

  .left-col, .right-col {
    width: 50%;
  }

  .product-name {
    margin-bottom: 40px;
  }

  .desc {
    margin-bottom: 60px;
  }
}

@media screen and (min-width: 1024px) {
  body {
    font-size: 22px;
  }

  header {
    margin-bottom: 60px;
    padding: 1%;
  }

  header .content-area {
    display: flex;
    margin: 0 auto;
  }

  .logo-area {
    padding-top: 1%;
    width: 40%;
  }

  .nav-area {
    width: 60%;
  }

  .top-nav ul li {
    display: inline-block;
  }

  .icon {
    display: none;
  }

  .desc {
    width: 70%;
  }

  .buy-btn {
    font-size: 0.875em;
    height: 40px;
    width: 120px;
  }
}

@media screen and (min-width: 1440px) {
  .logo-area {
    margin-left: 70px;
  }
}
