@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;500;700;900&display=swap");
.navbar {
  align-items: center;
  display: flex;
  justify-content: space-between;
  height: 50px;
  position: inherit;
  z-index: 9;
}
@media screen and (min-width: 1024px) {
  .navbar-menu, .navbar-search {
    display: none;
  }
}
.navbar .icon {
  height: 25px;
  width: 25px;
}
.navbar .icon:hover {
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .navbar .icon {
    width: 23px;
    height: 23px;
  }
}
.navbar-login {
  display: none;
}
@media screen and (min-width: 1024px) {
  .navbar-login {
    display: flex;
  }
  .navbar-login__link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--color-blue);
    font-weight: 300;
  }
  .navbar-login__link-img {
    width: 16px;
  }
}
.navbar-logo__logo {
  height: 38px;
}
.navbar-search-form {
  align-items: center;
  background-color: var(--color-white);
  display: flex;
  justify-content: space-between;
  height: 50px;
  margin-left: -1px;
  position: absolute;
  width: calc(100% - 2px);
}
@media screen and (min-width: 1024px) {
  .navbar-search-form {
    position: relative;
    width: 393px;
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 1024px) {
  .navbar-search-form .search-form-close__icon {
    display: none;
  }
}
.navbar-search-form .search-form__button {
  align-items: center;
  display: flex;
  justify-content: center;
  height: 30px;
  width: 30px;
  background-color: transparent;
  border: none;
}
.navbar-search-form .search-form__input {
  height: 24px;
  width: 100%;
  background-color: transparent;
  border: none;
  outline: none;
  padding-left: 10px;
}
.navbar .search-form {
  display: none;
}
@media screen and (min-width: 1024px) {
  .navbar .search-form {
    display: flex;
  }
}

.post-header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.post-header .post__media {
  height: 33.3333333333vw;
  min-height: 100px;
  max-height: 200px;
  width: clamp(340px, 100vw - 20px, 748px);
  border-radius: 10px;
  object-fit: cover;
}
@media screen and (min-width: 1024px) {
  .post-header .post__media {
    width: calc(100vw - 20px);
    max-width: 1113px;
  }
}
.post-header .post-text {
  position: absolute;
}
.post-header .post-text__link {
  color: var(--color-white);
  text-decoration: none;
  text-align: center;
}
.post-header .post-text__title {
  text-shadow: 1px 2px 7px black;
  font-weight: 900;
  font-size: clamp(1.2rem, 2.5vw, 3rem);
  text-transform: uppercase;
}
.post-header .post-text__content {
  font-size: 0.9rem;
  margin: auto;
  width: 70%;
  text-transform: uppercase;
}
.post-header .post-text__content--link {
  width: -moz-fit-content;
  width: fit-content;
  margin: 5px auto;
  padding: 5px 8px;
  background-color: var(--color-blue);
  border-radius: 3px;
  font-weight: 300;
}

.products__title-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  color: var(--color-gray);
  font-weight: 300;
  font-size: 1.2rem;
  margin: 15px 0;
}
.products__title-link-img {
  width: 25px;
}
.products__title--all {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px 0;
  text-transform: capitalize;
}
.products__title--all h2 {
  font-size: 1.3rem;
  font-weight: 400;
}
.products__title-button {
  background-color: var(--color-blue);
  color: var(--color-white);
  border: none;
  border-radius: 3px;
  height: 35px;
  padding: 0 10px;
}
.products__title-button:hover {
  cursor: pointer;
}
.products-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  min-height: 250px;
  margin: 10px 0;
  overflow: hidden;
}
.products-container--search {
  justify-content: flex-start;
  min-height: 350px !important;
}
.products-container--search-empty {
  display: flex;
  justify-content: center !important;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .products-container {
    justify-content: flex-start;
  }
}
.products-container .product {
  margin-top: 10px;
  margin-left: 5px;
  margin-right: 5px;
  width: 152px;
  position: relative;
  z-index: 1;
  height: min-content;
}
.products-container .product--empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 300px !important;
  cursor: default !important;
  padding: 15px;
}
.products-container .product--empty .product__icon {
  width: 120px;
  height: 120px;
}
.products-container .product--empty .product-description {
  margin: 15px 0;
  text-align: center;
}
.products-container .product--empty .product-description__title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.products-container .product--empty .product-description__text {
  font-size: 0.8rem;
  line-height: 1.2rem;
  font-weight: 300;
}
.products-container .product--empty .product-description__text a {
  color: var(--color-blue);
}
@media screen and (min-width: 1024px) {
  .products-container .product {
    width: 162px;
    margin-right: 10px;
  }
  .products-container .product .product__mark {
    display: none;
  }
  .products-container .product:hover {
    cursor: pointer;
    transform: scale(1.02);
    transform-origin: top;
  }
  .products-container .product:hover .product__mark {
    display: block;
    transition: scale 3s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
}
.products-container .product__controls {
  background-color: var(--color-white);
  padding: 5px;
  border-radius: 15px;
  position: absolute;
  right: 8px;
  top: 8px;
}
.products-container .product__controls-icon {
  width: 15px;
  margin: 0 5px;
}
.products-container .product__controls-icon:hover {
  cursor: pointer;
}
.products-container .product__mark {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 18px;
  height: 18px;
  z-index: 20;
  background-image: url("../images/icons/alike.svg");
}
.products-container .product__mark--like {
  display: block !important;
  transform: scale(1.2);
  background-image: url("../images/icons/like.svg");
}
.products-container .product__mark:hover {
  cursor: pointer;
}
.products-container .product__preview {
  border: 0.5px solid hsla(40deg, 18%, 87%, 0.507);
  border-radius: 10px;
  object-fit: cover;
  -webkit-user-select: none;
  user-select: none;
  font-size: 0.8rem;
  text-transform: capitalize;
  width: 152px;
  height: 152px;
  min-height: 152px;
  min-width: 152px;
}
@media screen and (min-width: 1024px) {
  .products-container .product__preview {
    width: 162px;
    height: 162px;
    min-height: 162px;
    min-width: 162px;
  }
}
.products-container .product-content {
  padding: 10px;
  cursor: pointer;
}
.products-container .product-content--not {
  cursor: default;
}
.products-container .product-content__price-before {
  font-weight: 300;
  font-size: 0.7rem;
  text-decoration: line-through;
}
.products-container .product-content__price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 5px 0;
  font-size: 1.05rem;
}
.products-container .product-content__descount {
  font-size: 0.7rem;
  color: var(--color-green);
}
.products-container .product-content__details {
  font-weight: 300;
  font-size: 0.8rem;
  line-height: 1.2rem;
  height: 20px;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .products-container {
    min-height: 275px;
  }
}
.products-scroller {
  display: flex;
  overflow-x: scroll;
  overflow-y: hidden;
  flex-wrap: nowrap;
  justify-content: flex-start;
}
@media screen and (min-width: 1025px) {
  .products-scroller {
    flex-wrap: wrap;
    overflow-y: hidden !important;
    overflow-x: hidden !important;
  }
}
.products-scroller .card-view {
  margin: 20px;
  margin-top: 0;
  margin-left: 0;
}

