.btn {
  --bs-btn-padding-x: 1.25rem;
  --bs-btn-padding-y: 0.5rem;
}

.btn-primary {
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-hover-bg: var(--bs-primary-darker);
  --bs-btn-active-bg: var(--bs-primary-darker);
  --bs-btn-border-color: transparent;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-border-color: transparent;
}

.btn-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1rem 2rem;
  line-height: 24px;
}

:root {
  --lightbox: rgb(0 0 0 / 0.85);
  --carousel-text: #fff;
}

@keyframes zoomin {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.lightbox-modal .modal-content {
  background-color: var(--lightbox);
}
.lightbox-modal .modal-content .lightbox-img {
  height: 80vh;
  object-fit: contain;
}

.lightbox-modal .btn-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.25rem;
  z-index: 10;
  filter: invert(1) grayscale(100);
}

.lightbox-modal .modal-body {
  display: flex;
  align-items: center;
  padding: 0;
}

.lightbox-modal .lightbox-content {
  width: 100%;
}

.lightbox-modal .carousel-indicators {
  margin-bottom: 0;
}

.lightbox-modal .carousel-indicators [data-bs-target] {
  background-color: var(--carousel-text) !important;
}

.lightbox-modal .carousel-inner {
  width: 75%;
}

.lightbox-modal .carousel-inner img {
  animation: zoomin 10s linear infinite;
}

.lightbox-modal .carousel-item .carousel-caption {
  right: 0;
  bottom: 0;
  left: 0;
  padding-bottom: 2rem;
  background-color: var(--lightbox);
  color: var(--carousel-text) !important;
}
.lightbox-modal .carousel-item .carousel-caption h4 {
  font-size: 16px;
  font-weight: 400;
}

.lightbox-modal .carousel-control-prev,
.lightbox-modal .carousel-control-next {
  width: auto;
}

.lightbox-modal .carousel-control-prev {
  left: 1.25rem;
}

.lightbox-modal .carousel-control-next {
  right: 1.25rem;
}

@media (min-width: 1400px) {
  .lightbox-modal .carousel-inner {
    max-width: 60%;
  }
}
[data-bs-theme=dark] .lightbox-modal .carousel-control-next-icon,
[data-bs-theme=dark] .lightbox-modal .carousel-control-prev-icon {
  filter: none;
}

.form-control:focus {
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}

.form-label {
  font-size: 14px;
  line-height: 25px;
}

:root {
  --bs-primary: #ff7300;
  --bs-primary-rgb: 255, 115, 0;
  --bs-primary-darker: #d56302;
  --bs-body-font-family: "Poppins", sans-serif;
  --bs-nav-link-font-size: 14px;
  --bs-nav-link-font-weight: 500;
  --bs-link-color: #ff7300;
  --bs-link-hover-color: #d56302;
  --bs-warning-rgb: 255, 115, 0;
}

.wrapper {
  padding-bottom: 100px;
}
@media (min-width: 768px) {
  .wrapper {
    padding-bottom: 0;
  }
}

.modal-backdrop {
  --bs-backdrop-opacity: 0.875 ;
}

.dropdown-menu {
  --bs-dropdown-font-size: 14px;
  --bs-dropdown-link-active-bg: var(--bs-primary);
  --bs-dropdown-link-hover-bg: var(--bs-primary);
  --bs-dropdown-link-hover-color: white;
  font-weight: 500;
}

.breadcrumb {
  --bs-breadcrumb-divider-color: #CCC;
  --bs-breadcrumb-divider: ">";
  font-size: 12px;
  margin-bottom: -48px;
}

.navbar {
  --bs-navbar-nav-link-padding-x: 1rem;
  --bs-navbar-active-color: var(--bs-primary) ;
}

.navbar-nav {
  --bs-nav-link-padding-x: 1rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  line-height: 1;
  font-weight: 600;
}

