@import url(https://fonts.googleapis.com/css2?family=Calistoga:wght@300;400;500;600;700;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Kalnia:wght@300;400;500;600;700;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;900&display=swap);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", "Georgia", serif;
  line-height: 1.6;
}

.section {
  padding: 80px 0;
}
.section--light {
  background-color: #F7F0E9;
}
.section--white {
  background-color: #fff;
}
.section--brown {
  background-color: #DECEBF;
}
.section__heading {
  font-family: "Calistoga", "Arial", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #48392E;
  margin-bottom: 20px;
  text-align: center;
  margin-bottom: 50px;
}
.section__text {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
  margin-bottom: 30px;
}
.section__text--large {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
  margin-bottom: 30px;
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.btn-hero {
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  font-weight: 400;
  border-radius: 8px;
  padding: 10px 22px;
}
.btn-hero:hover {
  background-color: #fff;
  text-decoration: none;
}
.btn-hero:hover {
  color: #333;
}

.btn-primary {
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  background-color: #795D49;
  color: #fff;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 400;
}
.btn-primary:hover {
  background-color: #48392E;
  text-decoration: none;
}

.btn-outline-light {
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  background-color: #2D947C;
  color: #fff;
  border: 1px solid #2D947C;
  padding: 8px 20px;
  border-radius: 8px;
}
.btn-outline-light:hover {
  background-color: #fff;
  text-decoration: none;
}
.btn-outline-light:hover {
  color: #333;
}

.btn-outline-dark {
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  background-color: #fff;
  color: #333;
  border: 1px solid #333;
  padding: 10px 22px;
  border-radius: 8px;
}
.btn-outline-dark:hover {
  background-color: #2D947C;
  text-decoration: none;
}
.btn-outline-dark:hover {
  color: #fff;
  border: 1px solid #2D947C;
  background-color: #2D947C;
}
.btn-outline-dark:active {
  color: #fff;
  border: 1px solid #16352E;
  background-color: #16352E;
}

.form-control {
  border: none;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 12px;
  font-size: 1rem;
}
.form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(121, 93, 73, 0.25);
  outline: none;
}

.navbar {
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 992px) {
  .navbar {
    background: #372E27 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  }
}

.navbar.scrolled {
  background: #372E27 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
  font-family: "Kalnia", "Helvetica", sans-serif !important;
  font-weight: 600 !important;
  color: #fff !important;
  font-size: 1.5rem !important;
  text-decoration: none !important;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-brand:hover {
  color: #2D947C !important;
}

.navbar-nav {
  align-items: center !important;
}

/* Navigation Links */
.navbar-nav .nav-link {
  font-family: "Inter", "Helvetica", sans-serif !important;
  font-weight: 400;
  font-size: 15px;
  color: #fff !important;
  margin: 0 8px !important;
  padding: 8px 12px !important;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #2D947C !important;
  transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
  border-bottom: 2px solid #2D947C;
  border-radius: 0;
  color: #2D947C !important;
  transform: translateY(0px) !important;
}

/* Dropdown */
.dropdown {
  position: relative;
}

@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
    margin-top: 8px;
  }
}
.dropdown-menu {
  background: #48392E;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  margin-top: 8px;
  padding: 8px 0;
  min-width: 220px;
}

@media (min-width: 992px) {
  .dropdown-menu {
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
    visibility: hidden;
    transition: all 0.3s ease;
    display: block;
    margin-top: 8px;
  }
  .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
    background: transparent;
  }
}
.dropdown-item {
  font-family: "Inter", "Helvetica", sans-serif !important;
  font-weight: 400;
  font-size: 15px;
  color: #fff !important;
  padding: 10px 20px !important;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin: 2px 8px;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: transparent;
  color: #2D947C !important;
  transform: translateX(4px);
  background-color: transparent !important;
}

.dropdown-item.active {
  color: #2D947C !important;
  background-color: transparent !important;
  border-bottom: none !important;
  border-radius: 10px !important;
  text-decoration: underline !important;
  text-decoration-color: #2D947C !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 10px !important;
}
.dropdown-item.active:hover, .dropdown-item.active:focus {
  transform: translateX(0) !important;
}

