/**/
header {
    background-color: #fff;
    box-shadow: 1px 1px 4px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    height: 40px; /* Increase the height */
    padding: 2px 10%; /* Add top and bottom padding */
  }
  /*Body styling*/
  body {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #3d3c3c;
    background-color: #ddd8d8;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  /**/
  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
  }
  /**/
  .logo {
    font-size: 26px;
    font-weight: bold;
    color: #0d25f7;
    float: left;
    margin-top: 5px;
  }
  /**/
  nav {
    display: flex;
    float: right;
    margin-top: 12px; /* Adjust the margin to center the navigation links */
  }
  /**/
  nav ul {
    list-style: none;
    margin: 0 10px;
  }
  /**/
  nav ul li {
    display: inline-block;
    margin-left: 20px;
    font-size: 18px; /* Increase the font size of the navigation links */
  }
  nav ul li a:hover, /**/
  nav ul li a:active,/**/
  nav ul li a.current {
    border-bottom: 3px solid #e67e22;
  }
  nav ul li a {
    color: #333;
    text-decoration: none;
  }
  nav ul li a:hover {
    color: #e67e22;
  }/* Dropdown Styles */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  .dropdown-toggle {
    cursor: pointer;
  }
  .dropdown-content {
    display: none;
    position: absolute;
    z-index: 1;
  }
  .dropdown:hover .dropdown-content {
    display: block;
  }
  .dropdown-content a {
    display: block;
    padding: 5px;
    text-decoration: none;
    color: #000;
    background-color: #f9f9f9;
  }
  footer {
  margin-top: auto;
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 1rem;
}
.container1 {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  margin-top: 60px;
}
h1 {
  text-align: center;
  font-size: 36px;
}
.product {
  border: 1px solid #ddd;
  margin-bottom: 20px;
  padding: 20px;
}
.product h2 {
  font-size: 24px;
  margin-bottom: 10px;
}
.product p {
  font-size: 16px;
  margin-bottom: 20px;
}
.product .price {
  font-size: 20px;
  font-weight: bold;
  color: red;
}
.product .discount {
  font-size: 16px;
  text-decoration: line-through;
  color: #888;
  margin-right: 10px;
}
.product .discounted-price {
  font-size: 20px;
  color: green;
  font-weight: bold;
}
main {
  flex: 1;
}