/*Body css*/
.body{
  background-color:  #ccc2a4;
}
/* Navbar css*/
.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #f5f5dc; /* Beige background */
  }

  .top-bar .logo {
    font-family: 'Cursive', sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
  }

  .top-bar .search-bar {
    flex-grow: 1;
    margin: 0 20px;
  }

  .top-bar .cart-login {
    display: flex;
    align-items: center;
  }

  .top-bar .cart-login a {
    margin-left: 15px;
    text-decoration: none;
    color: #000;
  }

  .nav-bar {
    background-color: #fff; /* White background */
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }

  .nav-bar .nav-link {
    color: #000;
    font-weight: 500;
  }

  .nav-bar .nav-link:hover {
    color: #71828e;
  }
  .search-bar input {
    border-radius: 20px;
    padding-right: 40px; /* Space for the icon */
  }
  
  .search-bar i {
    cursor: pointer; /* Make the icon clickable */
  }
  /* Genre Css*/
  .shop-page {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
  }
  
  .genre-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
  }
  
  .genre-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
  }
  
  .genre-card:hover img {
    transform: scale(1.1);
  }
  
  .genre-card .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 1.2em;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  .genre-card:hover .caption {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Footer css*/
  .footer {
    background-color: #343a40;
    color: #f8f9fa;
  }
  
  .footer h5 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .footer p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .footer ul {
    padding: 0;
    list-style: none;
  }
  
  .footer ul li {
    margin-bottom: 0.5rem;
  }
  
  .footer ul li a {
    color: #f8f9fa;
    transition: color 0.3s ease;
  }
  
  .footer ul li a:hover {
    color: #007bff;
  }
  
  .footer .social-icons a {
    font-size: 1.2rem;
    transition: color 0.3s ease;
  }
  
  .footer .social-icons a:hover {
    color: #007bff;
  }
  
  .footer .text-center {
    border-top: 1px solid #495057;
    padding-top: 1rem;
    font-size: 0.85rem;
  }