/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  padding: 14px 0;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
}

#header.header-scrolled {
  background: rgba(20, 2, 0, 0.8);
  transition: all 0.5s;
}

@media (max-width: 960px) {
  .header-top {
    display: none;
  }
}

@media (max-width: 673px) {
  #logo {
    margin-left: 20px;
  }
}

#header #logo h1 {
  font-size: 2.125rem;
  /* 34px */
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 3px;
}

@media (max-width: 768px) {
  #header #logo h1 {
    font-size: 1.75rem;
    /* 28px */
  }

  #header #logo img {
    max-height: 40px;
  }
}

/* end header */

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Essentials */
.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu>li {
  float: left;
}

.nav-menu li:hover>ul,
.nav-menu li.sfHover>ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
  text-align: left;
}

/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
  padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */
#nav-menu-container {
  margin: 0;
}

@media (max-width: 768px) {
  #nav-menu-container {
    display: none;
  }
}

/* Nav Meu Styling */
.nav-menu a {
  padding: 0 8px;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  font-weight: 400;
  font-size: 0.75rem;
  /* 12px */
  text-transform: uppercase;
  outline: none;
}

.nav-menu>li {
  margin-left: 10px;
}

.nav-menu ul {
  margin: 16px 0 0 0;
  padding: 10px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  background: #fff;
}

.nav-menu ul li {
  transition: 0.3s;
}

.nav-menu ul li a {
  padding: 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: 12px;
  text-transform: none;
}

.nav-menu ul li:hover>a {
  color: #b68834;
}

.nav-menu ul ul {
  margin: 0;
}

/* Mobile Nav Toggle */
#mobile-nav-toggle {
  position: fixed;
  right: 15px;
  z-index: 999;
  top: 16px;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle i {
  color: #fff;
  font-weight: 900;
}

@media (max-width: 800px) {
  #mobile-nav-toggle {
    display: inline;
  }

  #nav-menu-container {
    display: none;
  }
}

/* Mobile Nav Styling */
#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.8);
  left: -260px;
  width: 261px;
  /* Adjusting to 75% to fit on smaller screens */
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
  font-weight: 700;
}

#mobile-nav ul li a:hover {
  color: #fff;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #b68834;
}

#mobile-nav ul .menu-has-children li a {
  text-transform: none;
}

#mobile-nav ul .menu-item-active {
  color: #b68834;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  display: none;
}


.footer-area {
  color: #fff;
  padding-top: 220px;
  background: url(../img/footer-bg.jpg) center;
  background-size: cover;
}

.footer-area h6 {
  color: #fff;
  margin-bottom: 25px;
  font-size: 1.125rem;
  /* 18px */
  font-weight: 600;
}

.copy-right-text i,
.copy-right-text a {
  color: #b68834;
}

.footer-social a {
  padding-right: 25px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.footer-social a:hover i {
  color: #b68834;
}

.footer-social i {
  color: #cccccc;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media (max-width: 991.98px) {
  .footer-social {
    text-align: left;
  }
}


/* Banner */

.banner-area {
  background: url(../img/header-bg.jpg) center;
  background-size: cover;
}

@media (max-width: 1199.98px) {
  .banner-area .fullscreen {
    height: 920px !important;
  }
}

@media (max-width: 768px) {
  .banner-area {
    background: url(../img/header-bg.jpg);
    background-position: 50% 90% 50% 50%;
  }
}

.banner-content {
  margin-top: -450px;
}

.banner-content h1 {
  color: #fff;
  font-size: 3.75rem;
  /* 60px */
  font-weight: 600;
  line-height: 1em;
  margin-top: 20px;
  margin-bottom: 20px;
}

.banner-content h1 span {
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .banner-content h1 {
    font-size: 2.25rem;
    /* 36px */
  }
}

@media (max-width: 1199.98px) {
  .banner-content h1 {
    font-size: 45px;
  }
}

@media (max-width: 414px) {
  .banner-content h1 {
    font-size: 40px;
  }
}

.banner-content h5 {
  font-weight: 400;
  letter-spacing: 3px;
}

@media (max-width: 414px) {
  .banner-content br {
    display: none;
  }
}

.primary-btn {
  background: #fff;
  border: 1px solid transparent;
  color: #222;
  padding-left: 40px;
  padding-right: 40px;
  border-radius: 50px;
  height: auto;
  font-weight: bold;
}

.primary-btn:hover {
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
}

@media (max-width: 768px) {
  .video-sec-area {
    padding-top: 0px;
  }
}


.video-left {
  padding-left: 10%;
}

.video-left h6 {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #b68834;
  font-size: 12px;
  font-weight: 300;
}

.video-left h1 {
  padding-bottom: 20px;
}

.video-left p span {
  color: #000;
  font-weight: 400;
}

@media (max-width: 960px) {
  .video-left {
    margin-top: 50px;
  }
}

.video-right {
  background: url(../img/video-bg.jpg) no-repeat center;
  background-size: cover;
  height: 350px;
  border-radius: 10px;
}

.video-right .overlay-bg {
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.78);
}

