/* products.css */

:root {
    --primary-color: #4a90e2;
    --secondary-color: #f8f9fa;
    --text-color: #2c3e50;
    --hover-color: #357abd;
  }
  
  body {
    font-family: "Poppins", sans-serif;
    background-color: var(--secondary-color);
    color: var(--text-color);
  }
  
  .main-container {
    min-height: 100vh;
    padding: 2rem 1rem;
  }
  
  .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
    position: relative;
  }
  
  .page-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
  }
  
  .ecommerce-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1rem;
  }
  
  .ecommerce-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
  }
  
  .ecommerce-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }
  
  .ecommerce-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
  }
  
  .ecommerce-card:hover .ecommerce-logo {
    transform: scale(1.1);
  }
  
  .ecommerce-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
  }
  
  .ecommerce-description {
    text-align: center;
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
  }
  
  .visit-button {
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
  }
  
  .visit-button:hover {
    background-color: var(--hover-color);
    transform: scale(1.05);
    color: white;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .page-title {
      font-size: 2rem;
    }
  
    .ecommerce-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  
    .ecommerce-card {
      padding: 1.5rem;
    }
  
    .ecommerce-logo {
      width: 120px;
      height: 120px;
    }
  }
  
  @media (max-width: 480px) {
    .page-title {
      font-size: 1.75rem;
    }
  
    .ecommerce-card {
      padding: 1rem;
    }
  
    .visit-button {
      padding: 0.6rem 1.5rem;
      font-size: 0.9rem;
    }
  }
  