/* Tablets */
@media screen and (max-width: 1024px) {
}
/*----------------------------*\
	responsive nav
\*----------------------------*/

@media only screen and (max-width: 991px) {
  .header-ctn .menu-toggle {
    display: inline-block;
  }

  #responsive-nav {
    position: fixed;
    left: 0;
    top: 0;
    background: #ffffff;
    height: 100vh;
    width: 0%;
    overflow: hidden;
    z-index: 22;
    padding-top: 60px;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }

  #responsive-nav.active {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    width: 100%;
  }

  .main-nav {
    margin: 0px;
    float: none;
    flex-direction: column !important;
    padding-inline: 10px;
    gap: 10px !important;
  }

  .main-nav > li {
    display: block;
    float: none;
  }

  .main-nav > li + li {
    margin-left: 0px;
  }
}
/* Celulares */
@media screen and (max-width: 768px) {
  /* NAV BAR  */
  #header .container,
  .container-fluid {
    padding-inline: 5px;
  }
  .shop-nav-bar-container {
    flex-direction: column !important;
  }
  .shop-nav-bar-container > * {
    justify-content: center !important;
    width: 100% !important;
  }
  .header-ctn {
    justify-content: space-between !important;
    width: 100% !important;
    /* overflow-x: scroll; */
    scroll-behavior: smooth;
    scrollbar-width: none;
  }
  .navbar-toggler {
    font-size: 10pt !important;
  }
  /* PREVIEW */
  .preview-nav-product-detail {
    overflow-x: auto !important;
    scrollbar-width: none !important;
    justify-content: start !important;
  }

  .address-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .form-actions {
    flex-direction: column-reverse;
    padding: 1.25rem;
  }

  .btn {
    text-align: center;
    width: 100%;
  }

  body {
    padding: 1rem;
  }

  .address-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .toast-notification {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    transform: translateY(100px);
  }

  .toast-notification.show {
    transform: translateY(0);
  }
}

/* Celulares pequenos */
@media screen and (max-width: 480px) {
  /* CART */
  .notification-container {
    padding: 1.5rem 0.7rem;
    max-width: 97vw;
  }

  .notification-title {
    font-size: 1.25rem;
  }
}