.video-right .play-btn {
  z-index: 2;
}

@media (max-width: 800px) {
  .video-right {
    margin-top: 100px;
  }
}

.overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.container.fullwidth {
  width: 100%;
}

.container.no-padding {
  padding-left: 0;
  padding-right: 0;
}



.menu-area {
  background: url(../img/menu-bg.jpg) center;
  background-size: cover;
}

.single-menu {
  background-color: #fff;
  box-shadow: 0px 10px 30px 0px rgba(182, 136, 52, 0.2);
  border-radius: 10px;
  padding: 30px 30px;
  margin-bottom: 30px;
  height: 90%;
}

.single-menu .title-div {
  padding-bottom: 20px;
}

.single-menu .price {
  color: #b68834;
  font-size: 18px;
  font-weight: 600;
}

.single-menu p {
  margin-bottom: 0;
}


.gallery-area img {
  margin-bottom: 30px;
  width: 100%;
}


.review-area {
  background-color: #b68834;
  color: #fff;
}

.review-area h1,
.review-area h4 {
  color: #fff;
}

.single-review .title {
  margin: 20px 0;
}

.single-review .star {
  margin-left: 20px;
}

.single-review .star .checked {
  color: orange;
}

.counter-row {
  margin-top: 100px;
}

.counter-row .single-counter h1 {
  font-size: 60px;
  font-weight: 100;
}

@media (max-width: 767px) {
  .counter-row {
    text-align: center;
  }
}

.section-gap {
  padding: 80px 0;
}

.section-gap-top60 {
  padding: 80px 0;
  padding-top: 60px;
}

.section-title {
  padding-bottom: 30px;
}

.section-title h2 {
  margin-bottom: 20px;
}

.section-title p {
  font-size: 16px;
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .section-title p br {
    display: none;
  }
}

.generic-banner {
  background-color: #684504;
  text-align: center;
}

.generic-banner .height {
  height: 250px;
  padding-top: 50px;
}

@media (max-width: 767.98px) {
  .generic-banner .height {
    height: 400px;
  }
}

.generic-banner .generic-banner-content h2 {
  line-height: 1.2em;
  margin-bottom: 20px;
}

@media (max-width: 991.98px) {
  .generic-banner .generic-banner-content h2 br {
    display: none;
  }
}

.generic-banner .generic-banner-content p {
  text-align: center;
  font-size: 16px;
}

@media (max-width: 991.98px) {
  .generic-banner .generic-banner-content p br {
    display: none;
  }
}

.generic-content h1 {
  font-weight: 600;
}


.text-italic {
  font-style: italic;
}

.text-white {
  color: #fff;
}

.text-coffee {
  color: #5e5003;
  background-color: #f0f8e340;

}

.text-black {
  color: #000;
}

.text-black-alpha {
  color: #000000;
  background-color: #f0f0f080;
}

.food_section .filters_menu {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /* Allow items to wrap on smaller screens */
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style-type: none;
  margin: 45px 0 20px 0;
}

.food_section .filters_menu li {
  padding: 7px 15px;
  cursor: pointer;
  border-radius: 25px;
}

.food_section .filters_menu li.active {
  background-color: #222831;
  color: #ffffff;
}

