/** Product list 

.container {
      display: flex;
      min-height: 100vh;
    }

    .sidebar {
      width: 220px;
      background-color: #f4f4f4;
      border-right: 1px solid #ccc;
      padding: 20px;
    }

    .sidebar h2 {
      margin-top: 0;
      color: #d4af37;
    }

    .sidebar a {
      display: block;
      padding: 10px 15px;
      margin-bottom: 10px;
      text-decoration: none;
      color: #333;
      background-color: #fff;
      border-radius: 4px;
      transition: background-color 0.3s ease;
    }

    .sidebar a:hover {
      background-color: #d4af37;
      color: white;
    }

    .product-area {
      flex: 1;
      padding: 30px;
    }

    .product-section {
      display: none;
      animation: fadeIn 0.3s ease;
    }

    .product-section.active {
      display: block;
    }

    .product-section h2 {
      color: #d4af37;
      margin-bottom: 20px;
    }

    .product-card {
      border: 1px solid #ccc;
      padding: 15px;
      margin-bottom: 15px;
      border-radius: 6px;
      background-color: #fafafa;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    **/

.container1 {
      display: flex;
      min-height: 100vh;
    }
.sidebar {
  width: 220px;
  background: linear-gradient(135deg, #fff8dc, #f4f4f4);
  border-right: 1px solid #ccc;
  padding: 20px;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.05);
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  height: fit-content;
}

.sidebar {
  position: sticky;
  top: 25%;
  height: fit-content;
}


.sidebar h2 {
  margin-top: 0;
  color: #d4af37;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.sidebar a {
  display: block;
  padding: 12px 18px;
  margin-bottom: 12px;
  text-decoration: none;
  color: #333;
  background-color: #fff;
  border-radius: 6px;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.sidebar a:hover {
  background-color: #d4af37;
  color: white;
  transform: translateX(5px);
}

    .product-area {
      flex: 1;
      padding: 30px;
    }


    #product-list::before {
  content: "";
  display: block;
  height: 60px; /* Height of the offset */
  margin-top: -60px; /* Negative margin to pull content up */
  visibility: hidden;
}

    

    .product-section {
      display: none;
      animation: fadeIn 0.3s ease;
    }

    .product-section.active {
      display: block;
    }

    .product-section h2 {
      color: #d4af37;
      margin-bottom: 20px;
    }

    .product-card {
      border: 1px solid #ccc;
      padding: 15px;
      margin-bottom: 15px;
      border-radius: 6px;
      background-color: #fafafa;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