.hero {
  position: relative;
  aspect-ratio: 16/3;
  overflow: hidden;
  background: #000;
  color: white;
  --slider-aspect-ratio: 2/3;
}
.hero h1 {
  font-weight: 700;
}
.hero img {
  opacity: 0.5;
  height: 100%;
  object-fit: cover;
}
.hero .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
}
.hero .hero-content h2 {
  font-size: 34px;
  margin-bottom: 2rem;
  font-weight: 600;
}
@media (min-width: 992px) {
  .hero .hero-content h2 {
    font-size: 54px;
  }
}
.hero .hero-content p {
  font-size: 16px;
  margin-bottom: 2rem;
  font-weight: 400;
}
@media (min-width: 992px) {
  .hero .hero-content p {
    font-size: 20px;
  }
}
@media (min-width: 576px) {
  .hero {
    --slider-aspect-ratio: 16/10;
  }
}
@media (min-width: 768px) {
  .hero {
    --slider-aspect-ratio: 16/6;
  }
}
@media (min-width: 992px) {
  .hero {
    --slider-aspect-ratio: 16/6;
  }
}
@media (min-width: 1400px) {
  .hero {
    --slider-aspect-ratio: 16/7;
  }
}
.hero--slider {
  aspect-ratio: var(--slider-aspect-ratio);
}
.hero--slider .carousel-item {
  overflow: hidden;
  background: #000;
  color: white;
  text-align: center;
}
.hero--slider .carousel-item.active img {
  animation: zoomin 10s linear infinite;
}
.hero--slider .carousel-indicators {
  bottom: 50px;
}
.hero--slider .carousel-item {
  aspect-ratio: var(--slider-aspect-ratio);
  overflow: hidden;
}
@media (min-width: 992px) {
  .hero--slider .carousel-item {
    aspect-ratio: var(--slider-aspect-ratio);
  }
}

.delivery-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10;
  font-weight: 400;
}
@media (min-width: 768px) {
  .delivery-panel {
    position: relative;
    margin-top: -40px;
    border-top: none;
  }
}

.delivery-panel-content h2 {
  font-size: 16px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .delivery-panel-content h2 {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .delivery-panel-content h2 {
    font-size: 32px;
  }
}

.page-header {
  padding-bottom: 64px;
}

.header-title {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .header-title {
    font-size: 56px;
  }
}

.header-subtitle {
  font-size: 18px;
}
@media (min-width: 992px) {
  .header-subtitle {
    font-size: 24px;
  }
}

.main .body-section {
  padding: 40px 24px;
}
@media (min-width: 992px) {
  .main .body-section {
    padding: 96px 0;
  }
}
@media (max-width: 992px) {
  .main .body-section.contact-section {
    padding: 0;
  }
}
.main .body-section.contact-section > .container {
  border-radius: 8px;
}
.main .section-title {
  margin-bottom: 2rem;
  font-weight: 500;
  font-size: 3rem;
}
.main .product-content {
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: white;
  height: auto;
  padding: 1rem 0.25rem;
  margin: 1rem 0;
  transition: all 0.5s ease-in-out;
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  .main .product-content {
    padding: 3rem;
  }
}
.main .product-content h3 {
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  font-size: 30px;
  font-weight: 600;
}
@media (min-width: 992px) {
  .main .product-content h3 {
    font-size: 40px;
  }
}
.main .product-content h3:after {
  content: "";
  width: 100px;
  background: orange;
  height: 1px;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateX(-50%);
}
.main .product-content a {
  font-size: 14px;
  letter-spacing: 1px;
  text-decoration: none;
}
.main .product-content a span {
  margin-left: 1rem;
}
.main .product-image-wrapper {
  order: 1;
  overflow: hidden;
  aspect-ratio: 16/8;
}
@media (min-width: 992px) {
  .main .product-image-wrapper {
    padding: 0 2rem;
    transition: all 1s ease-in-out;
  }
  .main .product-image-wrapper:hover img {
    transform: scale(1.5);
    opacity: 1;
  }
}
.main .product-image-wrapper a {
  display: block;
  background: black;
}
.main .product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s ease-in-out;
  opacity: 0.5;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  /*.grid-item:nth-child(2) {
    grid-column: span 1;
    grid-row: span 2;
  }*/
}
.gallery .grid-item {
  overflow: hidden;
  border-radius: 8px;
}
.gallery .grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery .grid-item:hover img {
  animation: zoomin 5s linear infinite;
}
.gallery .grid-item--wide {
  grid-column: span 2;
  grid-row: span 1;
}

.delivery-section {
  background: #000000 url(../img/delivery/background.jpg) center center no-repeat fixed;
  background-size: cover;
  background-blend-mode: luminosity;
}

.product-gallery-item {
  overflow: hidden;
}
.product-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

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