
/* Responsive Design */
@media (max-width: 768px) {
  /* .logo-subtitle {
    display: none;
  } */

  .logo-text {
    display: block;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .products {
    padding: 2rem 0;
  }

  .products-list {
    gap: 2rem;
  }

  .product-item {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .product-item.reverse {
    direction: ltr;
  }

  .product-image-wrapper {
    aspect-ratio: 1;
    max-width: 100%;
  }

  .product-name {
    font-size: 1.5rem;
  }

  .product-summary {
    font-size: 1rem;
  }

  .product-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .learn-more-btn {
    width: 100%;
  }

  .modal-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .modal-specs {
    grid-template-columns: 1fr;
  }

  .modal-actions {
    flex-direction: column;
  }

  .modal-title {
    font-size: 1.5rem;
  }

  .contact-bottom {
    grid-template-columns: 1fr;
  }

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

  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-grid .footer-brand {
    grid-column: 1;
  }
  
  .footer-bottom-content {
    justify-content: center;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  /* .logo-subtitle {
    display: none;
  } */

  .logo-title {
    font-size: 1.25rem;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .product-name {
    font-size: 1.25rem;
  }

  .product-summary {
    font-size: 0.95rem;
  }

  .modal-title {
    font-size: 1.25rem;
  }

  .modal-grid {
    padding: 1rem;
    gap: 1rem;
  }

  .gallery-main {
    aspect-ratio: 1;
  }

  .modal-close {
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
  }
}

@media (min-width: 640px) {
  /* .logo-subtitle {
    display: block;
  } */

  .logo-text {
    display: block;
  }

  .hero-cta {
    flex-direction: row;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .footer-grid .footer-brand {
    grid-column: 1 / -1;
  }
  
  .footer-bottom-content {
    justify-content: center;
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .hero-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title {
    font-size: 4.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr;
    gap: 3rem;
  }
  
  .footer-grid .footer-brand {
    grid-column: 1;
  }
  
  .footer-bottom-content {
    justify-content: center;
  }
}

@media (min-width: 1280px) {
  .container {
    padding: 0 2rem;
  }
}