.scale-up-center {
  -webkit-animation: scale-up-center 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) both;
  animation: scale-up-center 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) both;
}

@-webkit-keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
footer {
  background-color: var(--color-gray);
  padding: 30px 0;
}
@media screen and (min-width: 600px) {
  footer .foot-expand {
    display: flex;
    justify-content: space-around;
  }
  footer .foot-expand > div {
    margin: auto;
    width: 30%;
  }
}

.options {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 10px;
}
.options__logo {
  height: 50px;
  margin-bottom: 30px;
}
.options .navbar-footer__title {
  color: var(--color-white);
  text-align: center;
  text-transform: uppercase;
}
.options .navbar-footer__item {
  margin: 15px 0;
  text-align: center;
}
.options .navbar-footer__item a {
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--color-gray-light);
  text-decoration: none;
  cursor: pointer;
}

.contact-me {
  margin: 5px auto;
  width: clamp(340px, 100vw - 20px, 440px);
}
.contact-me__title {
  color: var(--color-white);
  text-align: center;
  text-transform: uppercase;
}
.contact-me__item {
  margin: 15px 0;
  text-align: center;
}
.contact-me__item a {
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--color-gray-light);
  text-decoration: none;
  cursor: pointer;
}
.contact-me__social-media {
  display: flex;
  justify-content: center;
}
.contact-me__social-media a {
  margin-right: 20px;
}
.contact-me__social-media a:nth-child(3) {
  margin: 0;
}

.copy-focus {
  color: var(--color-blue);
}

