/* Base styles */
body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }
  
  .product-gallery,
  .product-details {
    width: 100%;
    max-width: 800px;
    margin-bottom: 20px;
  }
  
  .product-gallery img {
    width: 100%;
    height: auto;
  }
  
  /* Navbar styling */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    flex-wrap: wrap;
  }
  
  .navbar .logo {
    font-size: 1.5rem;
  }
  
  .search-bar input {
    padding: 5px;
  }
  
  .search-bar {
    display: flex;
    align-items: center;
  }
  
  .auth-options button {
    padding: 5px 10px;
    margin-left: 10px;
  }
  
  /* Navbar links */
  .nav-links {
    display: flex;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
  }
  
  .nav-links .dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    padding: 10px;
  }
  
  .nav-links .dropdown:hover .dropdown-content {
    display: block;
  }
  
  /* Responsive adjustments */
  @media (min-width: 768px) {
    .container {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
    }
  
    .product-gallery,
    .product-details {
      width: 45%;
    }
  
    .thumbnail-gallery {
      display: flex;
      gap: 10px;
      margin-top: 10px;
    }
  
    .thumbnail {
      width: 20%;
      cursor: pointer;
    }
  }
  
  @media (max-width: 767px) {
    .product-gallery,
    .product-details {
      width: 100%;
    }
  
    .thumbnail-gallery {
      display: flex;
      gap: 5px;
      overflow-x: auto;
    }
  
    .thumbnail {
      width: 80px;
      flex-shrink: 0;
    }
  
    .navbar .search-bar {
      width: 100%;
      margin-top: 10px;
    }
  
    .navbar .nav-links,
    .navbar .auth-options {
      width: 100%;
      display: flex;
      justify-content: center;
      margin-top: 10px;
      flex-wrap: wrap;
    }
  }
  
  /* Footer */
  footer {
    background-color: #333;
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
    max-width: 1000px;
    gap: 20px;
  }
  
  .footer-section {
    flex: 1 1 150px;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-bottom {
    padding-top: 10px;
  }
  
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
  }
  /*for fluid image and text box
  .product-image {
  max-width: 100%;
  height: auto;
}
.product-description {
  padding: 15px;
}
@media (max-width: 768px) {
  .product-container {
    flex-direction: column;
    align-items: center;
  }
}
