* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  body {
    background-color: #f8f9fa;
    color: #c9cace;
    display: flex;
    flex-direction: column;
  }
  
  header {
    margin: 1.5rem 0;
    padding-top: 50px;
    text-align: center;
    margin-bottom: 0;
  }
  
  header h1 {
    font-size: 2rem;
    color: #ff4c4c;
  }

  .cat-main{
    padding-top: 30px;
    margin: 0;
  }
  
  .category-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    overflow: hidden; /* Hides scrollbars */
  }
  
  .scroll-btn {
    background-color: #ff4c4c;
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .scroll-btn:hover {
    background-color: #e63b3b;
  }
  
  .store-list {
    display: flex;
    gap: 1rem;
    overflow: hidden; /* Disable scrollbar visibility */
    padding: 1rem 0;
    flex-grow: 1;
    scroll-behavior: smooth;
  }
  
  .store-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    text-align: center;
    min-width: 200px;
    transition: transform 0.3s;
    cursor: pointer;
  }
  
  .store-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
  }
  
  .store-card:hover {
    transform: translateY(-5px);
  }
  
  .store-name {
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 0.5rem;
  }
  
  .hidden {
    display: none;
  }
  
  .menu-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    padding: 2rem;
  }
  
  .menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid #ddd;
    padding: 1rem;
    border-radius: 8px;
    width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .menu-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
  }
  
  .menu-item h3 {
    margin-top: 0.5rem;
    font-size: 1rem;
  }
  
  .category-list {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1rem 0;
  }
  
  .category-btn {
    background-color: #ff4c4c;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
  }
  
  .category-btn:hover {
    background-color: #e63b3b;
  }

  .cat-heading{
    text-align: center;
  }
