@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif
}

html,
body {
  height: 100%;
}

.brand-javascript-daily {
  height: 55px;
  width: 55px;
}

.navbar-nav .nav-link {
  color: #000 !important;
  padding: 0.5rem 0rem !important;
  border-color: transparent;
  margin-left: 1.5rem;
  transition: none
}

.navbar .navbar-toggler:focus {
  box-shadow: none
}

.navbar-nav .nav-link.active,
.border-red {
  border-bottom: 3px solid #b71c1c
}

.navbar-nav .nav-link:hover {
  border-bottom: 3px solid #b71c1c
}

.form-signin {
  width: 100%;
  max-width: 330px;
  padding: 15px;
  margin: auto;
}

.form-signin .checkbox {
  font-weight: 400;
}

.form-signin .form-floating:focus-within {
  z-index: 2;
}

.form-signin input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.product-item {
  min-height: 450px;
  border: none;
  overflow: hidden;
  position: relative;
  border-radius: 0
}

.product-item .product {
  width: 100%;
  height: 350px;
  position: relative;
  overflow: hidden;
  cursor: pointer
}

.product-item .product img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.product-item .product .icons .icon {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.6s ease;
  transform: rotate(180deg);
  cursor: pointer
}

.product-item .product .icons .icon:hover {
  background-color: #b71c1c;
  color: #fff
}

.product-item .product .icons .icon:nth-last-of-type(3) {
  transition-delay: 0.2s
}

.product-item .product .icons .icon:nth-last-of-type(2) {
  transition-delay: 0.15s
}

.product-item .product .icons .icon:nth-last-of-type(1) {
  transition-delay: 0.1s
}

.product-item:hover .product .icons .icon {
  transform: translateY(-60px)
}

.product-item .tag {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 500;
  position: absolute;
  top: 10px;
  left: 20px;
  padding: 0 0.4rem
}

.product-item .title {
  font-size: 0.95rem;
  letter-spacing: 0.5px
}

.product-item .fa-star {
  font-size: 0.65rem;
  color: goldenrod
}

.product-item .price {
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 600
}

.fw-800 {
  font-weight: 800
}

.bg-green {
  background-color: #208f20 !important;
  color: #fff
}

.bg-black {
  background-color: #1f1d1d;
  color: #fff
}

.bg-red {
  background-color: #bb3535;
  color: #fff
}

@media (max-width: 767.5px) {

  .navbar-nav .nav-link.active,
  .navbar-nav .nav-link:hover {
    background-color: #b71c1c;
    color: #fff !important
  }

  .navbar-nav .nav-link {
    border: 3px solid transparent;
    margin: 0.8rem 0;
    display: flex;
    border-radius: 10px;
    justify-content: center
  }
}