/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f6f6f6;
    color: #333;
    height: 1000px;
  }
  
  /* Navbar */
  .navbar {
    position: relative;
    height: 70px;
    background-color: #121212;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    border-radius: 0px 0px 40px 40px;
  }

  .back-icon {
    height: 20px;
    width: 20px;
    object-fit: contain;
    
  }
  
  
  .logo {
    height: 36px;
  }
  
  .back-btn {
    position: absolute;
    left: 16px;
    text-decoration: none;
    color: #333;
    font-size: 18px;
  }
  
  /* Main Layout */
  .product-detail-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    gap: 40px;
    align-items: flex-start;
  }
  
  /* Gallery */
  .gallery {
    flex: 1 1 45%;
    text-align: center;
  }
  
  .main-img {
    width: 100%;
    max-width: 100%;
    border-radius: 30px;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: 0.3s ease;
    margin-top: 30px;
  }
  
  .thumbnail-group {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .thumb {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
    border: 2px solid transparent;
  }
  
  .thumb.active,
  .thumb:hover {
    opacity: 1;
    border: 2px solid #d4af37;
  }
  
  /* Info Section */
  .info {
    flex: 1 1 45%;
  }
  
  .info h1 {
    font-size: 28px;
    margin-bottom: 10px;
    font-family: "Montserrat", sans-serif;
    padding-left: 15px;
  }
  
  .price {
    font-size: 22px;
    color: #b98c00;
    margin-bottom: 20px;
    font-family: "Montserrat", sans-serif;
    padding-left: 15px;
  }
  
  .description {
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
    padding-left: 15px;
    padding-right: 15px;

  }
  
  .order-btn {
    display: inline-block;
    background-color: #a28144;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
    margin-left: 15px;
   
  }
  
  .order-btn:hover {
    background-color: #a17b00;
  }

  .bottom-nav{
    display: none;
}




  
  /* Responsive */
  @media (max-width: 768px) {

    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background-color: #f6f6f6;
      color: #333;
      height: 1400px;
    }


    .product-detail-container {
      flex-direction: column;
      gap: 20px;
      padding: 15px;
    }
  
    .gallery, .info {
      flex: 1 1 100%;
    }
  
    .main-img {
      aspect-ratio: 1 / 1;
    }

    .bottom-nav{
      display: contents;
  }

  .bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 55px;
    background: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 15px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 40px 40px 0px 0px;
    
    
  }
  
   
  .nav-item img {
    width: 85px;
    height: 35px;
    object-fit: contain;
    padding-top: 10px;
  }
    
  
    








  }
  