:root {
  --white-color: #ffffff;
  --primary-color: #FF0000;
  --secondary-color: #FFBB00;
  --tertiary-color: #FF8000;
  --section-bg-color: #FFF7EE;
  --custom-btn-bg-color: #80d0c7;
  --custom-btn-bg-hover-color: #13547a;
  --dark-color: #000000;
  --p-color: #717275;
  --border-color: #7fffd4;
  --link-hover-color: #13547a;
  --menu-font-size: 18px;
}
.accordion {
  --bs-accordion-active-color: #FF0000;
  --bs-accordion-active-bg: #FFF7EE;
}
.navbar {
  border-bottom-color: #FF9900;
}
.navbar:not(:has(.navbar-collapse.show)) {
  height: 80px;
}
.navbar:not(:has(.navbar-collapse.show)) .navbar-brand {
  padding: 0px; /*margin: auto;*/
}
.navbar:not(:has(.navbar-collapse.show)) .navbar-brand > img {
  margin-top: -9px;
}
.navbar-collapse.show {
  margin-top: 1em;
}
.hero-section {
  background-image: linear-gradient(15deg, #F80 0%, #FFC300 80%);
}
.custom-block .rounded-pill {
  width: fit-content;
}
.custom-block .product-image {
  display: block;
  max-width: 100%;
  width: 100%;
  height: 200px;
  object-fit: contain;
  margin-top: 25px;
}
.custom-block-overlay :is(h5, p) {
  text-shadow: black 1px 1px 2px;
}
.custom-block-overlay.text-white :is(h5, p) {
  color: white;
}
.logo-landing {
  max-width: 100%;
  max-height: 256px;
  margin-top: -10px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .featured-section .custom-block-overlay .custom-block-image {
    position: absolute;
  }
  .featured-section .custom-block-overlay .custom-block-overlay-text {
    position: initial;
  }
  .featured-section .custom-block-overlay .social-share {
    position: initial;
    padding-top: 0px;
  }
}
.section-overlay {
  background-image: linear-gradient(15deg, #FF0000 0%, #FF8800 80%);
}
.featured-section {
  background-color: var(--tertiary-color);
}
.badge.bg-primary {
  background-color: var(--primary-color) !important;
}
.badge.bg-secondary {
  background-color: var(--secondary-color) !important;
}
.badge.bg-tertiary {
  background-color: var(--tertiary-color) !important;
}
.custom-btn:has(.bi-whatsapp):not(:hover) {
  background-color: #1DAA61;
}
.gallery-section {
  background-image: url('../images/gallery_bg.webp');
  overflow: hidden;
}
.gallery-section .row {
  position: relative;
}
.gallery-section .control-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  border: none;
  border-radius: var(--border-radius-large);
  background-color: rgba(0,0,0,0.35);
  color: white;
  font-size: 36px;
  font-weight: var(--font-weight-semibold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
  text-align: center;
}
.gallery-section .control-btn:hover {
  background-color: rgba(0,0,0,0.65);
  color: white;
}
.gallery-section .control-btn:active {
  background-color: rgba(0,0,0,1.0);
  color: white;
}
.gallery-section .control-btn.prev {
  left: 0;
}
.gallery-section .control-btn.next {
  right: 0;
}
@media (max-width: 767px) {
  .gallery-section .control-btn {
    top: 22px;
  }
}
@media (max-width: 575px) {
  .gallery-section .control-btn.prev {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
  }
  .gallery-section .control-btn.next {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
  }
}
.gallery-container {
  position: relative;
}
.gallery-layer {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  opacity: 0;
  display: none;
  transition: 0.5s cubic-bezier(.22,.61,.36,1);
  transition-property: opacity, top;
}
.gallery-layer.show {
  /*opacity: 1.0;*/
  display: block;
  /*top: 0;*/
}