.full-product {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: #80808017;
  backdrop-filter: blur(2px);
}

.full-product > .close {
  position: absolute;
  cursor: pointer;
  z-index: 10;
  top: 20px;
  right: 40px;
  color: #404040;
}

.full-product>.close:hover {
  color: #be5151;
}

.full-product>.close svg {
  width: 50px;
  height: 50px;
}

.full-product > .content {
  padding: 20px 0;
  border: 1px solid #80808050;
  border-radius: 20px;
  background-color: #fff;
  width: 800px;
  height: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
}

.full-product>.content > .image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-width: 40%;
}

.full-product>.content>.image > img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.full-product>.content>.details {
  padding: 30px 30px 30px 0;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-width: 60%;
  gap: 30px;
}

.full-product>.content>.details > .title {
  display: flex;
  flex-flow: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
}

.full-product>.content>.details>.title h2.name{
  font-size: 1.3rem;
  color: #404040;
  margin: 0;
  padding: 0;
  line-height: 1.4;
  font-weight: 600;
}

.full-product>.content>.details>.title span.line {
  display: inline-block;
  height: 4px;
  width: 30px;
  background-color: #808080;
}

.full-product>.content>.details p.description {
  font-size: 1rem;
  color: #404040;
  margin: 0;
  padding: 0;
  line-height: 1.4;
  font-weight: 500;
}

.full-product>.content>.details .button-box {
  margin: 30px 0 0 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#products-list {
  margin: 0 0 40px 0;
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 35px;
}

#products-list > .product {
  border: 1px solid #80808037;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 250px;
  border-radius: 15px;
}

#products-list>.product .image {
  /* border: 2px solid red; */
  height: 180px;
  width: 100%;
  max-height: 180px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#products-list>.product .image img {
  height: 90%;
  width: 90%;
  object-fit: contain;
}


#products-list>.product  .details{
  /* border: 2px solid red; */
  padding: 10px 10px 15px 10px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  gap: 0px;
}

#products-list>.product .details .btn-style-one.theme-btn {
  height: max-content;
  padding: 7px 20px 5px 20px;
  width: max-content;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}

#products-list>.product .details p {
  text-align: center;
  color: #404040;
}

.auto-container > .button-box {
  /* border: 1px solid red; */
  margin: 35px 0 35px 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

@media screen and (max-width: 950px) {
  .full-product>.close {
    position: absolute;
    top: 20px;
    right: 20px;
  }
}

@media screen and (max-width: 800px) {
  .full-product > .content {
    padding: 20px 20px 10px 20px;
    border: 1px solid #80808050;
    border-radius: 0;
    background-color: #fff;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    overflow-y: scroll;
    height: max-content;
    display: flex;
    flex-flow: column;
    align-items: start;
    justify-content: start;
  }

  .full-product>.content > .image {
    /* border: 3px solid red; */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    min-width: 100%;
  }

  .full-product>.content>.image > img {
    width: auto;
    height: 90%;
    object-fit: contain;
  }

  .full-product>.content>.details .button-box {
    margin: 0 0 0 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

}

@media screen and (max-width: 550px) {
  .full-product>.content>.details .button-box {
    margin: 0 0 0 0;
    width: 100%;
    display: flex;
    flex-flow: column;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
  }

  #products-list > .product {
    border: 1px solid #80808037;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 300px;
    border-radius: 15px;
  }
}

@media screen and (max-width: 300px) {

  #products-list>.product {
    border: 1px solid #80808037;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    border-radius: 15px;
  }
}