.navbar-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1030;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease-out;
  background-color: white;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
body.has-sticky-navbar {
  padding-top: 76px; /* Adjust based on your navbar height */
}

.mobile-menu-toggle {
  background: transparent;
  border: none;
  color: #333;
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s ease;
}
.mobile-menu-toggle:hover {
  color: #7B3F25;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  overflow-y: auto;
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-overlay .mobile-menu-container {
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.mobile-menu-overlay .mobile-menu-header {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.mobile-menu-overlay .close-mobile-menu {
  background: transparent;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}
.mobile-menu-overlay .close-mobile-menu:hover {
  color: #7B3F25;
  transform: rotate(90deg);
}
.mobile-menu-overlay .mobile-menu-content {
  flex: 1;
  padding: 20px 0;
}
.mobile-menu-overlay .mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu-overlay .mobile-menu-item {
  margin-bottom: 15px;
  position: relative;
}
.mobile-menu-overlay .mobile-menu-link {
  display: block;
  font-size: 18px;
  color: #333;
  text-decoration: none;
  padding: 10px 0;
  font-weight: 500;
  transition: all 0.3s ease;
}
.mobile-menu-overlay .mobile-menu-link:hover, .mobile-menu-overlay .mobile-menu-link.active {
  color: #7B3F25;
}
.mobile-menu-overlay .mobile-menu-link.dropdown-toggle {
  position: relative;
}
.mobile-menu-overlay .mobile-menu-link.dropdown-toggle:after {
  content: "\f282";
  font-family: "bootstrap-icons";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.mobile-menu-overlay .mobile-menu-link.dropdown-toggle.active:after {
  transform: translateY(-50%) rotate(180deg);
}
.mobile-menu-overlay .mobile-submenu {
  list-style: none;
  padding: 0 0 0 15px;
  margin: 10px 0 0;
  display: none;
}
.mobile-menu-overlay .mobile-submenu.active {
  display: block;
}
.mobile-menu-overlay .mobile-submenu li {
  margin-bottom: 10px;
}
.mobile-menu-overlay .mobile-submenu .mobile-submenu-link {
  color: #666;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}
.mobile-menu-overlay .mobile-submenu .mobile-submenu-link:hover {
  color: #7B3F25;
}
.mobile-menu-overlay .mobile-menu-footer {
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-overlay.active {
  opacity: 1;
  visibility: visible;
}
.search-overlay.active .search-container {
  transform: translateY(0);
  opacity: 1;
}
.search-overlay .search-container {
  width: 90%;
  max-width: 700px;
  position: relative;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.5s ease-in-out 0.1s;
}
.search-overlay .search-form {
  width: 100%;
}
.search-overlay .search-form .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.search-overlay .search-form .input-group .form-control {
  height: 60px;
  border: none;
  padding-left: 25px;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.95);
}
.search-overlay .search-form .input-group .form-control:focus {
  box-shadow: none;
}
.search-overlay .search-form .input-group .form-control::placeholder {
  color: #777;
  font-style: italic;
}
.search-overlay .search-form .input-group .btn {
  padding-left: 25px;
  padding-right: 25px;
  background: #7B3F25;
  border-color: #7B3F25;
  font-weight: 500;
}
.search-overlay .search-form .input-group .btn:hover {
  background: rgb(83.79375, 42.91875, 25.20625);
}
.search-overlay .search-form .input-group .btn i {
  font-size: 1.2rem;
  margin-right: 5px;
}
.search-overlay .search-suggestions p {
  font-size: 0.9rem;
  opacity: 0.8;
}
.search-overlay .search-suggestions .badge {
  transition: all 0.3s ease;
  font-weight: 500;
}
.search-overlay .search-suggestions .badge:hover {
  background-color: #7B3F25 !important;
  color: white !important;
  transform: translateY(-2px);
}
.search-overlay #closeSearch {
  position: absolute;
  top: -50px;
  right: 0;
  color: white;
  font-size: 1.8rem;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.search-overlay #closeSearch:hover {
  transform: rotate(90deg);
  color: #7B3F25;
}

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

.bg-primary {
  background-color: #7B3F25 !important;
}

.text-primary {
  color: #7B3F25 !important;
}

.btn-primary {
  background-color: #7B3F25;
  border-color: #7B3F25;
}
.btn-primary:hover {
  background-color: rgb(103.396875, 52.959375, 31.103125);
  border-color: rgb(103.396875, 52.959375, 31.103125);
}

.btn-outline-primary {
  color: #7B3F25;
  border-color: #7B3F25;
}
.btn-outline-primary:hover {
  background-color: #7B3F25;
  border-color: #7B3F25;
}

.hero-slider {
  position: relative;
}
.hero-slider .hero-slide {
  height: 450px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-slider .hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.hero-slider .hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}
.hero-slider .hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}
.hero-slider .hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #fff;
}

.product-card {
  border: none;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.product-card .product-img {
  height: 200px;
  object-fit: cover;
}
.product-card .card-body {
  padding: 1.25rem;
}
.product-card .product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #7B3F25;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 1;
}
.product-card .product-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  height: 2.5rem;
  overflow: hidden;
}
.product-card .product-category {
  color: #e67e22;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.product-card .product-price {
  font-weight: 700;
  color: #7B3F25;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.product-card .product-rating {
  color: #f39c12;
  margin-bottom: 0.5rem;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
  height: 250px;
}
.category-card .category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}
.category-card:hover .category-img {
  transform: scale(1.1);
}
.category-card .category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}
.category-card .category-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 0;
}

