body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    margin-top: 200px; /* Adjust value as needed */
  }
  
  header {
    box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
      height: 120px; /* Example height */
      overflow: hidden;  
      display: grid;
      place-items: center; 
      margin-bottom: 146px; /* Adjust value as needed */
      margin-top: -16px;
       
  }
  
  .header-content {
    text-align: center;
  }
  
  h1 {
    font-family: 'Forte', sans-serif;
  }
  
  .rounded-h1 {
    border-radius: 48px;
    border: 6px solid black;
    padding: 18px;
    background-color: transparent;
    width: 363px;
  }
  
  img {
    border-radius: 35px;
    margin: 20px 0;
    max-width: 300px; /* Set container width here */
    border:4px solid #a4a4a4;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 0px; /* Adjust the value as needed */
    max-height: 257px; /* Set container width here */  
    min-width: 175px; 
  }
  
  
  .product-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
    padding: 20px;
  }
  
  .product-name {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5em;
    color: #B18F6A;
    text-align: center;
    padding: 10px 0;
    display: block;
    z-index: 1;
  }
  
  .product-container a:hover img {
    transform: scale(1.1);
  }
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-toggle {
    cursor: pointer;
  }
  
  .dropdown-menu {
    display: none; /* Initially hidden */
    position: absolute;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    top: 100%;
    left: 0;
    z-index: 1; /* Ensure it appears above other elements */
    color: #f9f6fa;
  }
  
  .dropdown-menu li a {
    display: block;
    padding: 5px 10px;
    text-decoration: none;
    color: #333;
  }
  
  .dropdown-menu li a:hover {
    background-color: #f2f2f2;
  }
  
  .dropdown-toggle:hover + .dropdown-menu {
    display: block; /* Show the dropdown menu on hover */
  }
  .dropdown-toggle:hover + .dropdown-menu,
  .dropdown-menu:hover {
    display: block; /* Show the dropdown menu on hover of either element */
  }
  header {
    display: flex;
    align-items: center; /* Optional for vertical alignment */
  }
  header {
    display: flex;
    justify-content: center;
  }
  .dropdown-toggle {
    color: #000;
    font-family: 'Forte', sans-serif;
    text-decoration: none;
    font-size: 25px;
  }
    
      