* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #fff;
    margin: 0;
    padding: 0;
}

.navbar {
  display: flex;
  background: #8e1717;
  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;
  }}
  /* Main content styles */
  /* Main Content */
main {
    max-width: 1000px;
    margin: 100px auto 50px auto;
    padding: 0 1rem;
}

h1 {
    color: #561C24;
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
}

h2 {
    color: #343a40;
    font-size: 28px;
    margin-bottom: 15px;
}

h3 {
    color: #495057;
    font-size: 22px;
    margin-top: 15px;
}

p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: #495057;
}

/* Sections */
section {
    margin-bottom: 40px;
}

.company-overview, .mission, .products-services, .brand-story, .location-hours {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mission {
    background-color: #E8D8C4;
}

/* Products & Services */
.products-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.product-category {
    background-color: #fff;
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.product-category h3 {
    margin-bottom: 0.5rem;
    color: #333;
}
.brand-story{
    background-color: #E8D8C4;
}
/* 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;
    text-decoration: underline;
  }
  
  .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;
  }