/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
  }
  
  .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: #7b7979;
  }

  .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 */
  }
  /* styles.css */  
  .review-form {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .review-form h2 {
    margin-bottom: 15px;
    text-align: center;
  }
  
  .review-form input, .review-form textarea, .review-form button {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
  }
  
  .review-form button {
    background-color: #5cb85c;
    color: white;
    cursor: pointer;
  }
  
  .review-form button:hover {
    background-color: #4cae4c;
  }
  
  .rating {
    margin-bottom: 15px;
  }
  
  .rating label {
    display: block;
    margin-bottom: 5px;
  }
  
  .stars {
    display: flex;
    gap: 5px;
  }
  
  .star {
    font-size: 1.5rem;
    color: #ccc;
    cursor: pointer;
  }
  
  .star:hover, .star:hover ~ .star {
    color: #FFD700;
  }
  
  .reviews-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .reviews-container h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .review-card {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
  }
  
  .review-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
  }
  
  .review-card h3 {
    margin: 0;
  }
  
  .review-card p {
    margin: 5px 0;
  }
  
  .delete-btn {
    background-color: #d9534f;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
  }
  
  .delete-btn:hover {
    background-color: #c9302c;
  }
  
  .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;
  }
  