body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f8f9fa;
  }
  .shop-card {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    background-color: #ffffff;
    padding: 20px;
    transition: transform 0.2s;
    height: 100%;
  }
  .shop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  }
  .category-menu {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
  }
  .category-menu h5 {
    margin-bottom: 15px;
    font-size: 1.2rem;
  }
  .category-menu a ,btn-primary,h5 a,.category-card {
    display: block;
    padding: 8px 12px;
    border-radius: 5px;
    color: #333;
    text-decoration: none;
    margin-bottom: 5px;
    transition: 0.2s;
  }
  .category-menu a:hover {
    background-color: #e9ecef;
  }
  .footer {
    background-color: #343a40;
    color: #fff;
    padding: 30px 0;
    text-align: center;
  }
  .navbar-brand {
    font-weight: bold;
  }