.modal-bg {
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  transition: all 0.5s;
  z-index: 10;
}
.modal-bg--active {
  display: none;
}
.modal-bg .modal {
  background-color: var(--color-white);
  width: clamp(288px, 50%, 384px);
  height: 100%;
  position: absolute;
  top: 0;
  left: -100px;
  bottom: 0;
  margin: auto;
}
.modal-bg .modal__item {
  margin: 20px;
}
.modal-bg .modal__item--close {
  position: absolute;
  width: 20px;
  right: 0;
}
.modal-bg .modal__item--close:hover {
  cursor: pointer;
}
.modal-bg .modal__item--title {
  color: var(--color-gray);
}
.modal-bg .modal__link {
  text-decoration: none;
  text-transform: capitalize;
  color: var(--color-gray);
  font-weight: 300;
  display: flex;
  align-items: center;
}
.modal-bg .modal__link:hover {
  text-decoration: underline;
}
.modal-bg .modal__link-img {
  width: 20px;
  height: 20px;
}

.slide-right {
  -webkit-animation: slide-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes slide-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
}
@keyframes slide-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
}
.login {
  height: 90vh;
  max-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-container {
  display: flex;
  flex-direction: column;
  width: 90%;
  max-width: 400px;
}
.login-container .login__title {
  margin-bottom: 25px;
  text-align: center;
  font-weight: 700;
}
.login-container .login__input {
  margin: 5px 0 15px 0;
  min-height: 25px;
  padding: 5px;
  padding-left: 10px;
  background-color: var(--color-white);
  border: 1px solid hsl(40deg, 9%, 81%);
  border-radius: 5px;
  outline: none;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}
.login-container .login__label {
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
}
.login-container .login__button {
  border: none;
  background-color: var(--color-blue);
  color: var(--color-white);
  min-height: 35px;
  padding: 10px;
  font-size: 1.05rem;
  font-weight: 400;
}

.add-product {
  min-height: 100vh;
  margin: 20px 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column-reverse;
}
@media screen and (min-width: 1024px) {
  .add-product {
    flex-direction: row;
    justify-content: space-around;
  }
}
.add-product-container {
  display: flex;
  flex-direction: column;
  width: 90%;
  max-width: 400px;
}
.add-product-container .add-product__title {
  margin: 25px;
  text-align: center;
  font-weight: 700;
}
.add-product-container .add-product__input {
  margin: 5px 0 15px 0;
  min-height: 25px;
  padding: 5px;
  padding-left: 10px;
  background-color: var(--color-white);
  border: 1px solid hsl(40deg, 9%, 81%);
  border-radius: 5px;
  outline: none;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}
.add-product-container .add-product__input--select {
  outline: none;
}
.add-product-container .add-product__input--select option {
  font-weight: 300;
}
.add-product-container .add-product__label {
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
}
.add-product-container .add-product__button {
  border: none;
  background-color: var(--color-blue);
  color: var(--color-white);
  min-height: 35px;
  padding: 10px;
  font-size: 1.05rem;
  font-weight: 400;
}
.add-product-container .add-product__button:hover {
  cursor: pointer;
}
.add-product-preview {
  width: 300px;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.add-product-preview__title {
  margin: 25px;
  text-align: center;
  font-weight: 700;
}
.add-product-preview .product {
  margin: 15px;
  margin-top: 0;
  margin-left: 0;
  width: 152px;
  position: relative;
  height: min-content;
}
.add-product-preview .product__mark {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 18px;
  height: 18px;
  background-image: url("../images/icons/alike.svg");
}
.add-product-preview .product__preview {
  border-radius: 10px;
  object-fit: cover;
  -webkit-user-select: none;
  user-select: none;
  width: 152px;
  height: 152px;
  min-height: 152px;
  min-width: 152px;
}
.add-product-preview .product-content {
  padding: 10px;
}
.add-product-preview .product-content__price-before {
  font-weight: 300;
  font-size: 0.7rem;
  text-decoration: line-through;
}
.add-product-preview .product-content__price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 5px 0;
  font-size: 1.05rem;
}
.add-product-preview .product-content__descount {
  font-size: 0.7rem;
  color: var(--color-green);
}
.add-product-preview .product-content__details {
  font-weight: 300;
  font-size: 0.8rem;
  line-height: 1.2rem;
  height: 20px;
  overflow: hidden;
  text-transform: capitalize;
}

.view-product {
  margin-top: 80px;
  margin-bottom: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .view-product {
    flex-direction: row;
    margin-bottom: 50px;
  }
}
.view-product-preview {
  display: flex;
}
.view-product-preview__thumbnails {
  display: flex;
  flex-direction: column;
  margin-right: 10px;
  border-radius: 20px;
}
.view-product-preview__thumbnails-img {
  width: 62.5px;
  height: 62.5px;
  margin-bottom: 10px;
  border-radius: 10px;
  object-fit: cover;
}
@media screen and (min-width: 1024px) {
  .view-product-preview__thumbnails-img {
    width: 82.5px;
    height: 82.5px;
    border-radius: 15px;
  }
}
.view-product-preview__thumbnails-img:hover {
  cursor: pointer;
}
.view-product-preview__cover {
  width: 210px;
  height: 210px;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .view-product-preview__cover {
    width: 270px;
    height: 270px;
  }
}
.view-product-preview__cover-img {
  width: 100%;
  height: 100%;
  transition: all 0.9s;
}
.view-product-preview__cover:hover img {
  transform: scale(1.5);
}
.view-product-details {
  margin-top: 50px;
  width: 70%;
  min-width: 300px;
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .view-product-details {
    width: 400px;
  }
}
.view-product-details__mark {
  position: absolute;
  right: 8px;
  top: 0;
  width: 28px;
  height: 28px;
  background-image: url("../images/icons/alike.svg");
}
.view-product-details__mark--like {
  display: block !important;
  transform: scale(1.2);
  background-image: url("../images/icons/like.svg");
}
.view-product-details__mark:hover {
  cursor: pointer;
}
.view-product-details__title {
  width: 85%;
  font-size: 2rem;
  margin-bottom: 30px;
}
.view-product-details__price .price {
  font-size: 1.3rem;
  margin-right: 50px;
}
.view-product-details__price .descount {
  color: var(--color-green);
}
.view-product-details__desc {
  margin-top: 25px;
  line-height: 1.5rem;
  font-weight: 300;
  font-size: 0.9rem;
}

.alerts {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 98vw;
  min-width: 360px;
  max-width: 1113px;
  margin: auto;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
}
.alerts--not {
  display: none;
}
@media screen and (min-width: 1024px) {
  .alerts {
    justify-content: flex-end;
  }
}
.alerts-container {
  position: fixed;
  z-index: 999;
}
.alerts-container .alert {
  cursor: default;
  padding: 10px;
  min-width: 180px;
  background: var(--color-blue-op);
  border-radius: 10px;
  font-size: 0.7rem;
  margin-bottom: 5px;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.062745098);
}
@media screen and (min-width: 1024px) {
  .alerts-container .alert {
    margin-right: 3vw;
  }
}
.alerts-container .alert:last-child {
  margin-bottom: 10vh;
}
.alerts-container .alert__icon {
  width: 0.7rem;
  padding: 0.2rem;
  border-radius: 100%;
  margin: 0 5px;
}
.alerts-container .alert__icon:hover {
  cursor: pointer;
}
.alerts-container .alert--success {
  background-color: var(--color-green-op);
}
.alerts-container .alert--error {
  background-color: var(--color-red-op);
}
.alerts-container .alert--deleting .alert__message {
  font-size: 0.8rem;
  margin-right: 10px;
}
.alerts-container .alert--deleting .alert__message--bolder {
  font-weight: bold;
  font-style: italic;
}
.alerts-container .alert--deleting .alert__options span {
  font-size: 0.8rem;
  text-decoration: underline;
  margin-left: 5px;
  opacity: 0.7;
}
.alerts-container .alert--deleting .alert__options span:hover {
  cursor: pointer;
  opacity: 1;
}

:root {
  --color-blue-light: hsla(0, 0%, 20%, 0.089);
  --color-blue: hsl(214, 78%, 53%);
  --color-blue-op: hsl(214, 78%, 53%, 0.8);
  --color-white: hsl(36, 100%, 98%);
  --color-green: hsl(110, 57%, 31%);
  --color-green-op: hsl(110, 57%, 31%, 0.8);
  --color-red-op: hsla(0, 81%, 47%, 0.8);
  --color-gray:hsl(0, 0%, 20%);
  --color-gray-light: hsl(40, 16%, 80%);
}

body {
  background-color: var(--color-white);
  font-family: "Roboto", sans-serif;
}

.container {
  margin: auto;
  position: relative;
  width: clamp(340px, 100vw - 20px, 748px);
}
@media screen and (min-width: 1024px) {
  .container {
    width: calc(100vw - 20px);
    max-width: 1113px;
    margin: auto;
  }
}

.not {
  visibility: hidden;
}

.input--invalid {
  border: 1px solid rgb(207, 0, 0) !important;
}

/*# sourceMappingURL=style.css.map */