.benefit-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}
.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.benefit-card .benefit-icon {
  font-size: 3rem;
  color: #7B3F25;
  margin-bottom: 1.5rem;
}
.benefit-card .benefit-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

.testimonial-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 15px;
}
.testimonial-card .testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
}
.testimonial-card .testimonial-author .testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}
.testimonial-card .testimonial-author .testimonial-name {
  font-weight: 600;
  margin-bottom: 0;
}
.testimonial-card .testimonial-author .testimonial-position {
  color: #777;
  font-size: 0.9rem;
}

.newsletter-section {
  background-color: #7B3F25;
  padding: 60px 0;
}
.newsletter-section .newsletter-title {
  color: #fff;
  margin-bottom: 1rem;
}
.newsletter-section .newsletter-text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.section-title {
  position: relative;
  margin-bottom: 3rem;
  text-align: center;
}
.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-title p {
  max-width: 600px;
  margin: 0 auto;
  color: #777;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #7B3F25;
}

.form-control,
.form-select,
textarea.form-control,
input.form-control {
  border: 1px solid #ced4da;
  transition: all 0.3s ease;
}
.form-control:focus,
.form-select:focus,
textarea.form-control:focus,
input.form-control:focus {
  border-color: #7B3F25;
  box-shadow: none;
  outline: none;
}
.form-control:hover:not(:focus),
.form-select:hover:not(:focus),
textarea.form-control:hover:not(:focus),
input.form-control:hover:not(:focus) {
  border-color: rgb(176.9418604651, 186.5, 196.0581395349);
}

.form-check-input:checked {
  background-color: #7B3F25;
  border-color: #7B3F25;
}
.form-check-input:focus {
  border-color: #7B3F25;
  box-shadow: none;
  outline: none;
}

.contact-form .form-control {
  padding: 0.75rem 1rem;
}
.contact-form .form-control:focus {
  border-color: #7B3F25;
  box-shadow: none;
  outline: none;
}
.contact-form .btn-submit {
  background-color: #7B3F25;
  border-color: #7B3F25;
  padding: 0.75rem 2rem;
  font-weight: 500;
}
.contact-form .btn-submit:hover {
  background-color: rgb(83.79375, 42.91875, 25.20625);
  border-color: rgb(83.79375, 42.91875, 25.20625);
}

@media (max-width: 992px) {
  .hero-slider .hero-title {
    font-size: 2.5rem;
  }
  .hero-slider .hero-slide {
    height: 380px;
  }
}
@media (max-width: 768px) {
  .hero-slider .hero-title {
    font-size: 2rem;
  }
  .hero-slider .hero-slide {
    height: 320px;
  }
  .section-title h2 {
    font-size: 2rem;
  }
}
@media (max-width: 576px) {
  .hero-slider .hero-title {
    font-size: 1.8rem;
  }
  .hero-slider .hero-slide {
    height: 280px;
  }
}

/*# sourceMappingURL=frontend.css.map */
