  .products-section {
    padding: 60px 20px;
  }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 in a row on desktop */
  gap: 30px;
}

  .product-card {
    background: #fff;
    border-radius: 12px;
    width: 100%;
    height: 400px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s;
    object-fit: cover;
  }


  .product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
  }


  .product-card:hover {
    transform: translateY(-5px);
  }

  .product-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
  }

  .product-info {
    padding: 15px;
  }

  .product-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
  }

  .product-description {
    font-size: 14px;
    color: #666;
  }

  @media (max-width: 480px) {
    .product-card img {
      height: 150px;
    }
  }


  /* ========== FOOTER ========== */
  .site-footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 4rem 0 2rem;
    margin-top: 0px;
    font-size: 0.95rem;
  }

  .footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;  
  }

  .footer-column {
    flex: 1 1 220px;
    min-width: 180px;
  }

  .footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--white);
  }

  .footer-column a {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
    text-decoration: none;
    padding: 4px 0;
    transition: var(--transition);
    border-radius: var(--radius-sm);
  }

  .footer-column a:hover {
    background-color: var(--primary-dark);
    padding-left: 8px;
  }

  .newsletter p {
    margin-bottom: 1rem;
  }

  .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .newsletter-form input[type="email"] {
    padding: 10px 12px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    width: 100%;
  }

  .newsletter-form .privacy {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
  }

  .newsletter-form .privacy a {
    color: var(--white);
    text-decoration: underline;
  }

  .newsletter-form button {
    padding: 10px 16px;
    background-color: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
  }

  .newsletter-form button:hover {
    background-color: var(--secondary-dark);
  }

  /* Footer social media */
  .footer-column.social-media {
    flex: 1;
    min-width: 180px;
  }

  .footer-column.social-media h4 {
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 18px;
  }

  .social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .social-icons a {
    color: var(--primary);
    font-size: 20px;
    text-decoration: none;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background-color: #f1f1f1;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .social-icons a:hover,
  .social-icons a:focus {
    background-color: var(--primary);
    color: white;
  }


  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: flex-start;
    }
  }

  .split-section {
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
  }

  .split-image,
  .split-content {
    flex: 1 1 100%;
    max-width: 100%;
  }

  @media (min-width: 768px) {
    .split-image,
    .split-content {
      flex: 1 1 50%;
      max-width: 50%;
    }
  }

  .split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .split-content {
    padding: 40px;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .product-card {
    display: block;
    text-decoration: none;
    color: inherit;
  }

.catalog-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.catalog-modal.hidden {
  display: none;
}

.modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  max-height: 90vh;
  overflow-y: auto;
  width: 90%;
  max-width: 1000px;
  position: relative;
}

.close-btn {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 24px;
  cursor: pointer;
}
