/* css for mobile devices */

/* media queries for mobile devices */
@media screen and (max-width: 600px) {
  .navbar-nav {
    padding: 20px;
  }

  .nav-item {
    background-color: var(--glass);
    border-radius: 10px;
    padding-left: 10px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.2px;
    font-weight: 600;
  }
  .nav-item.active {
    border: 1px solid var(--text-main);
  }

  .hero {
    height: 70vh;
    margin-bottom: -100px;
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 20px;
  }

  .item-1 {
    background-size: contain;
  }
  .flip-card {
    min-height: 600px;
  }
  /* Disable hover flip on mobile */
  .product-card:hover > .flip-card {
    transform: none;
  }

  /* Flip via class instead */
  .product-card.flipped .flip-card {
    transform: rotateY(180deg) rotateZ(180deg);
  }
  .flip-btn {
    display: block;
  }

  .contact-phone,
  .contact-email {
    grid-column: span 12 !important;
  }

  .testimonial-carousel .testimonial-img {
    height: 220px;
  }

  .testimonial-video {
    width: 100%;
    max-width: 100%;
    border-radius: 24px;
    display: block;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }
  .franchise-form-wrapper {
    padding: 30px 20px;
    border-radius: 25px;
  }
  .form-header {
    margin-bottom: 30px;
  }

  .form-header h2 {
    font-size: 2rem;
  }

  .franchise-form {
    grid-template-columns: 1fr;
  }
  .form-group {
    grid-column: span 1;
  }

  .half-width {
    grid-column: span 1;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 4px 16px;
  }
}
