/* Pan Mallette Coffee - Responsive Styles */

/* Tablet Styles */
@media (max-width: 768px) {
  .header-content {
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  /* Brand responsive styles */
  .brand-text {
    font-size: 1.5rem;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  nav {
    width: 100%;
    order: 3;
    margin-top: 1rem;
  }
  
  nav ul {
    flex-direction: column;
    gap: 1rem;
    background: var(--white);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    display: none;
  }
  
  nav.active ul {
    display: flex;
  }
  
  main {
    padding: 1rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .shop-gallery {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .info-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-details {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-item {
    padding: 1.5rem;
  }
  
  .contact-icon {
    font-size: 2rem;
  }
  
  .contact-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-action-btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
  
  .form-container {
    padding: 1.5rem;
  }
}

/* Mobile Styles */
@media (max-width: 480px) {
  .header-content {
    padding: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .logo {
    height: 50px;
  }
  
  /* Mobile brand text */
  .brand-text {
    font-size: 1.2rem;
  }
  
  .brand-container {
    gap: 0.75rem;
  }
  
  .language-toggle {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
  
  main {
    padding: 0.5rem;
  }
  
  .hero {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    display: block;
    margin: 0.5rem auto;
    text-align: center;
    max-width: 200px;
  }
  
  /* Fix alignment for no-products message buttons */
  .no-products-message {
    padding: 4rem 1rem !important;
  }
  
  .no-products-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    width: 100%;
  }
  
  .no-products-message .cta-button {
    display: block;
    margin: 0.5rem 0;
    text-align: center;
    width: 200px;
    max-width: 90%;
  }
  
  .shop-image img {
    height: 250px;
  }
  
  .info-card {
    padding: 1.5rem;
  }
  
  .info-card h3 {
    font-size: 1.2rem;
  }
  
  .contact-info {
    padding: 2rem 1rem;
  }
  
  .contact-info h2 {
    font-size: 1.5rem;
  }
  
  .contact-item {
    padding: 1.2rem;
  }
  
  .contact-icon {
    font-size: 1.8rem;
  }
  
  .contact-action-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .form-container {
    padding: 1rem;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 0.6rem;
  }
  
  .submit-button {
    width: 100%;
    padding: 1rem;
  }
  
  .coming-soon {
    padding: 2rem 1rem;
  }
  
  .coming-soon h1 {
    font-size: 2rem;
  }
  
  .coming-soon p {
    font-size: 1rem;
  }
  
  footer {
    padding: 1.5rem 1rem;
  }
}

/* Small Mobile Styles */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .info-card {
    padding: 1rem;
  }
  
  .contact-info {
    padding: 1.5rem 0.75rem;
  }
  
  .contact-item {
    padding: 1rem;
  }
  
  .contact-icon {
    font-size: 1.5rem;
  }
  
  /* Video Modal Responsive */
  .modal-content {
    width: 95%;
    margin: 1rem;
  }
  
  .modal-close {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
    top: 10px;
    right: 15px;
  }
  
  .form-container {
    padding: 0.75rem;
  }
}

/* Large Desktop Styles */
@media (min-width: 1400px) {
  .header-content,
  main {
    max-width: 1400px;
  }
  
  .hero h1 {
    font-size: 3.5rem;
  }
  
  .hero p {
    font-size: 1.3rem;
  }
  
  .shop-gallery {
    gap: 3rem;
  }
  
  .shop-image img {
    height: 350px;
  }
  
  .info-cards {
    gap: 3rem;
  }
}