/* Cart Icon */
.cart-container {
  position: relative;
  margin: 0 8px;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cart-container:hover {
  transform: translateY(-2px);
}

.cart-icon {
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
}

.cart-container:hover .cart-icon {
  color: #96cabe;
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: linear-gradient(135deg, #115142, #153C33);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
}

/* Button */
.btn-order {
  background: #115142;
  border: 2px solid transparent;
  color: #fff !important;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 20px;
  margin-left: 32px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
}

.btn-order:hover::before {
  left: 100%;
}

.btn-order:hover {
  background: #115142;
  border-color: #fff;
  color: #fff !important;
}

.btn-order:active {
  background: #153C33 !important;
}

/* Mobile Enhancements */
.navbar-toggler {
  border: none;
  padding: 4px 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.1rem #ACACAC;
}

.navbar-toggler:hover {
  background-color: #2D947C;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Menu Styling */
@media (max-width: 1199px) {
  .btn-order {
    margin-left: 12px;
  }
}
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #372E27;
    margin-top: 1rem;
    border-radius: 15px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-height: 80vh;
    overflow-y: auto;
  }
  .navbar-nav .nav-link {
    margin: 4px 0 !important;
    text-align: center;
    border-radius: 10px;
  }
  .navbar-nav .nav-link.active {
    border-bottom: none !important;
    border-radius: 10px !important;
    text-decoration: underline !important;
    text-decoration-color: #2D947C !important;
    text-decoration-thickness: 2px !important;
    text-underline-offset: 10px !important;
  }
  .cart-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 10px auto !important;
    padding: 12px;
    border-radius: 12px;
    width: 45px;
    position: relative;
  }
  .btn-order {
    width: 100%;
    margin: 12px 0 0 0;
    padding: 12px 24px;
  }
  .dropdown-menu {
    background: #48392E;
    border: none;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 5px 0;
    text-align: center;
    border-radius: 10px;
    min-width: 350px;
    margin-top: 8px;
  }
  .dropdown-item {
    width: auto;
  }
}
.hero-section {
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  height: 95vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding-top: 72px;
  padding-bottom: 40px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../assets/images/hero-banner-home.jpg");
}
.hero-section--about {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../assets/images/hero-banner-about.jpg");
}
.hero-section--contact {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../assets/images/contact-banner.jpg");
}
.hero-section h1 {
  font-family: "Calistoga", "Arial", sans-serif;
  font-size: 3.75rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.hero-section p {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 2rem;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .hero-section .h1 {
    font-size: 3rem;
  }
  .hero-section .p {
    font-size: 1rem;
  }
}

.hero-section-alt {
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  height: 95vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
  padding-top: 72px;
  padding-bottom: 24px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../assets/images/hero-menu.jpg");
}
@media (max-width: 768px) {
  .hero-section-alt {
    min-height: 500px;
    height: 85vh;
    padding-top: 60px;
    padding-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .hero-section-alt {
    min-height: 450px;
    height: 80vh;
    padding-top: 50px;
    padding-bottom: 15px;
  }
}
.hero-section-alt .container {
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .hero-section-alt .container {
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .hero-section-alt .container {
    padding-top: 1rem;
  }
}
.hero-section-alt .row {
  width: 100%;
}
.hero-section-alt .row.h-100 {
  height: 100%;
}
@media (max-width: 991px) {
  .hero-section-alt .row.h-100 {
    height: auto;
  }
}
@media (max-width: 991px) {
  .hero-section-alt .image-container {
    display: none;
  }
}
@media (max-width: 991px) {
  .hero-section-alt .text-container {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.hero-section-alt h1 {
  font-family: "Calistoga", "Arial", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
@media (max-width: 991px) {
  .hero-section-alt h1 {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .hero-section-alt h1 {
    font-size: 3rem;
    margin-bottom: 0.75rem;
  }
}
@media (max-width: 576px) {
  .hero-section-alt h1 {
    font-size: 3rem;
  }
}
.hero-section-alt h2 {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 8px;
}
@media (max-width: 991px) {
  .hero-section-alt h2 {
    font-size: 1.25rem;
  }
}
@media (max-width: 768px) {
  .hero-section-alt h2 {
    font-size: 1.25rem;
    margin-bottom: 6px;
  }
}
@media (max-width: 576px) {
  .hero-section-alt h2 {
    font-size: 1.25rem;
  }
}
.hero-section-alt p {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .hero-section-alt p {
    font-size: 1.125rem;
  }
}
@media (max-width: 768px) {
  .hero-section-alt p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }
}
@media (max-width: 576px) {
  .hero-section-alt p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
}
.hero-section-alt .hero-image-left {
  height: 450px;
  background-image: url("../assets/images/hero-banner-image.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  width: 100%;
}
.hero-section-alt .hero-content-right {
  text-align: left;
  padding-left: 2rem;
}
@media (max-width: 1200px) {
  .hero-section-alt .hero-content-right {
    padding-left: 1.5rem;
  }
}
@media (max-width: 991px) {
  .hero-section-alt .hero-content-right {
    padding-left: 0;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .hero-section-alt .hero-content-right {
    text-align: center;
    padding: 0 1rem;
  }
}
@media (max-width: 576px) {
  .hero-section-alt .hero-content-right {
    padding: 0 0.5rem;
  }
}
@media (max-width: 768px) {
  .hero-section-alt .btn-hero {
    padding: 12px 24px;
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .hero-section-alt .btn-hero {
    padding: 10px 20px;
    font-size: 0.875rem;
    width: 100%;
    max-width: 200px;
  }
}

.product-hero-section {
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  height: 75vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding-top: 72px;
  padding-bottom: 48px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../assets/images/banner-shop.jpg");
}
.product-hero-section--shop {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../assets/images/banner-shop.jpg");
}
.product-hero-section--single-product {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../assets/images/banner-slider-1.jpg");
}
.product-hero-section--cart {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../assets/images/banner-cart.jpg");
}
.product-hero-section--checkout {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../assets/images/banner-checkout.jpg");
}
.product-hero-section h1 {
  font-family: "Calistoga", "Arial", sans-serif;
  font-size: 3.75rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.product-hero-section p {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 2rem;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .product-hero-section .h1 {
    font-size: 2.25rem;
  }
}

.newsletter-section {
  position: relative;
  z-index: 10;
  margin: 0;
  padding: 80px 0 100px 0;
  background-color: #115142;
}
.newsletter-section--overlap {
  margin: -80px 2rem -100px;
  padding: 0;
  background-color: transparent;
}
@media (max-width: 899px) {
  .newsletter-section--overlap {
    margin: 0;
    padding: 80px 0 100px 0;
    background-color: #115142;
  }
}

.newsletter-card {
  background-color: #115142;
  border-radius: 1000px;
  padding: 40px 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  color: #fff;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .newsletter-section--overlap .newsletter-card {
    background-color: #115142;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    max-width: 980px;
    padding: 40px 40px;
  }
}
@media (max-width: 899px) {
  .newsletter-section:not(.newsletter-section--overlap) .newsletter-card, .newsletter-section--overlap .newsletter-card {
    background-color: transparent;
    box-shadow: none;
    margin: 0;
    max-width: none;
    padding: 0;
  }
}
.newsletter-section:not(.newsletter-section--overlap) .newsletter-card {
  background-color: transparent;
  box-shadow: none;
  margin: 0;
  max-width: none;
  padding: 0;
}
.newsletter-card h3 {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 400;
}

.newsletter-form {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  margin: 0 4rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 900px) {
  .newsletter-section--overlap .newsletter-form {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    margin: 0 4rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 899px) {
  .newsletter-section:not(.newsletter-section--overlap) .newsletter-form, .newsletter-section--overlap .newsletter-form {
    margin: 0 auto;
    border-radius: 25px;
    background-color: rgba(255, 255, 255, 0.2);
    overflow: hidden;
    max-width: none;
  }
}
.newsletter-section:not(.newsletter-section--overlap) .newsletter-form {
  margin: 0 auto;
  border-radius: 50px;
  background-color: #fff;
  overflow: hidden;
}
.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 12px 20px;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1rem;
  border-radius: 25px 0 0 25px;
}
@media (max-width: 480px) {
  .newsletter-form input {
    padding: 12px 15px;
  }
}
@media (min-width: 900px) {
  .newsletter-section--overlap .newsletter-form input {
    color: #fff;
    padding: 12px 20px;
    border-radius: 25px 0 0 25px;
  }
}
@media (max-width: 899px) {
  .newsletter-section:not(.newsletter-section--overlap) .newsletter-form input, .newsletter-section--overlap .newsletter-form input {
    color: #fff;
    padding: 12px 30px;
    border-radius: 0;
  }
}
@media (max-width: 480px) {
  .newsletter-section:not(.newsletter-section--overlap) .newsletter-form input, .newsletter-section--overlap .newsletter-form input {
    padding: 12px 15px;
  }
}
.newsletter-section:not(.newsletter-section--overlap) .newsletter-form input {
  color: #fff;
  padding: 12px 30px;
  border-radius: 0;
}
@media (max-width: 480px) {
  .newsletter-section:not(.newsletter-section--overlap) .newsletter-form input {
    padding: 12px 15px;
  }
}
.newsletter-form input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
@media (min-width: 900px) {
  .newsletter-section--overlap .newsletter-form input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.7);
  }
  .newsletter-section--overlap .newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
  }
}
@media (max-width: 899px) {
  .newsletter-section:not(.newsletter-section--overlap) .newsletter-form input::-moz-placeholder, .newsletter-section--overlap .newsletter-form input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
  }
  .newsletter-section:not(.newsletter-section--overlap) .newsletter-form input::placeholder, .newsletter-section--overlap .newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
  }
}
.newsletter-section:not(.newsletter-section--overlap) .newsletter-form input::-moz-placeholder {
  color: #757575;
  font-weight: 400;
}
.newsletter-section:not(.newsletter-section--overlap) .newsletter-form input::placeholder {
  color: #757575;
  font-weight: 400;
}
.newsletter-form input:focus {
  outline: none;
}
.newsletter-form button {
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  background-color: #153C33;
  color: #fff;
  border-radius: 0 25px 25px 0;
  padding: 12px 25px;
  flex-shrink: 0;
  white-space: nowrap;
}
.newsletter-form button:hover {
  background-color: #16352E;
  text-decoration: none;
}
@media (max-width: 480px) {
  .newsletter-form button {
    padding: 12px 20px;
  }
}
@media (max-width: 360px) {
  .newsletter-form button {
    padding: 12px 15px;
    font-size: 14px;
  }
}
@media (min-width: 900px) {
  .newsletter-section--overlap .newsletter-form button {
    border-radius: 0 25px 25px 0;
    padding: 12px 25px;
  }
}
@media (max-width: 899px) {
  .newsletter-section:not(.newsletter-section--overlap) .newsletter-form button, .newsletter-section--overlap .newsletter-form button {
    border-radius: 0;
    padding: 12px 48px;
  }
}
@media (max-width: 480px) {
  .newsletter-section:not(.newsletter-section--overlap) .newsletter-form button, .newsletter-section--overlap .newsletter-form button {
    padding: 12px 20px;
  }
}
@media (max-width: 360px) {
  .newsletter-section:not(.newsletter-section--overlap) .newsletter-form button, .newsletter-section--overlap .newsletter-form button {
    padding: 12px 15px;
    font-size: 14px;
  }
}
.newsletter-section:not(.newsletter-section--overlap) .newsletter-form button {
  border-radius: 0;
  padding: 12px 48px;
}
@media (max-width: 480px) {
  .newsletter-section:not(.newsletter-section--overlap) .newsletter-form button {
    padding: 12px 20px;
  }
}
@media (max-width: 360px) {
  .newsletter-section:not(.newsletter-section--overlap) .newsletter-form button {
    padding: 12px 15px;
    font-size: 14px;
  }
}

.newsletter-divisor {
  min-height: 100px !important;
  height: 100px;
}
.newsletter-divisor.background-light {
  background-color: #F7F0E9;
}
.newsletter-divisor.background-white {
  background-color: #fff;
}
@media (max-width: 995px) {
  .newsletter-divisor {
    min-height: 100px !important;
    height: 100px;
  }
}
@media (max-width: 899px) {
  .newsletter-divisor {
    visibility: hidden;
    display: none;
  }
}
@media (max-width: 767px) {
  .newsletter-divisor {
    visibility: hidden;
    display: none;
  }
}

.meal-image.meal-1 {
  background-image: url("../assets/images/meal-1.jpg");
}
.meal-image.meal-2 {
  background-image: url("../assets/images/meal-2.jpg");
}
.meal-image.meal-3 {
  background-image: url("../assets/images/meal-3.jpg");
}
.meal-image.meal-4 {
  background-image: url("../assets/images/meal-4.jpg");
}

.popular-meals {
  padding: 80px 0px;
  background-color: #F7F0E9;
}
.popular-meals .section-title {
  font-family: "Calistoga", "Arial", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #48392E;
  margin-bottom: 20px;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .popular-meals .section-title {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .popular-meals .section-title {
    font-size: 2.25rem;
    margin-bottom: 15px;
  }
}

.meal-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}
.meal-card-link:hover {
  text-decoration: none;
  color: inherit;
}
.meal-card-link:hover .meal-card,
.meal-card-link:hover .meal-card-h {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.meal-card-link:hover .meal-card .meal-image,
.meal-card-link:hover .meal-card-h .meal-image {
  transform: scale(1.05);
}
.meal-card-link:hover .meal-card .meal-title,
.meal-card-link:hover .meal-card-h .meal-title {
  color: #115142;
}
.meal-card-link:focus {
  text-decoration: none;
  color: inherit;
}

.meal-card-h {
  overflow: hidden;
  height: 100%;
  padding: 0px;
  display: flex;
  align-items: stretch;
  border: 1px solid #ACACAC;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.meal-card-h .meal-image {
  height: 240px;
  width: 40%;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  border-radius: 0;
  transition: all 0.3s ease;
}
.meal-card-h .meal-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .meal-card-h {
    flex-direction: column;
    height: auto;
  }
  .meal-card-h .meal-image {
    width: 100%;
    height: 200px;
    flex-shrink: 0;
  }
  .meal-card-h .meal-content {
    padding: 18px;
    justify-content: flex-start;
  }
}

.meal-card {
  overflow: hidden;
  height: 100%;
  border: 1px solid #ACACAC;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.meal-card .meal-image {
  height: 240px;
  background-size: cover;
  background-position: center;
  border-radius: 0px 0px 0 0;
  transition: all 0.3s ease;
}
.meal-card .meal-content {
  margin: 20px 16px 12px 20px;
}

.show-more-btn {
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  background-color: #795D49;
  color: #fff;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 400;
  padding: 12px 32px;
  margin-top: 30px;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.show-more-btn:hover {
  background-color: #48392E;
  text-decoration: none;
}
.show-more-btn:hover {
  text-decoration: none;
}
.show-more-btn:focus {
  text-decoration: none;
}

.meal-title {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #795D49;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.meal-description {
  color: #333;
  font-family: "Poppins", "Georgia", serif;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 1.4;
}

.meal-price {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #795D49;
}

.allergens-text {
  text-align: center;
  color: #333;
  font-size: 1rem;
  margin-top: 10px;
}

.allergens-link {
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}
.allergens-link:hover {
  color: #115142;
  text-decoration: underline;
}

.gallery-section {
  background-color: #F7F0E9;
  width: 100%;
}

.gallery-slide {
  height: 550px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}
.gallery-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.gallery-slide .slide-content {
  color: #fff;
  z-index: 2;
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}
.gallery-slide .slide-content h3 {
  font-size: 2.25rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.gallery-slide .slide-content p {
  font-size: 1.25rem;
}

.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  padding: 0 20px;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.8) !important;
  color: #333 !important;
  border-radius: 50% !important;
  width: 50px !important;
  height: 50px !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  transition: all 0.3s ease !important;
}
.owl-carousel .owl-nav .owl-prev:hover,
.owl-carousel .owl-nav .owl-next:hover {
  background: #fff !important;
  transform: scale(1.1) !important;
}
.owl-carousel .owl-nav .owl-prev {
  left: 0;
}
.owl-carousel .owl-nav .owl-next {
  right: 0;
}
.owl-carousel .owl-dots {
  text-align: center;
  position: absolute;
  bottom: 20px;
  width: 100%;
}
.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
  margin: 0 5px;
}
.owl-carousel .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  display: block;
  transition: all 0.3s ease;
}
.owl-carousel .owl-dots .owl-dot.active span, .owl-carousel .owl-dots .owl-dot:hover span {
  background: #fff;
  transform: scale(1.2);
}

.about-section {
  padding: 80px 0;
  background-color: #fff;
}
@media (max-width: 991px) {
  .about-section {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .about-section {
    padding: 40px 0;
  }
}
.about-section .about-image {
  height: 450px;
  background-image: url("../assets/images/about2.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  margin: 20px 20px 20px 0;
}
@media (max-width: 991px) {
  .about-section .about-image {
    height: 350px;
    margin: 10px 0 30px 0;
  }
}
@media (max-width: 767px) {
  .about-section .about-image {
    height: 280px;
    margin: 0 0 30px 0;
    border-radius: 8px;
  }
}
@media (max-width: 575px) {
  .about-section .about-image {
    height: 250px;
  }
}
@media (max-width: 991px) {
  .about-section .about-content {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .about-section .about-content {
    padding: 0 15px;
  }
}
.about-section .about-content h2 {
  font-family: "Calistoga", "Arial", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #48392E;
  margin-bottom: 20px;
  text-align: left;
  margin-bottom: 12px;
}
@media (max-width: 991px) {
  .about-section .about-content h2 {
    text-align: center;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .about-section .about-content h2 {
    font-size: 2.25rem;
    margin-bottom: 15px;
  }
}
.about-section .about-content p {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
  margin-bottom: 30px;
  margin-bottom: 30px;
  margin-right: 28px;
}
@media (max-width: 991px) {
  .about-section .about-content p {
    text-align: center;
    margin-right: 16px;
  }
}
@media (max-width: 767px) {
  .about-section .about-content p {
    margin-bottom: 25px;
    line-height: 1.6;
    margin-right: 0px;
  }
}
@media (max-width: 575px) {
  .about-section .about-content p {
    font-size: 1rem;
  }
}
.about-section .read-more-btn {
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  background-color: #795D49;
  color: #fff;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
  padding: 12px 24px;
  transition: all 0.3s ease;
}
.about-section .read-more-btn:hover {
  background-color: #48392E;
  text-decoration: none;
}
.about-section .read-more-btn:focus {
  outline: none;
}
.about-section .read-more-btn:hover {
  text-decoration: none;
}
@media (max-width: 767px) {
  .about-section .read-more-btn {
    padding: 10px 20px;
  }
}

.contact-section {
  padding: 80px 0;
  background-color: #DECEBF;
}
.contact-section .map-container {
  height: 550px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 20px 20px 20px 0;
}
.contact-section .map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
@media (max-width: 991px) {
  .contact-section .map-container {
    margin: 12px 0 24px 0;
    height: 450px;
  }
}
@media (max-width: 767px) {
  .contact-section .map-container {
    height: 400px;
    margin: 12px 0 24px 0;
  }
}
.contact-section .contact-content h2 {
  font-family: "Calistoga", "Arial", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #48392E;
  margin-bottom: 20px;
  text-align: left;
  margin-bottom: 12px;
}
@media (max-width: 991px) {
  .contact-section .contact-content h2 {
    text-align: center;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .contact-section .contact-content h2 {
    font-size: 2.25rem;
    margin-bottom: 15px;
  }
}
.contact-section .contact-content p {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
  margin-bottom: 30px;
  margin-bottom: 30px;
}
.contact-section .contact-form .form-control {
  border: none;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 12px;
  font-size: 1rem;
}
.contact-section .contact-form .form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(121, 93, 73, 0.25);
  outline: none;
}
.contact-section .contact-form textarea {
  height: 120px;
  resize: vertical;
}
.contact-section .contact-form .send-btn {
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  background-color: #795D49;
  color: #fff;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 400;
  padding: 12px 32px;
  width: 100%;
}
.contact-section .contact-form .send-btn:hover {
  background-color: #48392E;
  text-decoration: none;
}

.founded-section {
  padding: 80px 0;
  background-color: #fff;
}
@media (max-width: 991px) {
  .founded-section {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .founded-section {
    padding: 60px 0;
  }
}
.founded-section .founded-image {
  height: 580px;
  background-image: url("../assets/images/founded.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 15px;
  margin: 20px 20px 20px 0;
}
@media (max-width: 991px) {
  .founded-section .founded-image {
    height: 350px;
    margin: 10px 0 30px 0;
  }
}
@media (max-width: 767px) {
  .founded-section .founded-image {
    height: 350px;
    margin: 0 0 30px 0;
    border-radius: 8px;
  }
}
@media (max-width: 575px) {
  .founded-section .founded-image {
    height: 350px;
  }
}
@media (max-width: 991px) {
  .founded-section .founded-content {
    padding: 12px 0;
    margin: 0 4px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .founded-section .founded-content {
    padding: 8px 0;
  }
}
.founded-section .founded-content h2 {
  font-family: "Calistoga", "Arial", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #115142;
  margin-bottom: 20px;
  text-align: left;
  margin-bottom: 12px;
}
@media (max-width: 991px) {
  .founded-section .founded-content h2 {
    text-align: center;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .founded-section .founded-content h2 {
    font-size: 2.25rem;
    margin-bottom: 15px;
  }
}
.founded-section .founded-content p {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
  margin-bottom: 30px;
  margin-bottom: 30px;
  margin-right: 30px;
}
@media (max-width: 991px) {
  .founded-section .founded-content p {
    text-align: center;
    margin-right: 18px;
  }
}
@media (max-width: 767px) {
  .founded-section .founded-content p {
    margin-bottom: 25px;
    line-height: 1.6;
    margin-right: 0px;
  }
}
@media (max-width: 575px) {
  .founded-section .founded-content p {
    font-size: 1rem;
  }
}
.founded-section .founded-content .read-more-btn {
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  background-color: #115142;
  color: #fff;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
  padding: 12px 24px;
  transition: all 0.3s ease;
}
.founded-section .founded-content .read-more-btn:hover {
  background-color: #153C33;
  text-decoration: none;
}
.founded-section .founded-content .read-more-btn:focus {
  outline: none;
}
.founded-section .founded-content .read-more-btn:hover {
  text-decoration: none;
}
@media (max-width: 767px) {
  .founded-section .founded-content .read-more-btn {
    padding: 10px 20px;
  }
}

.founded-section-a {
  padding: 60px 0;
  background-color: #fff;
}
@media (max-width: 991px) {
  .founded-section-a {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .founded-section-a {
    padding: 40px 0;
  }
}
.founded-section-a .founded-image-a {
  height: 550px;
  background-image: url("../assets/images/about2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 15px;
  margin: 30px 0px 40px 0px;
}
@media (max-width: 991px) {
  .founded-section-a .founded-image-a {
    height: 400px;
    margin: 20px 4px 40px 4px;
  }
}
@media (max-width: 767px) {
  .founded-section-a .founded-image-a {
    height: 350px;
    margin: 0 0 30px 0;
    border-radius: 8px;
  }
}
@media (max-width: 575px) {
  .founded-section-a .founded-image-a {
    height: 300px;
  }
}
.founded-section-a .founded-content-a {
  margin: 24px 4px;
}
@media (max-width: 991px) {
  .founded-section-a .founded-content-a {
    margin: 20px;
  }
}
@media (max-width: 767px) {
  .founded-section-a .founded-content-a {
    margin: 0 4px;
  }
}
@media (max-width: 575px) {
  .founded-section-a .founded-content-a {
    margin: 0 4px;
  }
}
.founded-section-a .founded-content-a h2 {
  font-family: "Calistoga", "Arial", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #48392E;
  margin-bottom: 20px;
  text-align: center;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .founded-section-a .founded-content-a h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .founded-section-a .founded-content-a h2 {
    font-size: 2.25rem;
  }
}
@media (max-width: 767px) {
  .founded-section-a .founded-content-a .row {
    margin: 0;
  }
}
.founded-section-a .founded-content-a p {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
  margin-bottom: 30px;
  font-size: 1rem;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .founded-section-a .founded-content-a p {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: center;
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media (max-width: 575px) {
  .founded-section-a .founded-content-a p {
    font-size: 1rem;
    margin-bottom: 20px;
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media (max-width: 767px) {
  .founded-section-a .founded-content-a p:first-child {
    margin-bottom: 20px;
    padding-left: 0px;
    padding-right: 0px;
  }
}
.founded-section-a .founded-content-a .button-container {
  text-align: center;
  margin-top: 12px;
}
@media (max-width: 767px) {
  .founded-section-a .founded-content-a .button-container {
    margin-top: 20px;
  }
}
.founded-section-a .founded-content-a .read-more-btn {
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  background-color: #795D49;
  color: #fff;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
  padding: 12px 24px;
  transition: all 0.3s ease;
}
.founded-section-a .founded-content-a .read-more-btn:hover {
  background-color: #48392E;
  text-decoration: none;
}
.founded-section-a .founded-content-a .read-more-btn:focus {
  outline: none;
}
.founded-section-a .founded-content-a .read-more-btn:hover {
  text-decoration: none;
}
@media (max-width: 767px) {
  .founded-section-a .founded-content-a .read-more-btn {
    padding: 10px 20px;
  }
}

.stats-section {
  text-align: center;
  padding: 60px 0px 60px 0px;
}
.stats-section .stat-item {
  padding: 2rem;
}
.stats-section .stat-number {
  color: #115142;
  font-family: "Calistoga", "Arial", sans-serif;
  font-weight: 400;
  font-size: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #EFE1D3;
  border-radius: 50%;
  margin: 0 auto 12px auto;
  width: 180px;
  height: 180px;
  line-height: 1;
}
.stats-section .stat-label {
  color: #115142;
  font-family: "Poppins", "Georgia", serif;
  font-size: 1.5rem;
  font-weight: 500;
}

.staff-slider-section {
  width: 100%;
}
.staff-slider-section .staff-slide {
  height: 500px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}
.staff-slider-section .staff-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.staff-slider-section .staff-slide .staff-slide-content {
  color: #fff;
  z-index: 2;
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}
.staff-slider-section .staff-slide .staff-slide-content h3 {
  font-size: 2.25rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.staff-slider-section .staff-slide .staff-slide-content p {
  font-size: 1.25rem;
}
.staff-slider-section .section-title {
  font-family: "Calistoga", "Arial", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #115142;
  margin-bottom: 20px;
  text-align: center;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .staff-slider-section .section-title {
    font-size: 2.25rem;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .staff-slider-section .section-title {
    font-size: 2.25rem;
  }
}
.staff-slider-section .owl-carousel .owl-dots .owl-dot span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  display: block;
  transition: all 0.3s ease;
}
.staff-slider-section .owl-carousel .owl-dots .owl-dot.active span, .staff-slider-section .owl-carousel .owl-dots .owl-dot:hover span {
  background: #115142 !important;
  transform: scale(1.2);
}

.location-section {
  padding: 80px 0px;
}
.location-section .section-title {
  font-family: "Calistoga", "Arial", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #115142;
  margin-bottom: 20px;
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .location-section .section-title {
    font-size: 2.25rem;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .location-section .section-title {
    font-size: 2.25rem;
  }
}
.location-section .button-container {
  text-align: center;
  margin: 12px 0 12px 0;
}
.location-section .location-container {
  padding: 0px 20px;
}
.location-section .location-card {
  padding: 0;
  margin-bottom: 0px;
  height: 100%;
  border: 1px solid #ACACAC;
  border-radius: 8px;
}
.location-section .location-image {
  height: 240px;
  min-height: 240px;
  background-size: cover;
  background-position: center;
  border-radius: 8px 0 0 8px;
}
@media (max-width: 767px) {
  .location-section .location-image {
    margin-bottom: 25px;
    border-radius: 8px 8px 0 0;
  }
}
@media (max-width: 575px) {
  .location-section .location-image {
    margin-bottom: 20px;
  }
}
.location-section .location-image.location-image-1 {
  background-image: url("../assets/images/location1.jpg");
}
.location-section .location-image.location-image-2 {
  background-image: url("../assets/images/location2.jpg");
}
.location-section .location-image.location-image-3 {
  background-image: url("../assets/images/location3.jpg");
}
.location-section .location-image.location-image-4 {
  background-image: url("../assets/images/location4.jpg");
}
.location-section .location-content {
  padding: 20px;
}
.location-section .location-content h3 {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2D947C;
  margin-bottom: 15px;
  padding-right: 16px;
}
.location-section .location-content p {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1.125rem;
  color: #333;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  padding-right: 16px;
}
.location-section .location-content p i {
  color: #2D947C;
  margin-right: 16px;
  width: 16px;
  font-size: 1.25rem;
}

.staff-cards-section {
  padding: 80px 0px;
  background-color: #F7F0E9;
}
.staff-cards-section .section-title {
  font-family: "Calistoga", "Arial", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #115142;
  margin-bottom: 20px;
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .staff-cards-section .section-title {
    font-size: 2.25rem;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .staff-cards-section .section-title {
    font-size: 2.25rem;
  }
}

.staff-container {
  padding: 0px 0px;
}

.staff-card .col-md-4 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.staff-card {
  background-color: #fff;
  border-radius: 8px;
  border: 2px solid rgba(45, 148, 124, 0.5);
  padding: 40px 32px;
  margin-bottom: 0px;
  height: 100%;
}
.staff-card .staff-image {
  height: 180px;
  width: 180px;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  padding-left: 12px;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .staff-card .staff-image {
    margin-bottom: 12px;
  }
}
@media (max-width: 575px) {
  .staff-card .staff-image {
    margin-bottom: 8px;
  }
}
.staff-card .staff-image.staff-photo-1 {
  background-image: url("../assets/images/staff-card-1.jpg");
}
.staff-card .staff-image.staff-photo-2 {
  background-image: url("../assets/images/staff-card-2.jpg");
}
.staff-card .staff-image.staff-photo-3 {
  background-image: url("../assets/images/staff-card-3.jpg");
}
.staff-card .staff-image.staff-photo-4 {
  background-image: url("../assets/images/staff-card-4.jpg");
}
.staff-card .staff-content {
  padding-left: 12px;
  padding-right: 12px;
}
.staff-card .staff-content h3 {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #795D49;
  margin-bottom: 8px;
}
.staff-card .staff-content p {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1rem;
  color: #757575;
  margin-bottom: 0px;
  padding-right: 12px;
  line-height: 1.6;
}
.staff-card .staff-content .social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  justify-content: center;
}
@media (max-width: 576px) {
  .staff-card .staff-content .social-icons {
    gap: 10px;
  }
}
.staff-card .staff-content .social-icons .social-icon {
  width: 35px;
  height: 35px;
  background-color: #115142;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (max-width: 576px) {
  .staff-card .staff-content .social-icons .social-icon {
    width: 40px;
    height: 40px;
    font-size: 0.875rem;
  }
}
.staff-card .staff-content .social-icons .social-icon:hover {
  background-color: #2D947C;
  color: #fff;
}

.staff-card-vertical .col-md-4 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.staff-card-vertical {
  background-color: #fff;
  border-radius: 8px;
  border: 2px solid rgba(45, 148, 124, 0.5);
  padding: 40px 16px;
  margin-bottom: 0px;
}
.staff-card-vertical .justify-content-center {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.staff-card-vertical .staff-image {
  height: 150px;
  width: 150px;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  margin: 0 auto 20px auto;
}
.staff-card-vertical .staff-image.staff-photo-1 {
  background-image: url("../assets/images/staff-card-1.jpg");
}
.staff-card-vertical .staff-image.staff-photo-2 {
  background-image: url("../assets/images/staff-card-2.jpg");
}
.staff-card-vertical .staff-image.staff-photo-3 {
  background-image: url("../assets/images/staff-card-3.jpg");
}
.staff-card-vertical .staff-image.staff-photo-4 {
  background-image: url("../assets/images/staff-card-4.jpg");
}
.staff-card-vertical .staff-content {
  text-align: center;
  padding: 0 10px;
}
.staff-card-vertical .staff-content h3 {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #795D49;
  margin-bottom: 8px;
}
.staff-card-vertical .staff-content p {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1rem;
  color: #757575;
  margin-bottom: 0px;
  line-height: 1.6;
}
.staff-card-vertical .staff-content p i {
  color: #2D947C;
  margin-right: 10px;
  width: 16px;
  font-size: 1.25rem;
}
.staff-card-vertical .staff-content .social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  justify-content: center;
}
@media (max-width: 576px) {
  .staff-card-vertical .staff-content .social-icons {
    gap: 10px;
  }
}
.staff-card-vertical .staff-content .social-icons .social-icon {
  width: 35px;
  height: 35px;
  background-color: #115142;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (max-width: 576px) {
  .staff-card-vertical .staff-content .social-icons .social-icon {
    width: 40px;
    height: 40px;
    font-size: 0.875rem;
  }
}
.staff-card-vertical .staff-content .social-icons .social-icon:hover {
  background-color: #2D947C;
  color: #fff;
}

.staff-card-vertical.has-image .staff-content p {
  text-align: left;
}

.testimonials-section {
  padding: 80px 0px;
  background-color: #F7F0E9;
}
.testimonials-section .section-title {
  font-family: "Calistoga", "Arial", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #115142;
  margin-bottom: 20px;
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .testimonials-section .section-title {
    font-size: 2.25rem;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .testimonials-section .section-title {
    font-size: 2.25rem;
  }
}

.testimonials-container {
  padding: 0px 0px;
}

.testimonials-card .col-md-4 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials-card {
  background-color: #fff;
  border-radius: 8px;
  border: 2px solid rgba(45, 148, 124, 0.5);
  padding: 40px 32px;
  margin-bottom: 0px;
  height: 100%;
}
.testimonials-card .testimonials-image {
  height: 180px;
  width: 180px;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  padding-left: 12px;
}
@media (max-width: 767px) {
  .testimonials-card .testimonials-image {
    margin-bottom: 12px;
  }
}
@media (max-width: 575px) {
  .testimonials-card .testimonials-image {
    margin-bottom: 8px;
  }
}
.testimonials-card .testimonials-image.testimonials-photo-1 {
  background-image: url("../assets/images/testimonial1.jpg");
}
.testimonials-card .testimonials-image.testimonials-photo-2 {
  background-image: url("../assets/images/testimonial2.jpg");
}
.testimonials-card .testimonials-image.testimonials-photo-3 {
  background-image: url("../assets/images/testimonial3.jpg");
}
.testimonials-card .testimonials-image.testimonials-photo-4 {
  background-image: url("../assets/images/testimonial4.jpg");
}
.testimonials-card .testimonials-content {
  padding-left: 12px;
  padding-right: 12px;
}
.testimonials-card .testimonials-content .testimonials-stars {
  color: #2D947C;
  font-size: 20px;
  margin-bottom: 12px;
}
.testimonials-card .testimonials-content h3 {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #795D49;
  margin-bottom: 15px;
}
.testimonials-card .testimonials-content p {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1rem;
  color: #333;
  margin-bottom: 0px;
  padding-right: 12px;
  line-height: 1.6;
}
.testimonials-card .testimonials-content p i {
  color: #2D947C;
  margin-right: 10px;
  width: 16px;
  font-size: 1.25rem;
}

.testimonials-card-vertical .col-md-4 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials-card-vertical {
  background-color: #fff;
  border-radius: 8px;
  border: 2px solid rgba(45, 148, 124, 0.5);
  padding: 40px 16px;
  margin-bottom: 0px;
}
.testimonials-card-vertical .justify-content-center {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.testimonials-card-vertical .testimonials-image {
  height: 150px;
  width: 150px;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  margin: 0 auto 20px auto;
}
.testimonials-card-vertical .testimonials-image.testimonials-photo-1 {
  background-image: url("../assets/images/testimonial1.jpg");
}
.testimonials-card-vertical .testimonials-image.testimonials-photo-2 {
  background-image: url("../assets/images/testimonial2.jpg");
}
.testimonials-card-vertical .testimonials-image.testimonials-photo-3 {
  background-image: url("../assets/images/testimonial3.jpg");
}
.testimonials-card-vertical .testimonials-image.testimonials-photo-4 {
  background-image: url("../assets/images/testimonial4.jpg");
}
.testimonials-card-vertical .testimonials-content {
  text-align: center;
  padding: 0 10px;
}
.testimonials-card-vertical .testimonials-content .testimonials-stars {
  color: #2D947C;
  font-size: 20px;
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 2px;
}
.testimonials-card-vertical .testimonials-content h3 {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #795D49;
  margin-bottom: 15px;
}
.testimonials-card-vertical .testimonials-content p {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1rem;
  color: #333;
  margin-bottom: 0px;
  line-height: 1.6;
}
.testimonials-card-vertical .testimonials-content p i {
  color: #2D947C;
  margin-right: 10px;
  width: 16px;
  font-size: 1.25rem;
}

.testimonials-card-vertical.has-image .testimonials-content p {
  text-align: left;
}

.contact-alt-section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .contact-alt-section {
    padding: 40px 0;
  }
}
.contact-alt-section .map-container {
  height: 540px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 20px 0;
}
@media (max-width: 992px) {
  .contact-alt-section .map-container {
    height: 350px;
    margin: 20px 0;
  }
}
@media (max-width: 768px) {
  .contact-alt-section .map-container {
    height: 300px;
    margin: 10px 0;
  }
}
.contact-alt-section .map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
@media (max-width: 768px) {
  .contact-alt-section .contact-content {
    padding: 20px 0;
  }
}
.contact-alt-section .contact-content h2 {
  font-family: "Calistoga", "Arial", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #115142;
  margin-bottom: 20px;
  text-align: left;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .contact-alt-section .contact-content h2 {
    text-align: center;
    font-size: 1.875rem;
  }
}
.contact-alt-section .contact-content p {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
  margin-bottom: 30px;
  margin-bottom: 30px;
  margin-right: 12px;
}
@media (max-width: 768px) {
  .contact-alt-section .contact-content p {
    margin-right: 0;
    text-align: center;
  }
}
.contact-alt-section .contact-form-alt .form-control {
  border: 1px solid #2D947C;
  border-radius: 15px;
  padding: 12px 20px;
  margin-bottom: 12px;
  font-size: 1rem;
}
@media (max-width: 576px) {
  .contact-alt-section .contact-form-alt .form-control {
    padding: 10px 15px;
    font-size: 0.875rem;
  }
}
.contact-alt-section .contact-form-alt .form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(45, 148, 124, 0.25);
  outline: none;
}
.contact-alt-section .contact-form-alt textarea {
  height: 120px;
  resize: vertical;
}
@media (max-width: 576px) {
  .contact-alt-section .contact-form-alt textarea {
    height: 100px;
  }
}
.contact-alt-section .contact-form-alt .send-btn {
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  background-color: #115142;
  color: #fff;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 400;
  padding: 12px 32px;
  width: 100%;
}
.contact-alt-section .contact-form-alt .send-btn:hover {
  background-color: #153C33;
  text-decoration: none;
}
@media (max-width: 576px) {
  .contact-alt-section .contact-form-alt .send-btn {
    padding: 10px 24px;
    font-size: 0.875rem;
  }
}

.contact-section-overlap {
  padding: 80px 0px;
  background-color: #F7F0E9;
  position: relative;
}
@media (max-width: 768px) {
  .contact-section-overlap {
    padding: 40px 0;
  }
}
.contact-section-overlap .container {
  position: relative;
  z-index: 2;
}
.contact-section-overlap .info-content {
  padding: 40px 60px;
  background-color: #48392E;
  border-radius: 15px;
  margin-left: 0px;
  margin-right: 20px;
}
@media (max-width: 992px) {
  .contact-section-overlap .info-content {
    padding: 50px 40px;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .contact-section-overlap .info-content {
    padding: 20px 30px;
    margin-left: 0px;
    margin-right: 0px;
  }
}
@media (max-width: 576px) {
  .contact-section-overlap .info-content {
    padding: 30px 20px;
    margin-left: 0px;
    margin-right: 0px;
  }
}
.contact-section-overlap .info-content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translateY(-50%);
  width: 40%;
  height: 100%;
  background-color: #fff;
  border-radius: 15px;
  z-index: -1;
}
@media (max-width: 1199px) {
  .contact-section-overlap .info-content::before {
    width: 74%;
  }
}
@media (max-width: 992px) {
  .contact-section-overlap .info-content::before {
    display: none;
  }
}
.contact-section-overlap .info-content .info-content-text {
  padding-bottom: 20px;
}
.contact-section-overlap .info-content .info-content-text h2 {
  font-family: "Calistoga", "Arial", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #115142;
  margin-bottom: 20px;
  color: #fff;
  text-align: left;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .contact-section-overlap .info-content .info-content-text h2 {
    text-align: center;
    font-size: 1.875rem;
  }
}
.contact-section-overlap .info-content .info-content-text p {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #fff;
  font-size: 20px;
  margin-bottom: 30px;
  margin-right: 12px;
}
@media (max-width: 768px) {
  .contact-section-overlap .info-content .info-content-text p {
    font-size: 1rem;
    margin-right: 0;
    text-align: center;
  }
}
.contact-section-overlap .info-content .info-content-contact {
  margin-left: 8px;
  padding-bottom: 24px;
}
.contact-section-overlap .info-content .info-content-contact p {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #fff;
  font-size: 20px;
  margin-bottom: 8px;
  margin-right: 12px;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .contact-section-overlap .info-content .info-content-contact p {
    font-size: 1rem;
    margin-right: 0;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .contact-section-overlap .info-content .info-content-contact p {
    font-size: 0.875rem;
  }
}
.contact-section-overlap .info-content .info-content-contact i {
  color: #fff;
  margin-right: 16px;
  width: 16px;
  font-size: 1.5rem;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .contact-section-overlap .info-content .info-content-contact i {
    margin-right: 12px;
    font-size: 1.25rem;
  }
}
.contact-section-overlap .info-content .info-content-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  justify-content: center;
}
@media (max-width: 576px) {
  .contact-section-overlap .info-content .info-content-social {
    gap: 10px;
  }
}
.contact-section-overlap .info-content .info-content-social .social-icon {
  width: 50px;
  height: 50px;
  background-color: #115142;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (max-width: 576px) {
  .contact-section-overlap .info-content .info-content-social .social-icon {
    width: 40px;
    height: 40px;
    font-size: 0.875rem;
  }
}
.contact-section-overlap .info-content .info-content-social .social-icon:hover {
  background-color: #2D947C;
  color: #fff;
}
.contact-section-overlap .contact-content {
  background-color: #fff;
  padding: 100px 60px 100px 12px;
  border-radius: 0px 15px 15px 0px;
  margin-left: -12px;
}
@media (max-width: 1199px) {
  .contact-section-overlap .contact-content {
    padding: 40px 30px !important;
    border-radius: 15px;
  }
}
@media (max-width: 992px) {
  .contact-section-overlap .contact-content {
    width: 100%;
    padding: 40px 30px;
    border-radius: 15px;
    margin-left: 0px;
  }
}
@media (max-width: 768px) {
  .contact-section-overlap .contact-content {
    padding: 30px 20px;
    margin-left: 0px;
  }
}
@media (max-width: 576px) {
  .contact-section-overlap .contact-content {
    width: 96%;
    padding: 30px 20px;
    margin-left: 8px;
    margin-right: 8px;
  }
}
.contact-section-overlap .contact-content h2 {
  font-family: "Calistoga", "Arial", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #48392E;
  margin-bottom: 20px;
  text-align: left;
  color: #795D49;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .contact-section-overlap .contact-content h2 {
    text-align: center;
    font-size: 1.875rem;
  }
}
.contact-section-overlap .contact-content p {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
  margin-bottom: 30px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .contact-section-overlap .contact-content p {
    text-align: center;
  }
}
.contact-section-overlap .contact-content .contact-form-alt-2 .form-control {
  border: 1px solid #757575;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 12px;
  font-size: 1rem;
}
@media (max-width: 576px) {
  .contact-section-overlap .contact-content .contact-form-alt-2 .form-control {
    padding: 10px;
    font-size: 0.875rem;
  }
}
.contact-section-overlap .contact-content .contact-form-alt-2 .form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(121, 93, 73, 0.25);
  outline: none;
}
.contact-section-overlap .contact-content .contact-form-alt-2 textarea {
  height: 120px;
  resize: vertical;
}
@media (max-width: 576px) {
  .contact-section-overlap .contact-content .contact-form-alt-2 textarea {
    height: 100px;
  }
}
.contact-section-overlap .contact-content .contact-form-alt-2 .send-btn-outline-brown {
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  background-color: #fff;
  color: #795D49;
  border: 2px solid #795D49;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  padding: 12px 32px;
  width: 100%;
}
.contact-section-overlap .contact-content .contact-form-alt-2 .send-btn-outline-brown:hover {
  background-color: #795D49;
  text-decoration: none;
}
@media (max-width: 576px) {
  .contact-section-overlap .contact-content .contact-form-alt-2 .send-btn-outline-brown {
    padding: 10px 24px;
    font-size: 0.875rem;
  }
}
.contact-section-overlap .contact-content .contact-form-alt-2 .send-btn-outline-brown:hover {
  color: #fff;
}

.contact-section-large {
  padding: 80px 0px;
}
@media (max-width: 768px) {
  .contact-section-large {
    padding: 40px 0;
  }
}
.contact-section-large .info-content {
  border-radius: 15px;
  margin-left: 8px;
  margin-right: 8px;
}
@media (max-width: 768px) {
  .contact-section-large .info-content {
    margin-bottom: 30px;
  }
}
.contact-section-large .info-content .info-content-text {
  padding-bottom: 20px;
}
.contact-section-large .info-content .info-content-text h2 {
  font-family: "Calistoga", "Arial", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #115142;
  margin-bottom: 20px;
  color: #795D49;
  text-align: left;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .contact-section-large .info-content .info-content-text h2 {
    text-align: center;
    font-size: 1.875rem;
  }
}
.contact-section-large .info-content .info-content-text p {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
  margin-bottom: 30px;
  font-size: 20px;
  margin-bottom: 30px;
  margin-right: 12px;
}
@media (max-width: 768px) {
  .contact-section-large .info-content .info-content-text p {
    font-size: 1rem;
    margin-right: 0;
    text-align: center;
  }
}
.contact-section-large .info-content .info-content-contact {
  margin-left: 8px;
  padding-bottom: 24px;
}
.contact-section-large .info-content .info-content-contact p {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #333;
  font-size: 20px;
  margin-bottom: 8px;
  margin-right: 12px;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .contact-section-large .info-content .info-content-contact p {
    font-size: 1rem;
    margin-right: 0;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .contact-section-large .info-content .info-content-contact p {
    font-size: 0.875rem;
  }
}
.contact-section-large .info-content .info-content-contact i {
  margin-right: 24px;
  color: #48392E;
  width: 16px;
  font-size: 1.5rem;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .contact-section-large .info-content .info-content-contact i {
    margin-right: 16px;
    font-size: 1.25rem;
  }
}
.contact-section-large .contact-content .contact-form-alt-3 {
  border: 1px solid #757575;
  border-radius: 8px;
  padding: 60px;
}
@media (max-width: 768px) {
  .contact-section-large .contact-content .contact-form-alt-3 {
    padding: 30px;
  }
}
@media (max-width: 576px) {
  .contact-section-large .contact-content .contact-form-alt-3 {
    padding: 20px;
  }
}
.contact-section-large .contact-content .contact-form-alt-3 .form-control {
  border: 1px solid #757575;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 12px;
  font-size: 1rem;
}
@media (max-width: 576px) {
  .contact-section-large .contact-content .contact-form-alt-3 .form-control {
    padding: 10px;
    font-size: 0.875rem;
  }
}
.contact-section-large .contact-content .contact-form-alt-3 .form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(121, 93, 73, 0.25);
  outline: none;
}
.contact-section-large .contact-content .contact-form-alt-3 textarea {
  height: 120px;
  resize: vertical;
}
@media (max-width: 576px) {
  .contact-section-large .contact-content .contact-form-alt-3 textarea {
    height: 100px;
  }
}
.contact-section-large .contact-content .contact-form-alt-3 .send-btn-brown {
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  background-color: #795D49;
  color: #fff;
  border: 2px solid #795D49;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 400;
  padding: 12px 32px;
  width: 100%;
}
.contact-section-large .contact-content .contact-form-alt-3 .send-btn-brown:hover {
  background-color: #48392E;
  text-decoration: none;
}
@media (max-width: 576px) {
  .contact-section-large .contact-content .contact-form-alt-3 .send-btn-brown {
    padding: 10px 24px;
    font-size: 0.875rem;
  }
}
.contact-section-large .contact-content .contact-form-alt-3 .send-btn-brown:hover {
  color: #fff;
  border: 2px solid #48392E;
}
.contact-section-large .map-container {
  padding: 30px 0px;
}
@media (max-width: 768px) {
  .contact-section-large .map-container {
    padding: 20px 0;
    margin-bottom: 20px;
  }
}
.contact-section-large .map-container iframe {
  width: 100%;
  display: block;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .contact-section-large .map-container iframe {
    height: 300px !important;
  }
}
@media (max-width: 576px) {
  .contact-section-large .map-container iframe {
    height: 250px !important;
  }
}

.banner-section {
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
@media (max-width: 768px) {
  .banner-section {
    height: 400px;
    padding: 0 20px;
  }
}
@media (max-width: 576px) {
  .banner-section {
    height: 350px;
    padding: 0 15px;
  }
}
.banner-section--contact {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("../assets/images/banner-1.jpg");
}
.banner-section--small {
  height: 400px;
}
@media (max-width: 768px) {
  .banner-section--small {
    height: 350px;
  }
}
@media (max-width: 576px) {
  .banner-section--small {
    height: 300px;
  }
}
.banner-section--large {
  height: 600px;
}
@media (max-width: 768px) {
  .banner-section--large {
    height: 500px;
  }
}
@media (max-width: 576px) {
  .banner-section--large {
    height: 400px;
  }
}
.banner-section h2 {
  font-family: "Calistoga", "Arial", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .banner-section h2 {
    font-size: 2.25rem;
  }
}
@media (max-width: 576px) {
  .banner-section h2 {
    font-size: 1.875rem;
  }
}
.banner-section h3 {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1.875rem;
  font-weight: 400;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .banner-section h3 {
    font-size: 1.5rem;
  }
}
@media (max-width: 576px) {
  .banner-section h3 {
    font-size: 1.25rem;
  }
}
.banner-section p {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 2rem;
  opacity: 0.9;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .banner-section p {
    font-size: 1.125rem;
    width: 80%;
  }
}
@media (max-width: 576px) {
  .banner-section p {
    font-size: 1rem;
    width: 95%;
  }
}

.faq-section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .faq-section {
    padding: 40px 0;
  }
}
.faq-section .section-title {
  font-family: "Calistoga", "Arial", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #115142;
  margin-bottom: 20px;
  color: #795D49;
  text-align: center;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .faq-section .section-title {
    font-size: 2.25rem;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .faq-section .section-title {
    font-size: 2.25rem;
  }
}
.faq-section .accordion-button {
  font-size: 2.25rem;
  color: #795D49;
  background-color: transparent !important;
  border: none;
  border-radius: 8px 8px 0px 0px;
  padding: 36px 30px;
  box-shadow: none;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}
@media (max-width: 768px) {
  .faq-section .accordion-button {
    font-size: 1.25rem;
    padding: 20px 15px;
  }
}
@media (max-width: 576px) {
  .faq-section .accordion-button {
    font-size: 1.125rem;
    padding: 15px 10px;
  }
}
.faq-section .accordion-button:hover {
  color: #2D947C;
}
.faq-section .accordion-button:focus {
  box-shadow: none;
}
.faq-section .accordion-button.collapsed {
  border-radius: 8px;
  padding: 36px 30px;
}
@media (max-width: 768px) {
  .faq-section .accordion-button.collapsed {
    padding: 20px 15px;
  }
}
@media (max-width: 576px) {
  .faq-section .accordion-button.collapsed {
    padding: 15px 10px;
  }
}
.faq-section .accordion-button:not(.collapsed) {
  color: #2D947C;
  border-bottom: 3px solid #96cabe;
  background-color: #fff;
}
.faq-section .accordion-button:not(.collapsed):focus {
  box-shadow: none;
  border-bottom: 3px solid #96cabe;
}
.faq-section .accordion-button::after {
  display: none;
}
.faq-section .accordion-button::before {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #2D947C;
  font-size: 1.2em;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .faq-section .accordion-button::before {
    right: 15px;
    font-size: 1em;
  }
}
@media (max-width: 576px) {
  .faq-section .accordion-button::before {
    right: 10px;
    font-size: 0.9em;
  }
}
.faq-section .accordion-button:not(.collapsed)::before {
  transform: translateY(-50%) rotate(90deg);
  color: #2D947C;
}
.faq-section .accordion-button:hover::before {
  color: #2D947C;
}
.faq-section .accordion-item {
  border: 3px solid #dee2e6;
  border-radius: 0px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .faq-section .accordion-item {
    margin-bottom: 15px;
  }
}
.faq-section .accordion-item:hover {
  border-color: #2D947C;
}
.faq-section .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: #2D947C;
}
.faq-section .accordion-body {
  padding: 30px;
  color: #757575;
  font-size: 1rem;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .faq-section .accordion-body {
    padding: 20px;
    font-size: 0.875rem;
  }
}
@media (max-width: 576px) {
  .faq-section .accordion-body {
    padding: 15px;
  }
}

.faq-banner-section {
  background-color: #115142;
  padding: 80px 0 100px 0;
}
@media (max-width: 768px) {
  .faq-banner-section {
    padding: 40px 0 60px 0;
  }
}
.faq-banner-section .section-title {
  font-family: "Calistoga", "Arial", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #115142;
  margin-bottom: 20px;
  color: #fff;
  text-align: center;
  margin-bottom: 28px;
}
@media (max-width: 768px) {
  .faq-banner-section .section-title {
    font-size: 2.25rem;
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .faq-banner-section .section-title {
    font-size: 2.25rem;
  }
}
.faq-banner-section .faq-search-form {
  width: 100%;
}
.faq-banner-section .search-input-group {
  display: flex;
  background-color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  overflow: hidden;
}
.faq-banner-section .faq-search-input {
  flex: 1;
  min-width: 0;
  border: none;
  padding: 12px 30px;
  font-size: 1.25rem;
  color: #333;
  background-color: #fff;
  outline: none;
  border-radius: 0;
}
@media (max-width: 768px) {
  .faq-banner-section .faq-search-input {
    padding: 10px 20px;
    font-size: 1rem;
    flex: 3;
  }
}
@media (max-width: 480px) {
  .faq-banner-section .faq-search-input {
    padding: 10px 15px;
  }
}
.faq-banner-section .faq-search-input::-moz-placeholder {
  color: #757575;
  font-weight: 400;
}
.faq-banner-section .faq-search-input::placeholder {
  color: #757575;
  font-weight: 400;
}
.faq-banner-section .faq-search-btn {
  background-color: #153C33;
  color: #ffffff;
  border: none;
  padding: 12px 48px;
  border-radius: 0;
  transition: all 0.3s ease;
  flex-shrink: 0;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .faq-banner-section .faq-search-btn {
    padding: 10px 30px;
  }
}
@media (max-width: 480px) {
  .faq-banner-section .faq-search-btn {
    padding: 10px 20px;
  }
}
@media (max-width: 360px) {
  .faq-banner-section .faq-search-btn {
    padding: 10px 15px;
    font-size: 14px;
  }
}
.faq-banner-section .faq-search-btn:hover {
  background-color: #16352E;
}

.faq-categories-container {
  padding-bottom: 45px;
}
@media (max-width: 768px) {
  .faq-categories-container {
    padding-bottom: 30px;
  }
}
.faq-categories-container .category-buttons {
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .faq-categories-container .category-buttons {
    padding: 20px;
    gap: 15px;
  }
}
@media (max-width: 576px) {
  .faq-categories-container .category-buttons {
    padding: 15px;
    gap: 10px;
  }
}
.faq-categories-container .category-buttons .category-button {
  padding: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 0 0 auto;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 12px;
  background-color: transparent;
  border: none;
}
.faq-categories-container .category-buttons .category-button:hover, .faq-categories-container .category-buttons .category-button:focus, .faq-categories-container .category-buttons .category-button:active {
  border: none;
}
.faq-categories-container .category-buttons .category-button:hover .category-image, .faq-categories-container .category-buttons .category-button:focus .category-image, .faq-categories-container .category-buttons .category-button:active .category-image {
  border: 4px solid #2D947C;
}
.faq-categories-container .category-buttons .category-button:hover span, .faq-categories-container .category-buttons .category-button:focus span, .faq-categories-container .category-buttons .category-button:active span {
  color: #2D947C;
  font-weight: 600;
}
@media (min-width: 1200px) {
  .faq-categories-container .category-buttons .category-button {
    width: calc(16.666% - 20px);
  }
}
@media (max-width: 1199px) and (min-width: 768px) {
  .faq-categories-container .category-buttons .category-button {
    width: calc(33.333% - 15px);
  }
}
@media (max-width: 767px) and (min-width: 576px) {
  .faq-categories-container .category-buttons .category-button {
    width: calc(50% - 10px);
  }
}
@media (max-width: 575px) {
  .faq-categories-container .category-buttons .category-button {
    width: calc(50% - 5px);
  }
}
.faq-categories-container .category-buttons .category-image {
  height: 135px;
  width: 135px;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  margin-bottom: 12px;
  border: 4px solid transparent;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .faq-categories-container .category-buttons .category-image {
    height: 120px;
    width: 120px;
  }
}
@media (max-width: 576px) {
  .faq-categories-container .category-buttons .category-image {
    height: 100px;
    width: 100px;
  }
}
@media (max-width: 480px) {
  .faq-categories-container .category-buttons .category-image {
    height: 80px;
    width: 80px;
  }
}
.faq-categories-container .category-buttons .category-image.category-image-1 {
  background-image: url("../assets/images/category1.jpg");
}
.faq-categories-container .category-buttons .category-image.category-image-2 {
  background-image: url("../assets/images/category2.jpg");
}
.faq-categories-container .category-buttons .category-image.category-image-3 {
  background-image: url("../assets/images/category3.jpg");
}
.faq-categories-container .category-buttons .category-image.category-image-4 {
  background-image: url("../assets/images/category4.jpg");
}
.faq-categories-container .category-buttons .category-image.category-image-5 {
  background-image: url("../assets/images/category5.jpg");
}
.faq-categories-container .category-buttons .category-image.category-image-6 {
  background-image: url("../assets/images/category6.jpg");
}
.faq-categories-container .category-buttons span {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
  margin-bottom: 30px;
  font-size: 24px;
  color: #757575;
  margin: 0;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .faq-categories-container .category-buttons span {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .faq-categories-container .category-buttons span {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .faq-categories-container .category-buttons span {
    font-size: 14px;
  }
}

.faq-section-alt {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .faq-section-alt {
    padding: 40px 0;
  }
}
.faq-section-alt .faq-search-title {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #795D49;
  font-size: 2.25rem;
  text-align: center;
}
@media (max-width: 768px) {
  .faq-section-alt .faq-search-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 576px) {
  .faq-section-alt .faq-search-title {
    font-size: 1.25rem;
  }
}
.faq-section-alt .accordion-button {
  font-size: 2.25rem;
  color: #96cabe;
  background-color: #fff;
  border: none;
  border-radius: 0px;
  padding: 36px 30px 0px 30px;
  box-shadow: none;
  border-bottom: none;
  transition: all 0.3s ease;
  position: relative;
}
@media (max-width: 768px) {
  .faq-section-alt .accordion-button {
    font-size: 1.25rem;
    padding: 20px 15px 0px 15px;
  }
}
@media (max-width: 576px) {
  .faq-section-alt .accordion-button {
    font-size: 1.125rem;
    padding: 15px 10px 0px 10px;
  }
}
.faq-section-alt .accordion-button:hover {
  color: #2D947C;
}
.faq-section-alt .accordion-button:focus {
  box-shadow: none;
}
.faq-section-alt .accordion-button.collapsed {
  border-radius: none;
  padding: 36px 30px;
}
@media (max-width: 768px) {
  .faq-section-alt .accordion-button.collapsed {
    padding: 20px 15px;
  }
}
@media (max-width: 576px) {
  .faq-section-alt .accordion-button.collapsed {
    padding: 15px 10px;
  }
}
.faq-section-alt .accordion-button:not(.collapsed) {
  color: #2D947C;
}
.faq-section-alt .accordion-button::after {
  display: none;
}
.faq-section-alt .accordion-button::before {
  content: "\f067";
  font-family: "Font Awesome 6 Free";
  color: #2D947C;
  font-weight: 900;
  font-size: 0.8em;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  width: 35px;
  height: 35px;
  border: 2px solid #2D947C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}
@media (max-width: 768px) {
  .faq-section-alt .accordion-button::before {
    right: 15px;
    width: 30px;
    height: 30px;
    font-size: 0.7em;
  }
}
@media (max-width: 576px) {
  .faq-section-alt .accordion-button::before {
    right: 10px;
    width: 25px;
    height: 25px;
    font-size: 0.6em;
  }
}
.faq-section-alt .accordion-button:not(.collapsed)::before {
  content: "\f068";
  color: #fff;
  background-color: #2D947C;
  transform: translateY(0%);
}
.faq-section-alt .accordion-item {
  border-left: none;
  border-right: none;
  border-radius: 0px;
  transition: all 0.3s ease;
  border-top: none;
  border-bottom: 3px solid #96cabe;
}
.faq-section-alt .accordion-item:first-child {
  border-top: 3px solid #96cabe;
}
.faq-section-alt .accordion-item:hover {
  border-bottom-color: #2D947C;
}
.faq-section-alt .accordion-item:hover:first-child {
  border-top-color: #2D947C;
}
.faq-section-alt .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-bottom-color: #2D947C;
}
.faq-section-alt .accordion-item:has(.accordion-button:not(.collapsed)):first-child {
  border-top-color: #2D947C;
}
.faq-section-alt .accordion-item:first-child:has(+ .accordion-item:hover) {
  border-bottom-color: #2D947C;
}
.faq-section-alt .accordion-item:first-child:has(+ .accordion-item .accordion-button:not(.collapsed)) {
  border-bottom-color: #2D947C;
}
.faq-section-alt .accordion-item:not(:first-child):has(+ .accordion-item:hover) {
  border-bottom-color: #2D947C;
}
.faq-section-alt .accordion-item:not(:first-child):has(+ .accordion-item .accordion-button:not(.collapsed)) {
  border-bottom-color: #2D947C;
}
.faq-section-alt .accordion-body {
  padding: 30px;
  color: #757575;
  font-size: 1rem;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .faq-section-alt .accordion-body {
    padding: 20px;
    font-size: 0.875rem;
  }
}
@media (max-width: 576px) {
  .faq-section-alt .accordion-body {
    padding: 15px;
  }
}
.faq-section-alt .accordion-body p {
  margin-right: 8%;
}
@media (max-width: 768px) {
  .faq-section-alt .accordion-body p {
    margin-right: 4%;
  }
}
@media (max-width: 576px) {
  .faq-section-alt .accordion-body p {
    margin-right: 0;
  }
}

.menu-categories-buttons-section {
  padding: 60px 0px;
  background-color: #F7F0E9;
}
.menu-categories-buttons-section .section-title {
  font-family: "Calistoga", "Arial", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #48392E;
  margin-bottom: 20px;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .menu-categories-buttons-section .section-title {
    font-size: 2.25rem;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .menu-categories-buttons-section .section-title {
    font-size: 2.25rem;
  }
}
.menu-categories-buttons-section .categories-container {
  text-align: center;
  justify-items: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}
.menu-categories-buttons-section .categories-container .category-btn-outline-brown {
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  background-color: transparent;
  color: #795D49;
  border: 1px solid #795D49;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  padding: 12px 32px;
  margin-left: 4px;
  margin-right: 4px;
}
.menu-categories-buttons-section .categories-container .category-btn-outline-brown:hover {
  background-color: #795D49;
  text-decoration: none;
}
@media (max-width: 768px) {
  .menu-categories-buttons-section .categories-container .category-btn-outline-brown {
    font-size: 14px !important;
    margin-left: 2px;
    margin-right: 2px;
    padding: 10px 20px;
  }
}
@media (max-width: 576px) {
  .menu-categories-buttons-section .categories-container .category-btn-outline-brown {
    font-size: 14px !important;
  }
}
.menu-categories-buttons-section .categories-container .category-btn-outline-brown:hover {
  color: #fff;
}
.menu-categories-buttons-section .categories-container .category-btn-outline-brown:active {
  color: #fff;
  background-color: #795D49;
}
.menu-categories-buttons-section .categories-container .category-btn-outline-brown:focus {
  color: #fff;
  background-color: #795D49;
}

.menu-categories-images-section {
  padding: 60px 0px;
  background-color: #F7F0E9;
}
.menu-categories-images-section .section-title {
  font-family: "Calistoga", "Arial", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #48392E;
  margin-bottom: 20px;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .menu-categories-images-section .section-title {
    font-size: 2.25rem;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .menu-categories-images-section .section-title {
    font-size: 2.25rem;
  }
}

.category-buttons-outline {
  padding: 16px 4px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .category-buttons-outline {
    gap: 15px;
  }
}
@media (max-width: 576px) {
  .category-buttons-outline {
    gap: 10px;
  }
}
.category-buttons-outline .category-button {
  padding: 20px 12px 12px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 0 0 auto;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 12px;
  background-color: transparent;
  border: 2px solid #ACACAC;
}
@media (max-width: 768px) {
  .category-buttons-outline .category-button {
    padding: 16px 8px 8px 8px;
  }
}
@media (max-width: 576px) {
  .category-buttons-outline .category-button {
    padding: 12px 6px 6px 6px;
  }
}
.category-buttons-outline .category-button:hover {
  border: 2px solid #2D947C;
}
.category-buttons-outline .category-button:hover .category-image {
  border: 2px solid #2D947C;
}
.category-buttons-outline .category-button:hover span {
  color: #2D947C;
}
.category-buttons-outline .category-button:active {
  border: 2px solid #2D947C;
}
.category-buttons-outline .category-button:active .category-image {
  border: 2px solid #153C33;
}
.category-buttons-outline .category-button:active span {
  color: #2D947C;
}
.category-buttons-outline .category-button:focus {
  border: 2px solid #2D947C;
}
.category-buttons-outline .category-button:focus .category-image {
  border: 2px solid #2D947C;
}
.category-buttons-outline .category-button:focus span {
  color: #2D947C;
}
@media (min-width: 1200px) {
  .category-buttons-outline .category-button {
    width: calc(16.666% - 20px);
  }
}
@media (max-width: 1199px) and (min-width: 768px) {
  .category-buttons-outline .category-button {
    width: calc(33.333% - 15px);
  }
}
@media (max-width: 767px) and (min-width: 576px) {
  .category-buttons-outline .category-button {
    width: calc(50% - 10px);
  }
}
@media (max-width: 575px) {
  .category-buttons-outline .category-button {
    width: calc(50% - 5px);
  }
}
.category-buttons-outline .category-image {
  height: 135px;
  width: 135px;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  margin-bottom: 12px;
  border: 3px solid transparent;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .category-buttons-outline .category-image {
    height: 120px;
    width: 120px;
  }
}
@media (max-width: 576px) {
  .category-buttons-outline .category-image {
    height: 100px;
    width: 100px;
  }
}
@media (max-width: 480px) {
  .category-buttons-outline .category-image {
    height: 80px;
    width: 80px;
  }
}
.category-buttons-outline .category-image.category-image-1 {
  background-image: url("../assets/images/category-deals.jpg");
}
.category-buttons-outline .category-image.category-image-2 {
  background-image: url("../assets/images/category-pastries.jpg");
}
.category-buttons-outline .category-image.category-image-3 {
  background-image: url("../assets/images/category-hotdrinks.jpg");
}
.category-buttons-outline .category-image.category-image-4 {
  background-image: url("../assets/images/category-colddrinks.jpg");
}
.category-buttons-outline .category-image.category-image-5 {
  background-image: url("../assets/images/category-glutenfree.jpg");
}
.category-buttons-outline .category-image.category-image-6 {
  background-image: url("../assets/images/category-sandwiches.jpg");
}
.category-buttons-outline span {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
  margin-bottom: 30px;
  font-size: 20px;
  color: #757575;
  margin: 0;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .category-buttons-outline span {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .category-buttons-outline span {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .category-buttons-outline span {
    font-size: 14px;
  }
}

.menu-categories-buttons-alt-section {
  padding: 60px 0px;
  background-color: #F7F0E9;
}
.menu-categories-buttons-alt-section .section-title {
  font-family: "Calistoga", "Arial", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #48392E;
  margin-bottom: 20px;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .menu-categories-buttons-alt-section .section-title {
    font-size: 2.25rem;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .menu-categories-buttons-alt-section .section-title {
    font-size: 2.25rem;
  }
}
.menu-categories-buttons-alt-section .categories-container {
  text-align: center;
  justify-items: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}
.menu-categories-buttons-alt-section .categories-container .category-btn-underline-green {
  border: none;
  border-bottom: 2px solid transparent;
  background-color: transparent;
  border-radius: none;
  font-family: #795D49;
  font-size: 1rem;
  color: #757575;
  font-weight: 600;
  padding: 10px 20px;
  position: relative;
  cursor: pointer;
  margin-left: 4px;
  margin-right: 4px;
  transition: all 0.3s ease;
}
.menu-categories-buttons-alt-section .categories-container .category-btn-underline-green:hover, .menu-categories-buttons-alt-section .categories-container .category-btn-underline-green.active, .menu-categories-buttons-alt-section .categories-container .category-btn-underline-green:focus {
  color: #115142;
  border-bottom: 2px solid #153C33;
  background-color: transparent;
  border-radius: none;
}

.banner-slider-section {
  width: 100%;
}

.banner-slide {
  height: 600px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}
.banner-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.banner-slide .banner-slide-content {
  color: #fff;
  z-index: 2;
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}
.banner-slide .banner-slide-content h2 {
  font-family: "Calistoga", "Arial", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 1rem;
  text-align: center;
}
.banner-slide .banner-slide-content h3 {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1.875rem;
  font-weight: 400;
  margin-bottom: 8px;
  text-align: center;
}
.banner-slide .banner-slide-content p {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 2rem;
  opacity: 0.9;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.banner-slider-section .owl-carousel .owl-dots .owl-dot span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  display: block;
  transition: all 0.3s ease;
}
.banner-slider-section .owl-carousel .owl-dots .owl-dot.active span, .banner-slider-section .owl-carousel .owl-dots .owl-dot:hover span {
  background: #115142 !important;
  transform: scale(1.2);
}

.single-product-section {
  padding: 80px 0;
  background-color: #fff;
}
.single-product-section .single-product-image {
  height: 450px;
  background-image: url("../assets/images/product-1a.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  margin: 20px 20px 20px 0;
  transition: all 0.3s ease;
  cursor: zoom-in;
}
.single-product-section .single-product-gallery {
  display: flex;
  gap: 15px;
  margin: 20px 8px;
  flex-wrap: wrap;
}
.single-product-section .single-product-gallery .gallery-item {
  height: 100px;
  width: 100px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  opacity: 0.7;
}
.single-product-section .single-product-gallery .gallery-item:hover {
  opacity: 1;
  border-color: #2D947C;
  transform: translateY(-2px);
}
.single-product-section .single-product-gallery .gallery-item.active {
  opacity: 1;
  border-color: #115142;
  transform: scale(1.05);
}
.single-product-section .single-product-gallery .gallery-item:nth-child(1) {
  background-image: url("../assets/images/product-1b.jpg");
}
.single-product-section .single-product-gallery .gallery-item:nth-child(2) {
  background-image: url("../assets/images/product-1c.jpg");
}
.single-product-section .single-product-gallery .gallery-item:nth-child(3) {
  background-image: url("../assets/images/product-1d.jpg");
}
.single-product-section .single-product-gallery .gallery-item:nth-child(4) {
  background-image: url("../assets/images/product-1e.jpg");
}
.single-product-section .single-product-content {
  margin: 20px 0px;
}
.single-product-section .single-product-content .single-product-title {
  font-family: "Calistoga", "Arial", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #48392E;
  margin-bottom: 20px;
  color: #795D49;
  font-size: 3rem;
  text-align: left;
  margin-bottom: 12px;
  line-height: 1.2;
}
.single-product-section .single-product-content .single-product-price {
  font-family: "Calistoga", "Arial", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #115142;
  margin-bottom: 20px;
  text-align: left;
  color: #2D947C;
  font-size: 1.875rem;
  margin-bottom: 20px;
}
.single-product-section .single-product-content .single-product-short-description {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
  margin-bottom: 30px;
  font-size: 1rem;
  margin-bottom: 30px;
}
.single-product-section .single-product-content .single-product-short-description p {
  margin-bottom: 15px;
}
.single-product-section .single-product-content .single-product-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.single-product-section .single-product-content .single-product-buttons .quantity-controls {
  display: flex;
  align-items: center;
  overflow: hidden;
}
.single-product-section .single-product-content .single-product-buttons .quantity-minus-btn,
.single-product-section .single-product-content .single-product-buttons .quantity-plus-btn {
  background: #fff;
  border: 1px solid #757575;
  border-radius: 1000px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #795D49;
  font-size: 1rem;
  font-weight: 700;
}
.single-product-section .single-product-content .single-product-buttons .quantity-minus-btn:hover,
.single-product-section .single-product-content .single-product-buttons .quantity-plus-btn:hover {
  background: #2D947C;
  color: #fff;
  border-color: #2D947C;
}
.single-product-section .single-product-content .single-product-buttons .quantity-minus-btn:active,
.single-product-section .single-product-content .single-product-buttons .quantity-plus-btn:active {
  transform: scale(0.95);
}
.single-product-section .single-product-content .single-product-buttons .input-number {
  border: 1px solid #757575;
  border-radius: 8px;
  width: 80px;
  height: 45px;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  background: #fff;
  margin: 0px 8px 0px 8px;
  -webkit-appearance: none;
  -moz-appearance: textfield;
}
.single-product-section .single-product-content .single-product-buttons .input-number::-webkit-outer-spin-button, .single-product-section .single-product-content .single-product-buttons .input-number::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.single-product-section .single-product-content .single-product-buttons .input-number:focus {
  outline: none;
  box-shadow: none;
}
.single-product-section .single-product-content .single-product-buttons .size-select {
  min-width: 140px;
  height: 45px;
  border: 1px solid #757575;
  border-radius: 8px;
  padding: 0 40px 0 15px;
  font-size: 1rem;
  color: #333;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}
.single-product-section .single-product-content .single-product-buttons .size-select:focus {
  outline: none;
  border-color: #115142;
  box-shadow: 0 0 0 2px rgba(17, 81, 66, 0.2);
}
.single-product-section .single-product-content .single-product-buttons .size-select:hover {
  border-color: #2D947C;
}
.single-product-section .single-product-content .single-product-buttons .size-select option {
  background-color: #fff;
  color: #333;
  padding: 8px 15px;
}
.single-product-section .single-product-content .single-product-buttons .size-select::-moz-focus-inner {
  border: 0;
}
.single-product-section .single-product-content .single-product-buttons .size-select::-ms-expand {
  display: none;
}
.single-product-section .single-product-content .single-product-buttons .add-to-cart-btn {
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  background-color: #2D947C;
  color: #fff;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  min-width: 160px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.single-product-section .single-product-content .single-product-buttons .add-to-cart-btn:hover {
  background-color: #115142;
  text-decoration: none;
}
@media (max-width: 768px) {
  .single-product-section .single-product-title {
    font-size: 2.25rem;
  }
  .single-product-section .single-product-price {
    font-size: 1.5rem;
  }
  .single-product-section .single-product-image {
    margin: 20px 0;
  }
  .single-product-section .single-product-gallery {
    margin: 20px 4px;
    justify-content: left;
  }
  .single-product-section .single-product-buttons {
    justify-content: center;
    gap: 15px;
  }
  .single-product-section .single-product-buttons .add-to-cart-btn {
    width: 100%;
    margin-top: 10px;
  }
}
@media (max-width: 576px) {
  .single-product-section .single-product-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .single-product-section .single-product-buttons .quantity-controls,
  .single-product-section .single-product-buttons .size-select {
    width: 100%;
  }
  .single-product-section .single-product-buttons .size-select {
    text-align: center;
  }
}

.product .product-id-1 {
  background-image: url("../assets/images/hot-coffee-in-ceramic-cup-on-table-2.jpg");
}
.product .product-id-2 {
  background-image: url("../assets/images/iced-coffee-swirl-in-clear-cup-2.jpg");
}
.product .product-id-3 {
  background-image: url("../assets/images/slice-of-cherry-tart-on-decorative-white-plate-2.jpg");
}
.product .product-id-4 {
  background-image: url("../assets/images/colorful-macaroons-on-plate-2.jpg");
}

.product-cards .product-card {
  overflow: hidden;
  height: 100%;
  border: 1px solid #ACACAC;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.product-cards .product-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.product-cards .product-card .product-content {
  margin: 20px 16px 12px 20px;
}
.product-cards .product-image-link {
  display: block;
  text-decoration: none;
}
.product-cards .product-image-link:hover, .product-cards .product-image-link:focus {
  text-decoration: none;
}
.product-cards .product-image-link .product-image {
  height: 240px;
  background-size: cover;
  background-position: center;
  border-radius: 0px 0px 0 0;
  transition: all 0.3s ease;
}
.product-cards .product-image-link:hover .product-image {
  transform: scale(1.05);
}
.product-cards .product-title-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.product-cards .product-title-link:hover, .product-cards .product-title-link:focus {
  text-decoration: none;
  color: inherit;
}
.product-cards .product-title-link .product-title {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #795D49;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}
.product-cards .product-title-link:hover .product-title {
  color: #115142;
}
.product-cards .product-description {
  color: #333;
  font-family: "Poppins", "Georgia", serif;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 1.4;
}
.product-cards .product-price {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #795D49;
}
.product-cards .price-and-btn-v {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.product-cards .price-and-btn-h {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.product-cards .add-to-cart-btn-outline {
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  background-color: transparent;
  color: #795D49;
  border: 1px solid #795D49;
  border-radius: 8px;
  padding: 8px 12px !important;
  font-size: 14px;
  font-weight: 400;
  min-width: 100px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.product-cards .add-to-cart-btn-outline:hover {
  background-color: #795D49;
  text-decoration: none;
}
.product-cards .add-to-cart-btn-outline:hover {
  color: #fff;
}

.related-products-section {
  padding: 80px 0px;
}
.related-products-section .section-title {
  font-family: "Calistoga", "Arial", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #48392E;
  margin-bottom: 20px;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .related-products-section .section-title {
    font-size: 2.25rem;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .related-products-section .section-title {
    font-size: 2.25rem;
  }
}

.cart-section {
  padding: 60px 0;
  min-height: 80vh;
}
.cart-section .section-title {
  font-family: "Calistoga", "Arial", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #48392E;
  margin-bottom: 20px;
  text-align: center;
  margin-bottom: 40px;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}
.cart-section .cart-table {
  overflow: hidden;
  margin-bottom: 40px;
}
.cart-section .cart-table-header {
  background: #795D49;
  color: #fff;
  border-radius: 8px;
  padding: 20px;
}
.cart-section .cart-table-header .cart-header-item {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
}
.cart-section .cart-item {
  border-bottom: 1px solid #757575;
  padding: 25px 20px;
  transition: all 0.3s ease;
}
.cart-section .cart-item:last-child {
  border-bottom: none;
}
.cart-section .cart-item .row {
  margin: 0;
  align-items: center;
}
.cart-section .product-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.cart-section .product-image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.cart-section .product-details h4 {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #795D49;
  margin-bottom: 8px;
}
.cart-section .product-description {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1rem;
  color: #333;
  line-height: 1.2;
  margin: 0;
}
.cart-section .remove-btn {
  background: none;
  border: 2px solid #757575;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #333;
  margin-right: 8px;
  padding: 0;
  font-size: 16px;
  flex-shrink: 0;
}
.cart-section .remove-btn:hover {
  background: #2D947C;
  border-color: #2D947C;
  color: #fff;
}
.cart-section .price-display {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #795D49;
  text-align: center;
}
.cart-section .quantity-controls {
  display: flex;
  align-items: center;
  overflow: hidden;
  justify-content: center;
}
.cart-section .quantity-btn {
  background: #fff;
  border: 1px solid #757575;
  border-radius: 1000px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #795D49;
  font-size: 1rem;
  font-weight: 700;
}
.cart-section .quantity-btn:hover {
  background: #2D947C;
  color: #fff;
  border-color: #2D947C;
}
.cart-section .quantity-btn:active {
  transform: scale(0.95);
}
.cart-section .quantity-input {
  border: 1px solid #757575;
  border-radius: 8px;
  width: 60px;
  height: 45px;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  background: #fff;
  margin: 0px 8px 0px 8px;
  -webkit-appearance: none;
  -moz-appearance: textfield;
}
.cart-section .quantity-input::-webkit-outer-spin-button, .cart-section .quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.cart-section .quantity-input:focus {
  outline: none;
  box-shadow: none;
}
.cart-section .total-price {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #795D49;
  text-align: center;
}
.cart-section .mobile-cart-item {
  padding: 20px;
  border-bottom: 1px solid #757575;
}
.cart-section .mobile-cart-item:last-child {
  border-bottom: none;
}
.cart-section .mobile-cart-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}
.cart-section .product-info-mobile {
  display: flex;
  gap: 12px;
  flex: 1;
}
.cart-section .product-info-mobile .product-image {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.cart-section .product-details-mobile {
  flex: 1;
}
.cart-section .product-details-mobile h4 {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #795D49;
  margin-bottom: 8px;
  line-height: 1.2;
}
.cart-section .product-details-mobile .product-description {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1rem;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.4;
}
.cart-section .price-mobile {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #795D49;
}
.cart-section .remove-btn-mobile {
  background: none;
  border: 2px solid #757575;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #333;
  font-size: 16px;
  flex-shrink: 0;
  padding: 0;
}
.cart-section .remove-btn-mobile:hover, .cart-section .remove-btn-mobile:active {
  background: #2D947C;
  border-color: #2D947C;
  color: #fff;
}
.cart-section .mobile-cart-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #F7F0E9;
  padding: 12px 16px;
  border-radius: 8px;
  gap: 15px;
}
.cart-section .quantity-section-mobile {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-section .quantity-section-mobile .quantity-label {
  font-family: "Poppins", "Georgia", serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #795D49;
  white-space: nowrap;
}
.cart-section .quantity-section-mobile .quantity-controls {
  gap: 6px;
}
.cart-section .quantity-section-mobile .quantity-controls .quantity-btn {
  width: 28px;
  height: 28px;
  font-size: 10px;
}
.cart-section .quantity-section-mobile .quantity-controls .quantity-input {
  width: 45px;
  height: 32px;
  font-size: 0.875rem;
  border-width: 1px;
}
.cart-section .total-section-mobile {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.cart-section .total-section-mobile .total-label {
  font-family: "Poppins", "Georgia", serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #795D49;
  margin-bottom: 2px;
}
.cart-section .total-section-mobile .total-price-mobile {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #795D49;
}
.cart-section .cart-summary {
  background: #F7F0E9;
  border-radius: 15px;
  padding: 30px;
  border: 1px solid #795D49;
  max-width: 400px;
  margin-left: auto;
}
.cart-section .cart-summary-title {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #795D49;
  margin-bottom: 20px;
  text-align: center;
}
.cart-section .summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-family: "Poppins", "Georgia", serif;
  font-size: 1rem;
  font-weight: 400;
}
.cart-section .summary-item .summary-label {
  color: #795D49;
}
.cart-section .summary-item .summary-value {
  color: #795D49;
  font-weight: 600;
}
.cart-section .summary-divider {
  border: none;
  border-top: 2px solid #795D49;
  opacity: 0.5;
  margin: 20px 0;
}
.cart-section .summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Poppins", "Georgia", serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #795D49;
  margin-bottom: 25px;
}
.cart-section .checkout-btn {
  background: #115142;
  border: 2px solid #115142;
  color: #fff;
  border-radius: 8px;
  font-family: "Poppins", "Georgia", serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  margin-bottom: 12px;
}
.cart-section .checkout-btn:hover {
  background: #153C33;
  border-color: #153C33;
  color: #fff;
  text-decoration: none;
}
.cart-section .continue-shopping {
  text-align: center;
}
.cart-section .continue-shopping-link {
  color: #333;
  text-decoration: none;
  font-family: "Poppins", "Georgia", serif;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}
.cart-section .continue-shopping-link:hover {
  color: #115142;
  text-decoration: none;
}
@media (max-width: 991px) {
  .cart-section .cart-summary {
    margin-top: 30px;
    position: relative;
    top: auto;
    max-width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .cart-section {
    padding: 40px 0;
  }
  .cart-section .cart-title {
    margin-bottom: 25px;
  }
  .cart-section .cart-table {
    box-shadow: none;
    border: 1px solid #f0f0f0;
  }
  .cart-section .cart-summary {
    padding: 20px;
    margin-top: 25px;
  }
}
@media (max-width: 576px) {
  .cart-section {
    padding: 30px 0;
  }
  .cart-section .mobile-cart-item {
    padding: 15px;
  }
  .cart-section .mobile-cart-controls {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .cart-section .quantity-section-mobile {
    justify-content: center;
  }
  .cart-section .total-section-mobile {
    align-items: center;
  }
  .cart-section .cart-summary {
    padding: 18px;
  }
  .cart-section .checkout-btn {
    padding: 12px 20px;
    font-size: 0.875rem;
  }
}
.cart-section .empty-cart {
  text-align: center;
  padding: 80px 20px;
  color: #333;
}
.cart-section .empty-cart i {
  font-size: 4rem;
  margin-bottom: 20px;
  color: #e0e0e0;
}
.cart-section .empty-cart h3 {
  font-family: "Calistoga", "Arial", sans-serif;
  margin-bottom: 10px;
  color: #795D49;
}
.cart-section .empty-cart p {
  font-family: "Poppins", "Georgia", serif;
  margin-bottom: 25px;
}
.cart-section .empty-cart .shop-now-btn {
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  background-color: #115142;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cart-section .empty-cart .shop-now-btn:hover {
  background-color: rgb(8.1530612245, 38.8469387755, 31.6530612245);
  text-decoration: none;
}

.checkout-section {
  padding: 80px 0;
  /* Form Styles */
  /* Checkbox and Radio Styles */
  /* Mobile adjustments */
  /* Summary Cart Styles */
  /* Buttons */
  /* Payment Methods Grid */
  /* Payment Methods Grid */
  /* Responsive Design */
}
.checkout-section .checkout-card {
  border-radius: 8px;
  padding: 40px;
  margin-bottom: 12px;
  border: 1px solid #795D49;
}
.checkout-section .payment-card {
  margin-bottom: 0 !important;
}
@media (max-width: 991px) {
  .checkout-section .payment-card {
    margin-bottom: 12px !important;
  }
}
.checkout-section .checkout-card-title {
  font-family: "Calistoga", "Arial", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #48392E;
  margin-bottom: 20px;
  color: #795D49;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 30px;
}
.checkout-section .form-group {
  margin-bottom: 20px;
}
.checkout-section .form-label {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #333;
  font-size: 1rem;
  margin-bottom: 8px;
  display: block;
}
.checkout-section .form-input {
  width: 100%;
  height: 45px;
  border: 1px solid #757575;
  border-radius: 8px;
  padding: 0 15px;
  font-size: 16px;
  color: #333;
  background: #fff;
  transition: all 0.3s ease;
}
.checkout-section .form-input:focus {
  outline: none;
  box-shadow: none;
}
.checkout-section .form-input::-moz-placeholder {
  color: #ACACAC;
}
.checkout-section .form-input::placeholder {
  color: #ACACAC;
}
.checkout-section .form-select {
  width: 100%;
  height: 45px;
  border: 1px solid #757575;
  border-radius: 8px;
  padding: 0 35px 0 15px;
  font-size: 16px;
  color: #333;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}
.checkout-section .form-select:focus {
  outline: none;
  box-shadow: none;
}
.checkout-section .form-row {
  display: flex;
  gap: 15px;
}
.checkout-section .form-row .form-group {
  flex: 1;
}
.checkout-section .form-textarea {
  width: 100%;
  min-height: 100px;
  border: 1px solid #757575;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 16px;
  color: #333;
  background: #fff;
  transition: all 0.3s ease;
  resize: vertical;
  font-family: inherit;
}
.checkout-section .form-textarea:focus {
  outline: none;
  box-shadow: none;
}
.checkout-section .form-textarea::-moz-placeholder {
  color: #ACACAC;
}
.checkout-section .form-textarea::placeholder {
  color: #ACACAC;
}
.checkout-section .checkbox-group,
.checkout-section .radio-group {
  margin-bottom: 15px;
}
.checkout-section .checkbox-item,
.checkout-section .radio-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.checkout-section .checkbox-input,
.checkout-section .radio-input {
  width: 18px;
  height: 18px;
  accent-color: #2D947C;
  cursor: pointer;
}
.checkout-section .checkbox-label,
.checkout-section .radio-label {
  font-size: 16px;
  color: #333;
  cursor: pointer;
  margin: 0;
}
.checkout-section .discount-form-wrapper {
  margin: 15px 0;
}
.checkout-section .discount-form {
  width: 100%;
}
.checkout-section .discount-input-group {
  display: flex;
  background-color: #ACACAC;
  border-radius: 8px;
  overflow: hidden;
  border: none;
}
.checkout-section .discount-input {
  flex: 1;
  border: 1px solid #ACACAC;
  padding: 12px 20px;
  font-size: 14px;
  color: #333;
  background-color: #fff;
  outline: none;
  border-radius: 8px 0 0 8px;
}
.checkout-section .discount-input::-moz-placeholder {
  color: #757575;
  font-weight: 400;
}
.checkout-section .discount-input::placeholder {
  color: #757575;
  font-weight: 400;
}
.checkout-section .discount-btn {
  background-color: #115142;
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: 0;
  transition: all 0.3s ease;
  font-weight: 500;
  cursor: pointer;
}
.checkout-section .discount-btn:hover {
  background-color: #153C33;
}
@media (max-width: 768px) {
  .checkout-section .discount-input {
    padding: 10px 15px;
    font-size: 14px;
  }
  .checkout-section .discount-btn {
    padding: 10px 20px;
  }
}
.checkout-section .resume-cart {
  background: #F7F0E9;
  border-radius: 8px;
  padding: 30px;
  border: 1px solid #795D49;
  height: -moz-fit-content;
  height: fit-content;
  position: sticky;
  top: 80px;
}
.checkout-section .resume-cart-title {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #795D49;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 25px;
}
.checkout-section .cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1rem;
}
.checkout-section .cart-item-name {
  color: #795D49;
}
.checkout-section .cart-item-price {
  color: #795D49;
  font-weight: 600;
}
.checkout-section .cart-divider {
  border: none;
  border-top: 2px solid #795D49;
  opacity: 0.5;
  margin: 20px 0;
}
.checkout-section .cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Poppins", "Georgia", serif;
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #795D49;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.checkout-section .cart-section-title {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #795D49;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 25px 0 15px 0;
}
.checkout-section .btn-payment {
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  background-color: #115142;
  color: #fff;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  margin-top: 20px;
}
.checkout-section .btn-payment:hover {
  background-color: #153C33;
  text-decoration: none;
}
.checkout-section .shipping-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 20px;
}
.checkout-section .payment-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .checkout-section .checkout-section {
    padding: 40px 0;
  }
  .checkout-section .checkout-card {
    padding: 25px;
    margin-bottom: 20px;
  }
  .checkout-section .resume-cart {
    padding: 20px;
    margin-top: 20px;
    position: static;
  }
  .checkout-section .form-row {
    flex-direction: column;
    gap: 0;
  }
  .checkout-section .payment-methods {
    grid-template-columns: 1fr;
  }
  .checkout-section .shipping-methods {
    grid-template-columns: 1fr;
  }
  .checkout-section .discount-input {
    width: 100px;
    margin-left: 0px;
  }
}
@media (max-width: 576px) {
  .checkout-section .checkout-card-title {
    font-size: 20px;
  }
  .checkout-section .cart-item {
    font-size: 14px;
  }
}

.shop-products-alt-section {
  padding: 80px 0;
}
.shop-products-alt-section .section-title {
  font-family: "Calistoga", "Arial", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #48392E;
  margin-bottom: 20px;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .shop-products-alt-section .section-title {
    font-size: 2.25rem;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .shop-products-alt-section .section-title {
    font-size: 2.25rem;
  }
}

.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  gap: 10px;
}
.pagination-container .pagination-btn {
  color: #795D49;
  border: 1px solid #795D49;
  border-radius: 8px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  text-decoration: none;
}
.pagination-container .pagination-btn:hover {
  background: #795D49;
  color: #fff;
  text-decoration: none;
}
.pagination-container .pagination-btn.active {
  background: #795D49;
  color: #fff;
}
.pagination-container .pagination-btn.disabled {
  background: #fff;
  color: #757575;
  border-color: #757575;
  cursor: not-allowed;
  opacity: 0.6;
}
.pagination-container .pagination-btn.disabled:hover {
  background: #fff;
  color: #757575;
}
.pagination-container .pagination-dots {
  color: #795D49;
  font-weight: 600;
  padding: 0 10px;
}
.pagination-container--green .pagination-btn {
  color: #115142;
  border: 1px solid #115142;
}
.pagination-container--green .pagination-btn:hover {
  background: #115142;
}
.pagination-container--green .pagination-btn.active {
  background: #115142;
}
.pagination-container--green .pagination-dots {
  color: #115142;
}

.category-links-container {
  text-align: center;
  justify-items: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 18px;
}
.category-links-container .category-btn-underline-green {
  border: none;
  border-bottom: 2px solid transparent;
  background-color: transparent;
  border-radius: none;
  font-family: #795D49;
  font-size: 1rem;
  color: #757575;
  font-weight: 600;
  padding: 10px 20px;
  position: relative;
  cursor: pointer;
  margin-left: 4px;
  margin-right: 4px;
  transition: all 0.3s ease;
}
.category-links-container .category-btn-underline-green:hover, .category-links-container .category-btn-underline-green.active, .category-links-container .category-btn-underline-green:focus {
  color: #115142;
  border-bottom: 2px solid #153C33;
  background-color: transparent;
  border-radius: none;
}

.shop-section-t {
  padding: 80px 0;
  background-color: #fff;
}
.shop-section-t .section-title {
  font-family: "Calistoga", "Arial", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #48392E;
  margin-bottom: 20px;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .shop-section-t .section-title {
    font-size: 2.25rem;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .shop-section-t .section-title {
    font-size: 2.25rem;
  }
}
.shop-section-t .shop-sidebar {
  background-color: #F7F0E9;
  border: 1px solid #795D49;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 30px 18px;
  height: -moz-fit-content;
  height: fit-content;
  position: sticky;
  top: 20px;
}
.shop-section-t .shop-sidebar .sidebar-section {
  margin-bottom: 40px;
}
.shop-section-t .shop-sidebar .sidebar-section:last-child {
  margin-bottom: 0;
}
.shop-section-t .shop-sidebar .sidebar-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #795D49;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ACACAC;
}
.shop-section-t .price-range-container {
  margin: 20px 0;
  position: relative;
}
.shop-section-t .price-range-container .slider-container {
  position: relative;
  width: 100%;
  height: 6px;
  margin: 20px 0;
}
.shop-section-t .price-range-container .slider-track {
  position: absolute;
  width: 100%;
  height: 6px;
  background: #ACACAC;
  border-radius: 3px;
  top: 0;
}
.shop-section-t .price-range-container .slider-range {
  position: absolute;
  height: 6px;
  background: #795D49;
  border-radius: 3px;
  top: 0;
}
.shop-section-t .price-range-container .price-slider {
  position: absolute;
  width: 100%;
  height: 6px;
  border-radius: 5px;
  background: transparent;
  outline: none;
  -webkit-appearance: none;
  pointer-events: none;
  top: 0;
}
.shop-section-t .price-range-container .price-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #115142;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  pointer-events: all;
  position: relative;
  z-index: 2;
}
.shop-section-t .price-range-container .price-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #115142;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  pointer-events: all;
  position: relative;
  z-index: 2;
}
.shop-section-t .price-range-container .price-slider#priceRangeMax::-webkit-slider-thumb {
  background: #153C33;
}
.shop-section-t .price-range-container .price-slider#priceRangeMax::-moz-range-thumb {
  background: #153C33;
}
.shop-section-t .price-range-container .price-display {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  font-weight: 400;
  color: #333;
}
.shop-section-t .price-range-container .price-display .price-input-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.shop-section-t .price-range-container .price-display .price-input-group label {
  font-size: 12px;
  color: #757575;
  font-weight: 600;
}
.shop-section-t .price-range-container .price-display .price-input-group .price-input {
  width: 60px;
  padding: 5px 8px;
  border: 1px solid #ACACAC;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  color: #333;
}
.shop-section-t .price-range-container .price-display .price-input-group .price-input:focus {
  outline: none;
  border-color: #115142;
  box-shadow: 0 0 0 2px rgba(139, 90, 43, 0.1);
}
.shop-section-t .price-range-container .filter-btn {
  background-color: #115142;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  margin-top: 15px;
  transition: all 0.3s ease;
}
.shop-section-t .price-range-container .filter-btn:hover {
  background-color: #153C33;
}
.shop-section-t .category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.shop-section-t .category-list .category-item {
  margin-bottom: 12px;
}
.shop-section-t .category-list .category-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #757575;
  text-decoration: none;
  padding: 12px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 400;
  background-color: transparent;
  border: 1px solid transparent;
}
.shop-section-t .category-list .category-link:hover {
  color: #115142;
  text-decoration: none;
}
.shop-section-t .category-list .category-link.active {
  background-color: #115142;
  color: #fff;
  border-color: #115142;
}
.shop-section-t .category-list .category-link.active .category-count {
  background-color: #16352E;
  color: #fff;
}
.shop-section-t .category-list .category-link .category-count {
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
}
.shop-section-t .shop-content {
  background-color: #fff;
  padding: 30px auto;
}
.shop-section-t .sort-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ACACAC;
}
.shop-section-t .sort-controls .results-count {
  color: #757575;
  font-size: 1rem;
}
.shop-section-t .sort-controls .sort-dropdown {
  min-width: 200px;
  padding: 10px 15px;
  border: 1px solid #ACACAC;
  border-radius: 8px;
  background-color: #fff;
  color: #757575;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.shop-section-t .sort-controls .sort-dropdown:focus {
  outline: none;
  border-color: #115142;
  box-shadow: 0 0 0 3px rgba(139, 90, 43, 0.1);
}
.shop-section-t .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}
.shop-section-t .product-grid .product-link {
  text-decoration: none;
  display: block;
  flex-grow: 1;
}
.shop-section-t .product-grid .product-link:hover ~ .price-and-btn .product-title, .shop-section-t .product-grid .product-link:hover .product-title {
  color: #115142;
}
.shop-section-t .product-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #ACACAC;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.shop-section-t .product-card .product-image-link {
  display: block;
  text-decoration: none;
}
.shop-section-t .product-card .product-title-link,
.shop-section-t .product-card .product-description-link {
  text-decoration: none;
  display: block;
}
.shop-section-t .product-card .product-title-link:hover .product-title,
.shop-section-t .product-card .product-description-link:hover .product-title {
  color: #115142;
}
.shop-section-t .product-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.shop-section-t .product-card .product-image {
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.shop-section-t .product-card:hover .product-image {
  transform: scale(1.05);
}
.shop-section-t .product-card:hover .product-title {
  color: #115142 !important;
}
.shop-section-t .product-card .product-content {
  padding: 20px 25px 16px 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.shop-section-t .product-card .product-content .product-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #795D49;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}
.shop-section-t .product-card .product-content .product-description {
  color: #757575;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}
.shop-section-t .product-card .product-content .price-and-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.shop-section-t .product-card .product-content .price-and-btn .product-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: #115142;
}
.shop-section-t .product-card .product-content .price-and-btn .add-to-cart-btn {
  background-color: transparent;
  color: #115142;
  border: 2px solid #115142;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.shop-section-t .product-card .product-content .price-and-btn .add-to-cart-btn:hover {
  background-color: #115142;
  color: #fff;
}
.shop-section-t .shop-section-t {
  padding: 80px 0;
  background-color: #fff;
}
.shop-section-t .shop-section-t .section-title {
  font-family: "Calistoga", "Arial", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #48392E;
  margin-bottom: 20px;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .shop-section-t .shop-section-t .section-title {
    font-size: 2.25rem;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .shop-section-t .shop-section-t .section-title {
    font-size: 2.25rem;
  }
}
.shop-section-t .shop-section-t .shop-sidebar {
  background-color: #F7F0E9;
  border: 1px solid #795D49;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: -moz-fit-content;
  height: fit-content;
  position: sticky;
  top: 20px;
}
.shop-section-t .shop-section-t .shop-sidebar .sidebar-section {
  margin-bottom: 40px;
}
.shop-section-t .shop-section-t .shop-sidebar .sidebar-section:last-child {
  margin-bottom: 0;
}
.shop-section-t .shop-section-t .shop-sidebar .sidebar-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #795D49;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ACACAC;
}
.shop-section-t .shop-section-t .category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.shop-section-t .shop-section-t .category-list .category-item {
  margin-bottom: 12px;
}
.shop-section-t .shop-section-t .category-list .category-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #757575;
  text-decoration: none;
  padding: 12px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 400;
  background-color: transparent;
  border: 1px solid transparent;
}
.shop-section-t .shop-section-t .category-list .category-link:hover {
  color: #115142;
  text-decoration: none;
}
.shop-section-t .shop-section-t .category-list .category-link.active {
  background-color: #115142;
  color: #fff;
  border-color: #115142;
}
.shop-section-t .shop-section-t .category-list .category-link.active .category-count {
  background-color: #16352E;
  color: #fff;
}
.shop-section-t .shop-section-t .category-list .category-link .category-count {
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
}
.shop-section-t .shop-section-t .shop-content {
  background-color: #fff;
  padding: 30px;
}
.shop-section-t .shop-section-t .sort-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ACACAC;
}
.shop-section-t .shop-section-t .sort-controls .results-count {
  color: #757575;
  font-size: 1rem;
}
.shop-section-t .shop-section-t .sort-controls .sort-dropdown {
  min-width: 200px;
  padding: 10px 15px;
  border: 1px solid #ACACAC;
  border-radius: 8px;
  background-color: #fff;
  color: #757575;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.shop-section-t .shop-section-t .sort-controls .sort-dropdown:focus {
  outline: none;
  border-color: #115142;
  box-shadow: 0 0 0 3px rgba(139, 90, 43, 0.1);
}
@media (max-width: 768px) {
  .shop-section-t {
    padding: 40px 0;
  }
  .shop-section-t .shop-sidebar {
    margin-bottom: 30px;
    position: static;
  }
  .shop-section-t .sort-controls {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }
  .shop-section-t .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
  .shop-section-t .product-card .product-content {
    padding: 20px;
  }
  .shop-section-t .product-card .product-content .price-and-btn {
    flex-direction: column;
    gap: 10px;
  }
  .shop-section-t .product-card .product-content .price-and-btn .add-to-cart-btn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .shop-section-t .shop-sidebar {
    padding: 20px;
  }
  .shop-section-t .shop-sidebar .sidebar-title {
    font-size: 1rem;
  }
  .shop-section-t .product-grid {
    grid-template-columns: 1fr;
  }
  .shop-section-t .category-link {
    padding: 10px 12px;
    font-size: 14px;
  }
  .shop-section-t .price-range-container .filter-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

.shop-products-alt-section {
  padding: 80px 0;
}
.shop-products-alt-section .section-title {
  font-family: "Calistoga", "Arial", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #48392E;
  margin-bottom: 20px;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .shop-products-alt-section .section-title {
    font-size: 2.25rem;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .shop-products-alt-section .section-title {
    font-size: 2.25rem;
  }
}
.shop-products-alt-section .category-links-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}
.shop-products-alt-section .product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(400px, 600px));
  gap: 30px;
  justify-content: center;
}
.shop-products-alt-section .product-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #ACACAC;
  height: 200px;
  display: flex;
  flex-direction: row;
  text-decoration: none;
}
.shop-products-alt-section .product-card .product-image-link {
  display: block;
  text-decoration: none;
  width: 200px;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .shop-products-alt-section .product-card .product-image-link {
    width: 100%;
  }
}
.shop-products-alt-section .product-card .product-title-link,
.shop-products-alt-section .product-card .product-description-link {
  text-decoration: none;
  display: block;
}
.shop-products-alt-section .product-card .product-title-link:hover .product-title {
  color: #115142;
}
.shop-products-alt-section .product-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.shop-products-alt-section .product-card .product-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.shop-products-alt-section .product-card:hover .product-image {
  transform: scale(1.05);
}
.shop-products-alt-section .product-card .product-content {
  padding: 32px 25px 24px 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.shop-products-alt-section .product-card .product-content .product-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #795D49;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}
.shop-products-alt-section .product-card .product-content .product-description {
  color: #757575;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
  flex-grow: 1;
}
.shop-products-alt-section .product-card .product-content .price-and-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.shop-products-alt-section .product-card .product-content .price-and-btn .product-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: #115142;
}
.shop-products-alt-section .product-card .product-content .price-and-btn .add-to-cart-btn {
  background-color: transparent;
  color: #795D49;
  border: 2px solid #795D49;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.shop-products-alt-section .product-card .product-content .price-and-btn .add-to-cart-btn:hover {
  background-color: #795D49;
  color: #fff;
}
@media (max-width: 1199px) {
  .shop-products-alt-section .product-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 992px) {
  .shop-products-alt-section .product-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .shop-products-alt-section .product-card {
    height: auto;
    flex-direction: column;
  }
  .shop-products-alt-section .product-card .product-image-link {
    width: 100%;
    height: 200px;
  }
  .shop-products-alt-section .product-card .product-image {
    width: 100%;
    height: 100%;
  }
  .shop-products-alt-section .product-card .product-content .price-and-btn {
    flex-direction: column;
    gap: 10px;
  }
  .shop-products-alt-section .product-card .product-content .price-and-btn .add-to-cart-btn {
    width: 100%;
    justify-content: center;
  }
}
.shop-products-alt-section .pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  gap: 10px;
}
.shop-products-alt-section .pagination-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #795D49;
  border-radius: 8px;
  color: #795D49;
  text-decoration: none;
  transition: all 0.3s ease;
}
.shop-products-alt-section .pagination-btn:hover {
  border-color: #795D49;
  color: #fff;
  text-decoration: none;
}
.shop-products-alt-section .pagination-btn.active {
  background-color: #795D49;
  border-color: #795D49;
  color: #fff;
}
.shop-products-alt-section .pagination-dots {
  color: #757575;
  padding: 0 10px;
}

.blog-section {
  padding: 80px 0px;
  background-color: #F7F0E9;
}
.blog-section .section-title {
  font-family: "Calistoga", "Arial", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #48392E;
  margin-bottom: 20px;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .blog-section .section-title {
    font-size: 2.25rem;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .blog-section .section-title {
    font-size: 2.25rem;
  }
}
.blog-section .post-card {
  display: block;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  height: 100%;
  padding: 0px;
  transition: all 0.3s ease;
  border: 1px solid #757575;
  border-radius: 8px;
}
.blog-section .post-card:hover {
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.blog-section .post-card:hover .post-image {
  transform: scale(1.05);
}
.blog-section .post-card:hover .post-title {
  color: #115142;
}
.blog-section .post-image {
  height: 240px;
  background-size: cover;
  background-position: center;
  border-radius: 6px 6px 0px 0px;
  transition: all 0.3s ease;
  overflow: hidden;
}
.blog-section .post-content {
  padding: 20px 16px 8px 16px;
}
.blog-section .post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.875rem;
  color: #757575;
  font-weight: 400;
}
.blog-section .post-meta .post-date {
  color: #115142;
  font-weight: 500;
}
.blog-section .post-meta .post-author {
  color: #795D49;
  font-weight: 500;
}
.blog-section .post-meta .post-comments {
  color: #757575;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
}
.blog-section .post-meta .post-comments i {
  font-size: 12px;
}
.blog-section .post-title {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #795D49;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  line-height: 1.3;
}
.blog-section .post-description {
  color: #333;
  font-family: "Poppins", "Georgia", serif;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 1.5;
}
.blog-section .show-more-btn {
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  background-color: #795D49;
  color: #fff;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 400;
  padding: 12px 32px;
  margin-top: 30px;
}
.blog-section .show-more-btn:hover {
  background-color: #48392E;
  text-decoration: none;
}
.blog-section .post-id-1 {
  background-image: url("../assets/images/hot-coffee-in-ceramic-cup-on-table-2.jpg");
}
.blog-section .post-id-2 {
  background-image: url("../assets/images/iced-coffee-swirl-in-clear-cup-2.jpg");
}
.blog-section .post-id-3 {
  background-image: url("../assets/images/slice-of-cherry-tart-on-decorative-white-plate-2.jpg");
}
.blog-section .post-id-4 {
  background-image: url("../assets/images/colorful-macaroons-on-plate-2.jpg");
}
@media (max-width: 768px) {
  .blog-section .post-meta {
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
  }
  .blog-section .post-card:hover {
    transform: none;
  }
}
@media (max-width: 576px) {
  .blog-section .hero-content .breadcrumbs {
    font-size: 12px;
    gap: 6px;
  }
  .blog-section .hero-content .breadcrumbs i {
    font-size: 10px;
  }
}

.breadcrumbs {
  color: #F7F0E9;
  margin-bottom: 10px;
  font-weight: 400;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.breadcrumbs span a {
  text-decoration: none !important;
}
.breadcrumbs span:first-child {
  color: #F7F0E9 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.breadcrumbs span:first-child a {
  color: #F7F0E9 !important;
}
.breadcrumbs span:first-child a:hover {
  color: #fff !important;
}
.breadcrumbs span:first-child:hover {
  color: #fff;
  cursor: pointer;
}
.breadcrumbs span:last-child {
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.breadcrumbs i {
  color: #F7F0E9;
  font-size: 8px;
}

@media (max-width: 576px) {
  .breadcrumbs {
    font-size: 12px;
    margin-bottom: 8px;
  }
}
.footer {
  background-color: #372E27;
  color: #fff;
  padding: 80px 20px 30px 20px;
}
.footer .footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 60px;
  margin-bottom: 30px;
}
.footer .footer-section-brand h3 {
  font-family: "Kalnia", "Helvetica", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 15px;
  color: #fff;
}
.footer .footer-section-brand p {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
}
.footer .footer-section-brand a {
  text-decoration: none !important;
}
.footer .footer-section-hours {
  text-align: center;
}
.footer .footer-section-hours h3 {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}
.footer .footer-section-hours p {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
}
.footer .footer-section-contact h3 {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}
.footer .footer-section-contact p {
  font-family: "Poppins", "Georgia", serif;
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
}
.footer .social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.footer .social-icon {
  width: 40px;
  height: 40px;
  background-color: #115142;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer .social-icon:hover {
  background-color: #2D947C;
  color: #fff;
}
.footer .contact-info {
  list-style: none;
  padding: 0;
}
.footer .contact-info li {
  margin-bottom: 10px;
}
.footer .contact-info li i {
  margin-right: 10px;
}
.footer .footer-bottom {
  padding-top: 20px;
  text-align: center;
  color: #fff;
}
.footer .footer-bottom p {
  margin-bottom: 8px;
}
.footer .template-credit {
  margin-top: 8px;
}
.footer .template-credit p {
  font-family: "Poppins", "Georgia", serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.footer .template-credit span {
  color: #2D947C;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer .template-credit span:hover {
  color: #fff;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer .social-icons {
    justify-content: center;
  }
  .footer .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer .footer-section-brand {
    text-align: center;
  }
  .footer .footer-section-hours {
    text-align: center;
  }
  .footer .footer-section-contact {
    text-align: center;
  }
  .footer .footer-bottom .template-credit p {
    font-size: 0.75rem;
  }
}

[data-aos] {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
}

[data-aos][data-aos-delay="100"] {
  transition-delay: 100ms !important;
}

[data-aos][data-aos-delay="200"] {
  transition-delay: 200ms !important;
}

[data-aos][data-aos-delay="300"] {
  transition-delay: 300ms !important;
}

[data-aos][data-aos-delay="400"] {
  transition-delay: 400ms !important;
}

[data-aos][data-aos-delay="500"] {
  transition-delay: 500ms !important;
}

[data-aos=fade-up] {
  transition-duration: 800ms !important;
}

[data-aos=fade-in] {
  transition-duration: 600ms !important;
}

[data-aos=slide-up] {
  transition-duration: 800ms !important;
}

[data-aos=zoom-in] {
  transition-duration: 600ms !important;
}

.navbar-animate {
  transform: translateY(-100%);
  animation: slideDownNavbar 0.8s ease-out forwards;
}

@keyframes slideDownNavbar {
  to {
    transform: translateY(0);
  }
}
@media screen and (max-width: 768px) {
  [data-aos] {
    transition-duration: 0ms !important;
    transition-delay: 0ms !important;
  }
}/*# sourceMappingURL=main.css.map */