.food_section .box {
  position: relative;
  margin-top: 25px;
  background-color: #ffffff;
  border-radius: 10px;
  color: #ffffff;
  border-radius: 12px;
  /* Reduced radius for mobile */
  overflow: hidden;
  background: linear-gradient(to bottom, #f1f2f3 25px, #222831 25px);
}

.food_section .box .img-box {
  background: #f1f2f3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 215px;
  width: 100%;
  border-radius: 0 0 0 45px;
  margin: -1px;
  padding: 25px;
}

.food_section .box .img-box img {
  width: 60%;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.food_section .box .detail-box {
  padding: 5px;
}

.food_section .box .detail-box h5 {
  font-weight: 600;
}

.food_section .box .detail-box p {
  font-size: 15px;
}

.food_section .box .detail-box h6 {
  margin-top: 10px;
}

.food_section .box .options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.food_section .box .options a {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: #ffbe33;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.food_section .box .options a svg {
  width: 18px;
  height: auto;
  fill: #ffffff;
}

.food_section .box:hover .img-box img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.food_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 45px;
}

.food_section .btn-box a {
  display: inline-block;
  padding: 10px 55px;
  background-color: #ffbe33;
  color: #ffffff;
  border-radius: 45px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
}

.food_section .btn-box a:hover {
  background-color: #e69c00;
}

.food_section .menu-tabs {
  display: flex;
  justify-content: center;
  /* Center tab headers */
  margin-bottom: 20px;
  /* Space below the tabs */
}

.food_section .menu-tab {
  padding: 12px 20px;
  /* Padding around tab text */
  border-radius: 25px;
  /* Rounded corners for a modern look */
  margin-right: 10px;
  /* Space between tabs */
  transition: background-color 0.3s, color 0.3s;
  /* Smooth transition */
}

.food_section .menu-tab:hover {
  background-color: #f0f0f0;
  /* Light background on hover */
  color: #333;
  /* Dark text on hover */
}

.food_section .menu-tab.active {
  background-color: #b68834;
  /* Active tab color */
  color: white;
  /* Text color for active tab */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  /* Slight shadow for depth */
}

.food_section .menu-tab:not(.active) {
  border: 1px solid #ddd;
  /* Border for inactive tabs */
}

.customization-columns {
  display: flex;
  /* Use flexbox for horizontal layout */
  justify-content: flex-start;
  /* Align items to the start of the container */
  width: 100%;
  /* Full width of the container */
}

.customization-column {
  box-sizing: border-box;
  /* Include padding and border in element's total width and height */
}


.cup-column,
.empty-cup-column {
  flex: 1;
  /* Remaining space shared equally between the two cup columns */
  margin-right: 10px;
  /* Add margin for spacing between columns */
}

/* Optional: Additional adjustments to make the layout look better on mobile */
@media (max-width: 768px) {

  .cup-column,
  .empty-cup-column {
    flex: 1;
    /* Make them equal width on small screens */
    margin-right: 0;
    /* Reset margin */
  }
}

/* Additional styling for the button */
.button-container {
  display: flex;
  /* Enable flexbox */
  justify-content: center;
  /* Center content */
  margin-top: 10px;
  /* Space above the button */
  font-size: medium;
}

.img-box img {
  width: 100%;
  /* Make images responsive */
  height: 100%;
  /* Maintain aspect ratio */
}

.add-to-cart-button {
  /* position: absolute; */
  position: relative;
  /* Make button relative for positioning */
  margin: auto;
  /* Centering */
}

/* Optional: Add some padding inside columns */
.cup-column,
.empty-cup-column {
  padding: 15px;
  border: 1px solid #ddd;
  /* Optional: border around columns for visibility */
  border-radius: 8px;
  /* Optional: rounded corners */
}

.options-column {
  width: 25%;
  display: flex;
  flex-direction: column;
  margin-left: 10px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.ingredients-options {
  flex: 1;
  /* Take remaining space */
  border: 1px solid #ddd;
  /* Border around the ingredients options */
  margin-bottom: 10px;
  /* Space between sections */
  padding: 10px;
}

.ingredient-option {
  display: flex;
  /* Align items in row */
  justify-content: space-between;
  /* Space between label and select */
  margin-bottom: 10px;
  /* Space between each ingredient option */
}

.ingredient-option select {
  flex: 0.55;
  /* Take remaining space */
}

.ingredient-option label {
  flex: 0.45;
  /* Take remaining space */
  font-weight: bold;
  /* Make labels bold */
  font-style: italic;
  color: black;
}

.nutrition-values {
  border: 1px solid #ddd;
  /* Border around nutrition values */
  padding: 10px;
}

.nutrition-title {
  text-align: center;
  /* Center the title */
  margin-bottom: 10px;
  /* Space below the title */
}

.nutrient-item {
  display: flex;
  /* Align label and value in a row */
  justify-content: space-between;
  /* Space between label and value */
}

.nutrient-label {
  font-weight: bold;
  /* Make labels bold */
  font-style: italic;
  color: black;
}

.nutrient-value {
  font-weight: bold;
  /* Add styles for nutrient values here if needed*/
}


.img-box {
  position: relative;
  /* Ensures positioning context for absolute children */
}

.cup-image {
  position: relative;
  width: 100%;
  /* Full width */
  height: auto;
  /* Maintain aspect ratio */
}

.cup-fill-container {
  bottom: 10%;
  width: 100%;
  height: 60%;
  pointer-events: none;
  overflow: hidden;
  margin: auto;
}
.cup-fill-layer {
  position: absolute;
  left: 0;
  right: 0;
  transition: height 0.6s ease-in-out forwards;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cup-fill-layer img {
  width: 100%;
  height : 100%;
  display: block;
  max-height: 100%;
  max-width: 100%;
  object-fit: fill;
}
