  /* Reset some default styles */
  body,
  h1,
  p,
  form,
  input,
  textarea {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: "Roboto", sans-serif;
    color: #333;
    background-color: #f4f7f6;
    margin: 0;
    padding: 0;
  }

  .navbar {
    display: flex;
    background: #561C24;
    color: #FFFFFF;
    height: 80px;
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    align-items: center;
    padding: 0 20px;
    transition: all 0.3s ease-in-out;
}

.navcontent {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    position: relative;
}

.horiclogo {
    flex-shrink: 0;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
}

.menu-icon div {
    width: 25px;
    height: 3px;
    background-color: #FFFFFF;
    margin: 4px 0;
    transition: all 0.3s ease-in-out;
}

.navbar__menu {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style-type: none;
    transition: max-height 0.3s ease-in-out;
    overflow: hidden;
    margin: 0 auto;
    flex-grow: 1;
}

.navbar__list {
    padding: 0 1rem;
}

.navbar__list a {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 20px;
    position: relative;
}

.navbar__list a:hover {
    color: #E8D8C4;
}

.navbar__listbutt {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
  }
  
  .cart-icon {
    position: relative;
    margin-right: 20px;
    color: #FFFFFF;
  }
  .cart-icon i:hover{
    color: #E8D8C4;
    cursor: pointer;
  }
  .cart-icon i {
    font-size: 24px;
    margin: 10px;
  }
  
  .cart-count {
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: #FF0000;
    color: #FFFFFF;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
  }
  
  #signupbtn {
    background: #C7B7A3;
    border-radius: 5px;
    padding: 10px 20px;
    color: #FFFFFF;
    text-decoration: none;
    margin-right: 0;
  }
  
  #signupbtn:hover {
    background: #E8D8C4;
    transition: 0.3s ease;
  }
  .auth-button{
    background: #C7B7A3;
    border-radius: 5px;
    padding: 10px 20px;
    color: #FFFFFF;
    text-decoration: none;
    margin-right: 0;
  }
  .auth-button:hover{
    background: #E8D8C4;
    transition: 0.3s ease;
  }
  
  @media (max-width: 768px) {
   
  
   
    .menu-icon {
      display: flex;
  }

  .navbar__menu {
      flex-direction: column;
      align-items: center;
      max-height: 0;
      backdrop-filter: 30px blur;
      box-shadow: 0px 0px 40px rgba(167, 168, 172, 0.37);
      border: 2px solid rgba(255, 255, 255, 0.37);
      background-color: #C7B7A3;
      color: #F8F8F6;
      width: 100%;
      position: absolute;
      top: 80px;
      left: 0;
      z-index: 1;
  }

  .navbar.open .navbar__menu {
      max-height: 300px; 
  }

  .navbar__list {
      padding: 10px;
      width: 100%;
      text-align: center;
  }

  .navbar__list a {
      color: #F8F8F6;
  }

  .navbar__list a:hover {
      color: #561C24;
  }

  .navbar__listbutt {
      width: auto;
      display: flex;
      justify-content: center;
      margin: 0;
      margin-left: auto;
  }

  .navbar__listbutt a {
      color: black;
  }}

  .container {
    max-width: 1000px;
    margin: 100px auto 50px auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
  }

  .contact-info,
  .contact-form,
  .address-map {
    background-color: #C8A159;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
  }

  .contact-info h2,
  .contact-form h2,
  .address-map h2 {
    margin-bottom: 20px;
    font-size: 28px;
    color: #7A1315;
    font-weight: 600;
    text-decoration: none;
  }

  .contact-info p,
  .contact-form p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
    text-decoration: none;
    
  }
  .contact-info p a{
    color: #8e1717;
    text-decoration: none;
  }
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
  }

  .contact-form textarea {
    resize: vertical;
  }

  .contact-form button {
    background-color: #8e1717;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
  }

  .contact-form button:hover {
    background-color: #1d1f1f;
  }

  .address-map iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  footer {
    background-color: #2b2d2f;
    color: #fff;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #ddd;
  }

  footer a {
    color: #d0e3ff;
    text-decoration: none;
    font-weight: 500;
  }

  footer a:hover {
    text-decoration: underline;
  }

  @media (max-width: 768px) {
    .contact-form,
    .contact-info,
    .address-map {
      padding: 20px;
    }

    .contact-form button {
      width: 100%;
    }

    .address-map iframe {
      height: 300px;
    }
  }
  /* Footer */
.footer {
    background-color: #8e1717;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
  }
  
  .footer__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer__container > div {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
  }
  
  .footer h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #C7B7A3;
  }
  
  .footer p, .footer a {
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer a:hover {
    color: #C7B7A3;
  }
  
  .footer__links ul {
    list-style-type: none;
    padding: 0;
  }
  
  .footer__links li {
    margin-bottom: 10px;
  }
  
  .footer__social a {
    display: inline-block;
    margin: 0 10px;
    font-size: 18px;
    color: #fff;
    transition: color 0.3s ease;
  }
  
  .footer__social a:hover {
    color: #C7B7A3;
  }
  
  .footer__bottom {
    border-top: 1px solid #C7B7A3;
    padding-top: 20px;
    margin-top: 20px;
  }
  
  .footer__bottom p {
    margin: 0;
    font-size: 14px;
    color: #C7B7A3;
  }

  