/* ===========================
   HANAMI PRESS — Mobile
   =========================== */

@media (max-width: 768px) {

  /* -------------------------
     HEADER — hamburger
     ------------------------- */

  .site-header {
  display: flex;
  justify-content: space-between;
  padding: 1.25rem 1.25rem;
  align-items: center;
}

  .site-nav {
    display: none;
  }

  .site-logo {
    font-size: 1.5rem;
    justify-self: unset;
  }

  .nav-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    align-self: center;
    transform: translateY(2px);
  }

  .nav-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: transform 0.2s, opacity 0.2s;
  }

  .nav-hamburger.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-hamburger.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-hamburger.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .cart-trigger {
    align-self: center;
    justify-self: unset;
  }

  .nav-mobile {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-bottom: var(--border);
    z-index: 10000;
  }

  .nav-mobile.is-open {
    display: flex;
  }

  .nav-mobile a {
    font-family: Dela Gothic One, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 100;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--blue);
    padding: 1rem 1.25rem;
    border-bottom: var(--border);
  }

  .nav-mobile a:last-child {
    border-bottom: none;
  }

  /* -------------------------
     TICKER
     ------------------------- */

  .ticker-track {
    animation-duration: 30s;
  }

  .ticker-track span {
    font-size: 1.25rem;
  }

  /* -------------------------
     CAROUSEL
     ------------------------- */

  .carousel-track {
    animation-duration: 14s;
  }

  .carousel-item {
    width: 260px;
    height: 180px;
  }

  /* -------------------------
     PRODUCTS HEADER
     ------------------------- */

  .products-header {
    font-size: 1.25rem;
    padding: 1rem 1.25rem;
    text-align: left 
  }

  /* -------------------------
     PRODUCTS — 1 colonna
     ------------------------- */

  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    border-right: none;
    border-bottom: none;
  }

  .product-card:nth-child(4n) {
    border-right: none;
  }

  .product-card:nth-child(n+5) {
    border-bottom: var(--border);
  }

  .product-card:last-child {
    border-bottom: none;
  }

  /* -------------------------
     ABOUT
     ------------------------- */

  .about-section {
    padding: 0;
    border-bottom: 1px solid #ff00ff;
    hyphens: auto
  }

  .about-content {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .about-text-col {
    padding: 1.5rem 1.25rem;
    border-right: none;
    border-bottom: none;
  }

  .about-label {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .about-text {
    font-size: 1rem;
  }

  .about-image-col {
    height: 100%;
  }

  .about-section--reversed .about-content {
    direction: ltr;
  }

  /* -------------------------
     NEWSLETTER
     ------------------------- */

  .newsletter-header {
    font-size: 1.25rem;
    padding: 1rem 1.25rem;
  }

  .newsletter-body {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1.25rem;
    gap: 1.25rem;
  }

  .newsletter-text {
    font-size: 0.9rem;
  }

  /* -------------------------
     CONTATTI
     ------------------------- */

  .contact-info {
    padding: 1.5rem 1.25rem;
    gap: 2rem;
  }

  /* -------------------------
     WORDMARK
     ------------------------- */

  .wordmark-section {
    padding: 1.25rem;
  }

  .wordmark-text {
    font-size: calc((100vw - 2.5rem) / 10);
  }

  /* -------------------------
     FOOTER
     ------------------------- */

  .site-footer {
    padding: 0 1.25rem;
  }

  /* -------------------------
     SUCCESSO ORDINE
     ------------------------- */

  .success-text {
    font-size: 1.75rem;
  }

  /* -------------------------
     PAGINA PRODOTTO
     ------------------------- */

  .product-page {
    grid-template-columns: 1fr;
    height: auto; 
  }

  .product-page-gallery {
    position: relative;
    height: 70vh;
    overflow: hidden;
  }
   
  .product-page-info {
    position: relative;
    height: auto;
    border-left: none;
    border-top: var(--border);
  }

  .product-page-info-inner {
    padding: 2rem 1.25rem;
  }

  .product-page-title {
    font-size: 1.75rem;
  }

  .product-page-description {
    font-size: 1rem;
  }

  .product-page-purchase {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .film-grain {
    display: none
  }

  .products-footer {
    padding: 1.25rem;
  }
  
}
