@import "bootstrap.min.css";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
@import "plugins/flickity.min.css";
.animated-effect, .shop .product-item .product-buy, .shop .product-item, .shop .shop-sidebar .nav .nav-item .nav-link, .shopping-cart-wrapper .shopping-cart .shopping-cart-products .product-item .product-delete, .shopping-cart-wrapper .shopping-cart-toggle, .contact .contact-item .contact-info a, .products .product-item .product-buy, .btn img, .btn, .page-footer ul.nav.social-nav .nav-item .nav-link, .page-footer ul.nav .nav-item .nav-link {
  transition: 0.1s ease all;
}

.animated-long-effect, .shopping-cart-wrapper .shopping-cart, .shopping-cart-wrapper .shopping-cart-overlay {
  transition: 0.3s ease all;
}

.active-effect, .shopping-cart-wrapper .shopping-cart-toggle:active, .btn.btn-link:active, .btn.btn-outline-dark:active, .btn.btn-outline-light:active, .btn.btn-outline-primary:active, .btn.btn-dark:active, .btn.btn-light:active, .btn.btn-primary:active, .page-footer ul.nav.social-nav .nav-item .nav-link:active {
  transform-origin: center;
  transform: scale(0.975);
}

.disable-selection {
  user-select: none;
}

.disable-clicks {
  pointer-events: none;
}

.text-ellipsis {
  width: 100%;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

html, body {
  font-family: "Inter", sans-serif;
  position: relative;
}
@media (min-width: 992px) and (max-width: 1199.9px) {
  html, body {
    font-size: 14px;
  }
}
@media (min-width: 768px) and (max-width: 991.9px) {
  html, body {
    font-size: 14px;
  }
}

body.cart-active {
  overflow: hidden;
}

.navbar-brand {
  margin: 0;
  padding: 0;
}
.navbar-brand img {
  height: 7rem;
}
@media (max-width: 767.9px) {
  .navbar-brand img {
    height: 5rem;
  }
}

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  padding: 1.5rem 0;
}
.navbar.static-navbar {
  position: relative;
}
@media (max-width: 767.9px) {
  .navbar.static-navbar {
    padding-bottom: 0;
  }
}
@media (max-width: 767.9px) {
  .navbar.static-navbar .open-status {
    display: none;
  }
}
.navbar.static-navbar .open-status.active {
  background: none;
  color: #9ae30a;
  font-weight: bold;
  border: 1px solid #9ae30a;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767.9px) {
  .navbar .container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.navbar .open-status {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.5rem 0.75rem 2.5rem;
  border-radius: 2rem;
  background: rgba(1, 1, 1, 0.75);
  backdrop-filter: blur(5px);
  font-size: 0.9rem;
  color: #fff;
  position: relative;
}
@media (max-width: 767.9px) {
  .navbar .open-status {
    padding: 0.25rem 0.25rem 0.25rem 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    background: none;
    backdrop-filter: none;
    color: #9ae30a;
  }
}
.navbar .open-status:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.5rem;
  width: 0.5rem;
  height: 0.5rem;
  background: #fff;
  content: " ";
  border-radius: 50%;
  margin: auto;
}
@media (max-width: 767.9px) {
  .navbar .open-status:before {
    left: 0;
  }
}
.navbar .open-status.active:before {
  background: #9ae30a;
  animation: pulse-green 1s infinite;
}
.navbar form {
  position: relative;
  flex-grow: 1;
  margin: 0 1.5rem;
}
@media (max-width: 767.9px) {
  .navbar form {
    margin: 1.5rem -0.75rem 0 -0.75rem;
    width: calc(100% + 1.5rem);
  }
}
.navbar form:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  background: url("../img/icons/search.svg") center no-repeat;
  background-size: contain;
  content: " ";
  margin: auto;
  z-index: 1;
  opacity: 0.25;
}
.navbar form .form-control {
  height: auto;
  padding: 1rem 1rem 1rem 3.25rem;
  border-radius: 2rem;
  box-shadow: none;
  border: 1px solid #eee;
}
@media (max-width: 767.9px) {
  .navbar form .form-control {
    border-radius: 0;
    border: none;
    border-top: 1px solid #eee;
    background: #fff;
  }
}
.navbar form .form-control:focus {
  box-shadow: rgba(217, 185, 87, 0.2) 0 0.25rem 0.75rem;
  border-color: #d9b957;
}
@media (max-width: 767.9px) {
  .navbar form .form-control:focus {
    box-shadow: none;
  }
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(154, 227, 10, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(154, 227, 10, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(154, 227, 10, 0);
  }
}
@keyframes pulse-white {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.page-footer {
  background: #010101;
  padding: 5rem 0;
}
@media (max-width: 767.9px) {
  .page-footer {
    text-align: center;
  }
}
.page-footer h5, .page-footer h5 > a {
  font-weight: bold;
  font-size: 1rem;
  color: #fff;
  margin: 0 0 1rem 0;
  padding: 0;
}
@media (max-width: 767.9px) {
  .page-footer h5, .page-footer h5 > a {
    margin: 2rem 0 0.5rem 0;
  }
}
.page-footer h5 > a {
  font-weight: bold;
  font-size: 1rem;
  color: #fff;
  margin: 0 0 1rem 0;
  padding: 0;
}
.page-footer h5 > a:hover {
  color: #d9b957;
}
@media (max-width: 767.9px) {
  .page-footer h5 > a {
    margin: 2rem 0 0.5rem 0;
  }
}
@media (max-width: 767.9px) {
  .page-footer ul.nav {
    text-align: center;
    justify-content: center;
    align-items: center;
  }
}
.page-footer ul.nav .nav-item .nav-link {
  padding: 0.25rem 0;
  display: block;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 767.9px) {
  .page-footer ul.nav .nav-item .nav-link {
    padding: 0.15rem 0;
  }
}
.page-footer ul.nav .nav-item .nav-link:hover {
  color: #fff;
}
.page-footer ul.nav .nav-item p {
  color: rgba(255, 255, 255, 0.5);
}
.page-footer ul.nav.social-nav {
  margin-top: 1.5rem;
}
.page-footer ul.nav.social-nav .nav-item .nav-link {
  width: 3rem;
  height: 3rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  margin-right: 0.5rem;
  text-align: center;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page-footer ul.nav.social-nav .nav-item .nav-link:hover {
  background: rgba(255, 255, 255, 0.15);
}
.page-footer ul.nav.social-nav .nav-item .nav-link:active {
  background: rgba(255, 255, 255, 0.25);
}
.page-footer ul.nav.social-nav .nav-item .nav-link img {
  width: 1.25rem;
  height: 1.25rem;
  filter: brightness(0) invert(1);
}
.page-footer p.disclaimer {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.8rem;
  margin: 2.5rem 0 0 0;
  padding: 2.5rem 0 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn {
  font-weight: 700;
  border-radius: 1.25rem;
  border-width: 2px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  box-shadow: none;
  outline: none;
}
.btn img {
  width: 2rem;
  height: 2rem;
  margin: -0.5rem 1rem -0.5rem -0.5rem;
}
@media (max-width: 767.9px) {
  .btn img {
    margin: -0.25rem 0.5rem -0.25rem -0.25rem;
    width: 1.5rem;
    height: 1.5rem;
  }
}
.btn.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.25rem;
}
@media (min-width: 768px) and (max-width: 991.9px) {
  .btn.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.15rem;
  }
}
@media (max-width: 767.9px) {
  .btn.btn-lg {
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }
}
.btn:hover, .btn:focus, .btn:not(:disabled):not(.disabled):active {
  box-shadow: none;
  outline: none;
}
.btn.btn-primary {
  background: #d9b957;
  border-color: #d9b957;
}
.btn.btn-primary[disabled] {
  filter: grayscale(1);
  opacity: 0.5;
}
.btn.btn-primary img {
  filter: brightness(0) invert(1);
  margin: -0.25rem 0.5rem -0.25rem -0.25rem;
}
.btn.btn-primary:hover, .btn.btn-primary:focus {
  background: #b68a30;
  border-color: #b68a30;
}
.btn.btn-primary:hover img, .btn.btn-primary:focus img {
  filter: brightness(0) invert(1);
}
.btn.btn-primary:active {
  background: #b4872c;
  border-color: #b4872c;
}
.btn.btn-primary:active img {
  filter: brightness(0) invert(1);
}
.btn.btn-light {
  background: #fff;
  border-color: #fff;
  color: #010101;
}
.btn.btn-dark {
  background: #010101;
  border-color: #010101;
  color: #010101;
}
.btn.btn-dark:hover, .btn.btn-dark:focus {
  background: #222;
  border-color: #222;
  color: #fff;
}
.btn.btn-dark:active {
  background: #444;
  border-color: #444;
  color: #fff;
}
.btn.btn-outline-primary {
  border-color: #d9b957;
  color: #d9b957;
}
.btn.btn-outline-primary:hover, .btn.btn-outline-primary:focus {
  background: #d9b957;
  border-color: #d9b957;
  color: #fff;
}
.btn.btn-outline-primary:hover img, .btn.btn-outline-primary:focus img {
  filter: brightness(0) invert(1);
}
.btn.btn-outline-primary:active {
  background: #b4872c;
  border-color: #b4872c;
  color: #fff;
}
.btn.btn-outline-primary:active img {
  filter: brightness(0) invert(1);
}
.btn.btn-outline-light {
  border-color: #fff;
  color: #fff;
}
.btn.btn-outline-light:hover, .btn.btn-outline-light:focus {
  background: #fff;
  border-color: #fff;
  color: #010101;
}
.btn.btn-outline-light:active {
  background: #fff;
  border-color: #fff;
  color: #d9b957;
}
.btn.btn-outline-dark {
  border-color: #010101;
  color: #010101;
}
.btn.btn-outline-dark:hover, .btn.btn-outline-dark:focus {
  background: #010101;
  border-color: #010101;
  color: #fff;
}
.btn.btn-outline-dark:active {
  background: #333;
  border-color: #333;
  color: #fff;
}
.btn.btn-link {
  padding: 0;
  border: none;
  outline: none;
  box-shadow: none;
  text-transform: none;
  text-decoration: none;
  color: #010101;
}
.btn.btn-link:hover, .btn.btn-link:focus, .btn.btn-link:not(:disabled):not(.disabled):active {
  background: transparent;
  border: transparent;
  box-shadow: none;
  color: rgb(231.1116504854, 210.9951456311, 149.3883495146);
}
.main {
  padding: 15rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #010101;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 991.9px) {
  .main {
    padding: 10rem 0;
  }
}
@media (max-width: 767.9px) {
  .main:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #010101, #010101);
    z-index: 1;
    opacity: 0.4;
    content: " ";
  }
}
@media (max-width: 767.9px) {
  .main {
    padding: 15rem 0 10rem 0;
    text-align: center;
  }
}
.main .main-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main .container {
  position: relative;
  z-index: 2;
}
.main h1 {
  font-size: 4rem;
  text-transform: uppercase;
  color: #fff;
  font-weight: bold;
  line-height: 1.1;
  margin: 0;
}
@media (min-width: 768px) and (max-width: 991.9px) {
  .main h1 {
    font-size: 3rem;
  }
}
@media (max-width: 767.9px) {
  .main h1 {
    font-size: 2rem;
  }
}
.main p {
  color: rgba(255, 255, 255, 0.5);
  margin: 1rem 0 1.5rem 0;
}

.products {
  position: relative;
  background: #fafbfc;
  padding: 1.5rem 0 1.5rem 0;
  z-index: 2;
}
@media (max-width: 767.9px) {
  .products {
    padding: 0;
    background: none;
    margin-top: -5rem;
  }
}
@media (max-width: 767.9px) {
  .products .row {
    flex-wrap: nowrap;
    overflow-y: hidden;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .products .row > * {
    flex: 0 0 auto;
    width: 75%;
  }
}
.products .product-item {
  width: 20% !important;
  display: block;
  position: relative;
  margin-right: 1.5rem;
  background: #fff;
  padding: 1.25rem;
  border-radius: 1.25rem;
  border: 3px solid #fff;
  cursor: pointer;
  box-shadow: rgba(1, 1, 1, 0.05) 0 0.25rem 0.5rem;
  z-index: 1;
}
@media (max-width: 767.9px) {
  .products .product-item {
    width: 50% !important;
    padding: 1rem;
  }
}
.products .product-item:hover {
  border-color: #d9b957;
}
.products .product-item:hover .product-buy {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.products .product-item img {
  width: 100%;
  height: auto;
  display: block;
}
.products .product-item .product-name {
  font-weight: 600;
  color: #010101;
  font-size: 1.1rem;
  line-height: 1.2;
  margin: 0.5rem 0;
  display: block;
}
.products .product-item .product-price {
  color: #d9b957;
  font-weight: bold;
}
.products .product-item .product-label {
  position: absolute;
  top: -0.75rem;
  left: 1rem;
  display: inline-block;
  padding: 0 0.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
  background: #d9b957;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  z-index: 2;
}
.products .product-item .product-buy {
  position: absolute;
  top: 100%;
  left: -3px;
  width: calc(100% + 6px);
  height: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  z-index: 2;
}
@media (max-width: 767.9px) {
  .products .product-item .product-buy {
    position: relative;
    top: auto;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding-top: 1rem;
  }
}
.products .product-item .product-buy .btn.btn-primary {
  width: 100%;
  display: block;
  border-radius: 0 0 1.25rem 1.25rem;
  padding: 1rem 0;
  outline: none;
  box-shadow: none;
}
@media (max-width: 767.9px) {
  .products .product-item .product-buy .btn.btn-primary {
    font-size: 0.8rem;
    padding: 0.5rem;
    border-radius: 1.25rem;
  }
}
.products.v2 {
  padding: 2.5rem 0;
  background: none;
}
@media (max-width: 767.9px) {
  .products.v2 {
    margin: 0;
    padding-bottom: 0;
  }
  .products.v2 .row {
    padding-top: 1rem;
  }
}
.products.v2 h2 {
  font-weight: bold;
  font-size: 1.5rem;
  color: #010101;
}
.products.v2 .product-item {
  margin-top: 1.5rem;
  box-shadow: rgba(1, 1, 1, 0.1) 0 0.15rem 0.45rem;
}
.products.v2 .product-item .product-thumb {
  display: block;
}
.products.v2 .product-item .product-thumb:hover {
  opacity: 0.8;
}
.products.v2 .product-item .product-thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.products.v2 .product-item .product-name {
  font-weight: 600;
  color: #010101;
  font-size: 1.1rem;
  line-height: 1.2;
  margin: 0.5rem 0;
  display: block;
  text-decoration: none;
}
.products.v2 .product-item .product-name:hover {
  text-decoration: underline;
}

.about {
  position: relative;
  z-index: 1;
}
@media (max-width: 767.9px) {
  .about {
    background: #fafbfc;
    text-align: center;
    padding-bottom: 5rem;
  }
}
.about h3 {
  font-size: 1.25rem;
  color: #010101;
}
.about h2 {
  font-weight: bold;
  font-size: 3rem;
  color: #010101;
  margin: 1rem 0;
}
@media (min-width: 768px) and (max-width: 991.9px) {
  .about h2 {
    font-size: 2.5rem;
    margin: 0.5rem 0;
  }
}
@media (max-width: 767.9px) {
  .about h2 {
    font-size: 2.5rem;
  }
}
.about p {
  padding-right: 25%;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) and (max-width: 991.9px) {
  .about p {
    padding-right: 0;
  }
}
@media (max-width: 767.9px) {
  .about p {
    padding-right: 0;
  }
}
.about .about-gallery {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  overflow: hidden;
  padding: 1.5rem 0;
}
@media (max-width: 767.9px) {
  .about .about-gallery {
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin-bottom: 5rem;
    width: calc(100% + 1.5rem);
    margin-left: -0.75rem;
    margin-right: -0.75rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}
.about .about-gallery:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: " ";
  z-index: 2;
}
.about .about-gallery img {
  height: 17rem;
  object-fit: cover;
  width: 100%;
  border-radius: 1.25rem;
  transition: 0.1s ease all;
}
.about .about-gallery img.about-gallery-left {
  transform: translateY(-7.5rem);
}
.about .about-gallery img.about-gallery-right {
  transform: translateY(7.5rem);
}
@media (max-width: 767.9px) {
  .about .about-gallery img.about-gallery-center {
    display: none;
  }
}

.company {
  position: relative;
  z-index: 1;
  padding: 7.5rem 0;
  background: #010101;
}
@media (max-width: 767.9px) {
  .company {
    padding: 0 0 3.5rem 0;
    text-align: center;
  }
}
.company .container {
  position: relative;
  z-index: 2;
}
.company:before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 10%;
  height: 100%;
  background: linear-gradient(to right, #010101, rgba(1, 1, 1, 0));
  content: " ";
  z-index: 1;
}
@media (max-width: 767.9px) {
  .company:before {
    opacity: 0;
  }
}
.company .company-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
@media (max-width: 767.9px) {
  .company .company-image {
    position: relative;
    width: 100%;
    height: 20rem;
    object-fit: cover;
    object-position: center;
    margin-bottom: 5rem;
  }
}
.company h3 {
  font-size: 1.25rem;
  color: #fff;
}
.company h2 {
  font-weight: bold;
  font-size: 3rem;
  color: #fff;
  margin: 1rem 0;
}
@media (min-width: 768px) and (max-width: 991.9px) {
  .company h2 {
    font-size: 2.5rem;
    margin: 0.5rem 0;
  }
}
@media (max-width: 767.9px) {
  .company h2 {
    font-size: 2.5rem;
  }
}
.company p {
  padding-right: 25%;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
}
@media (min-width: 768px) and (max-width: 991.9px) {
  .company p {
    padding-right: 0;
  }
}
@media (max-width: 767.9px) {
  .company p {
    padding-right: 0;
  }
}

.company-2 {
  position: relative;
  z-index: 1;
  padding: 7.5rem 0;
  background: #010101;
}
@media (max-width: 767.9px) {
  .company-2 {
    padding: 0 0 3.5rem 0;
    text-align: center;
  }
}
.company-2 .container {
  position: relative;
  z-index: 2;
}
.company-2:before {
  position: absolute;
  top: 0;
  right: 50%;
  width: 10%;
  height: 100%;
  background: linear-gradient(to left, #010101, rgba(1, 1, 1, 0));
  content: " ";
  z-index: 1;
}
@media (max-width: 767.9px) {
  .company-2:before {
    opacity: 0;
  }
}
.company-2 .company-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
@media (max-width: 767.9px) {
  .company-2 .company-image {
    position: relative;
    width: 100%;
    height: 20rem;
    object-fit: cover;
    object-position: center;
    margin-bottom: 5rem;
  }
}
.company-2 h3 {
  font-size: 1.25rem;
  color: #fff;
}
.company-2 h2 {
  font-weight: bold;
  font-size: 3rem;
  color: #fff;
  margin: 1rem 0;
}
@media (min-width: 768px) and (max-width: 991.9px) {
  .company-2 h2 {
    font-size: 2.5rem;
    margin: 0.5rem 0;
  }
}
@media (max-width: 767.9px) {
  .company-2 h2 {
    font-size: 2.5rem;
  }
}
.company-2 p {
  padding-right: 25%;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
}
@media (min-width: 768px) and (max-width: 991.9px) {
  .company-2 p {
    padding-right: 0;
  }
}
@media (max-width: 767.9px) {
  .company-2 p {
    padding-right: 0;
  }
}

.contact {
  padding: 5rem 0;
  background: #010101;
}
@media (max-width: 767.9px) {
  .contact {
    padding: 0 0;
  }
}
@media (max-width: 767.9px) {
  .contact .map {
    width: calc(100% + 1.5rem);
    margin: 0 -0.75rem 3.5rem -0.75rem;
  }
}
.contact .map iframe {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  width: 100%;
  height: 20rem;
  filter: grayscale(1);
}
@media (max-width: 767.9px) {
  .contact .map iframe {
    border-radius: 0;
  }
}
.contact .working-hours {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.025);
  border-radius: 1.25rem;
}
@media (max-width: 767.9px) {
  .contact .working-hours {
    padding: 2.5rem 0 0 0;
    margin-top: 1.5rem;
    background: none;
    border-radius: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
  }
}
.contact .working-hours h4 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #fff;
  margin: 0 0 1rem 0;
}
.contact .working-hours p {
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  margin: 0.5rem 0 0 0;
}
@media (max-width: 767.9px) {
  .contact .working-hours p {
    justify-content: center;
    text-align: left;
  }
}
.contact .working-hours p strong {
  font-weight: 400;
  width: 35%;
  flex-shrink: 0;
}
@media (max-width: 767.9px) {
  .contact .working-hours p strong {
    text-align: right;
    padding-right: 1rem;
  }
}
.contact .working-hours p.active {
  color: #9ae30a;
}
.contact .working-hours p.active strong, .contact .working-hours p.active span {
  font-weight: bold;
}
.contact .contact-item {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 767.9px) {
  .contact .contact-item {
    text-align: center;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
}
.contact .contact-item + .contact-item {
  margin-top: 1.5rem;
}
.contact .contact-item .contact-icon {
  width: 4rem;
  height: 4rem;
  background: #d9b957;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 1.25rem;
  margin-right: 1rem;
  flex-shrink: 0;
}
@media (max-width: 767.9px) {
  .contact .contact-item .contact-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
.contact .contact-item .contact-icon img {
  width: 2rem;
  height: 2rem;
  filter: brightness(0) invert(1);
}
.contact .contact-item .contact-info h4 {
  font-weight: bold;
  color: #fff;
  display: block;
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
}
.contact .contact-item .contact-info p {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  margin-bottom: 0;
}
.contact .contact-item .contact-info a {
  padding: 0.25rem 0;
  display: block;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
@media (max-width: 767.9px) {
  .contact .contact-item .contact-info a {
    padding: 0.15rem 0;
  }
}
.contact .contact-item .contact-info a:hover {
  color: #fff;
}

#productDetailsModalImages {
  width: 100%;
}

#productDetailsModalImages .carousel-cell {
  width: 100%;
}

.shopping-cart-wrapper .shopping-cart-toggle {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 4rem;
  height: 4rem;
  background: #d9b957;
  border-radius: 50%;
  box-shadow: rgba(217, 185, 87, 0.1) 0 0.25rem 0.5rem;
  z-index: 8;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  user-select: none;
}
@media (max-width: 767.9px) {
  .shopping-cart-wrapper .shopping-cart-toggle {
    right: 0.75rem;
    bottom: 0.75rem;
  }
}
.shopping-cart-wrapper .shopping-cart-toggle:hover {
  background: rgb(226.4077669903, 202.3300970874, 128.5922330097);
  box-shadow: rgba(217, 185, 87, 0.25) 0 0.5rem 1rem;
}
.shopping-cart-wrapper .shopping-cart-toggle:active {
  box-shadow: rgba(217, 185, 87, 0.4) 0 0.65rem 1.25rem;
}
.shopping-cart-wrapper .shopping-cart-toggle img {
  filter: brightness(0) invert(1);
  width: 2rem;
  height: 2rem;
}
.shopping-cart-wrapper .shopping-cart-toggle span {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1.25rem;
  height: 1.25rem;
  background: red;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  font-size: 0.8rem;
  text-align: center;
  line-height: 1.25rem;
  font-family: sans-serif;
}
.shopping-cart-wrapper .shopping-cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 1, 1, 0.65);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  z-index: 9;
}
.shopping-cart-wrapper .shopping-cart {
  position: fixed;
  top: 0;
  right: 0;
  width: 25rem;
  height: 100%;
  z-index: 10;
  background: #fff;
  transform: translateX(25rem);
  padding: 2.5rem;
  overflow-x: hidden;
}
@media (max-width: 767.9px) {
  .shopping-cart-wrapper .shopping-cart {
    width: 20rem;
    transform: translateX(20rem);
    padding: 1.5rem;
  }
}
.shopping-cart-wrapper .shopping-cart .shopping-cart-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 0.25rem;
  opacity: 0.5;
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  cursor: pointer;
}
@media (max-width: 767.9px) {
  .shopping-cart-wrapper .shopping-cart .shopping-cart-close {
    right: 1.5rem;
    top: 1.5rem;
  }
}
.shopping-cart-wrapper .shopping-cart .shopping-cart-close:hover {
  opacity: 1;
}
.shopping-cart-wrapper .shopping-cart h4 {
  font-weight: bold;
  color: #010101;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(1, 1, 1, 0.1);
}
.shopping-cart-wrapper .shopping-cart .shopping-cart-products {
  padding: 0.5rem 0 0 0;
}
.shopping-cart-wrapper .shopping-cart .shopping-cart-products p {
  font-size: 0.9rem;
  color: rgba(1, 1, 1, 0.5);
}
.shopping-cart-wrapper .shopping-cart .shopping-cart-products .product-item {
  display: block;
  position: relative;
  padding-left: 5rem;
}
.shopping-cart-wrapper .shopping-cart .shopping-cart-products .product-item + .product-item {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(1, 1, 1, 0.1);
}
.shopping-cart-wrapper .shopping-cart .shopping-cart-products .product-item + .product-item img.product-thumb {
  top: 1rem;
}
.shopping-cart-wrapper .shopping-cart .shopping-cart-products .product-item img.product-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 4rem;
  height: 4rem;
  object-fit: contain;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
}
.shopping-cart-wrapper .shopping-cart .shopping-cart-products .product-item .product-order-details {
  display: flex;
}
.shopping-cart-wrapper .shopping-cart .shopping-cart-products .product-item .product-order-details .product-quantity-wrapper strong {
  font-size: 0.8rem;
  color: #010101;
  font-weight: 400;
}
.shopping-cart-wrapper .shopping-cart .shopping-cart-products .product-item .product-order-details .product-quantity-wrapper .product-quantity {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  height: auto;
  line-height: 1.2;
  padding: 0;
  text-align: left;
  border: none;
  outline: none;
  box-shadow: none;
  color: #010101;
  left: 0;
}
.shopping-cart-wrapper .shopping-cart .shopping-cart-products .product-item .product-order-details .product-total-wrapper {
  margin-left: 1rem;
}
.shopping-cart-wrapper .shopping-cart .shopping-cart-products .product-item .product-order-details .product-total-wrapper strong {
  font-size: 0.8rem;
  color: #010101;
  font-weight: 400;
}
.shopping-cart-wrapper .shopping-cart .shopping-cart-products .product-item .product-order-details .product-total-wrapper .product-total {
  font-weight: 600;
  font-size: 0.9rem;
  color: #010101;
}
.shopping-cart-wrapper .shopping-cart .shopping-cart-products .product-item .product-name {
  font-weight: bold;
  color: #010101;
}
.shopping-cart-wrapper .shopping-cart .shopping-cart-products .product-item .product-price {
  font-weight: 600;
  font-size: 0.9rem;
  color: #d9b957;
}
.shopping-cart-wrapper .shopping-cart .shopping-cart-products .product-item .product-delete {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 2rem;
  height: 2rem;
  border: none;
  outline: none;
  box-shadow: none;
  background: rgba(1, 1, 1, 0.1);
  border-radius: 0.5rem;
}
.shopping-cart-wrapper .shopping-cart .shopping-cart-products .product-item .product-delete:hover {
  background: rgba(1, 1, 1, 0.2);
}
.shopping-cart-wrapper .shopping-cart .shopping-cart-products .product-item .product-delete img {
  width: 1rem;
  height: 1rem;
}
.shopping-cart-wrapper .shopping-cart .shopping-cart-actions {
  text-align: center;
}
.shopping-cart-wrapper .shopping-cart .shopping-cart-actions .btn-link {
  margin-top: 1rem;
}
.shopping-cart-wrapper .shopping-cart .shopping-cart-summary {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid #eee;
  padding-top: 1.5rem;
  justify-content: space-between;
}
.shopping-cart-wrapper .shopping-cart .shopping-cart-summary span {
  color: #010101;
}
.shopping-cart-wrapper .shopping-cart .shopping-cart-summary strong {
  font-size: 1.5rem;
  color: #010101;
  font-weight: bold;
}
.shopping-cart-wrapper.active .shopping-cart-overlay {
  opacity: 1;
  visibility: visible;
}
.shopping-cart-wrapper.active .shopping-cart {
  transform: none;
}

.mini-main {
  width: 100%;
  height: 10rem;
  background: url("../img/main-3.jpg") center no-repeat;
  background-size: cover;
}

.shop {
  position: relative;
  padding: 2.5rem 0;
  background: #fafbfc;
}
.shop .shop-sidebar {
  padding-right: 1.5rem;
  border-right: 1px solid #eee;
  position: sticky;
  top: 2.5rem;
}
@media (max-width: 767.9px) {
  .shop .shop-sidebar {
    position: relative;
    top: 0;
    border-right: none;
    padding-right: 0;
  }
}
.shop .shop-sidebar h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: rgba(1, 1, 1, 0.25);
  font-weight: 600;
  padding-left: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 767.9px) {
  .shop .shop-sidebar h4 {
    padding-left: 0;
    margin-bottom: 0;
  }
}
@media (max-width: 767.9px) {
  .shop .shop-sidebar .nav {
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-y: hidden;
    width: calc(100% + 1.5rem);
    margin: 0 -0.75rem;
    padding: 0.75rem;
  }
}
.shop .shop-sidebar .nav .nav-item .nav-link {
  font-weight: 600;
  color: #010101;
  padding: 0.75rem 1rem;
  border-radius: 1.25rem;
  font-size: 1.1rem;
}
@media (max-width: 767.9px) {
  .shop .shop-sidebar .nav .nav-item .nav-link {
    background: rgba(1, 1, 1, 0.05);
    margin-right: 0.5rem;
  }
}
.shop .shop-sidebar .nav .nav-item .nav-link:hover {
  background: rgba(1, 1, 1, 0.05);
}
.shop .shop-sidebar .nav .nav-item .nav-link:active {
  background: rgba(1, 1, 1, 0.1);
}
.shop h3 {
  font-weight: bold;
  color: #010101;
  margin: 0 0 1.5rem 0;
}
.shop .product-item {
  display: block;
  position: relative;
  background: #fff;
  padding: 1.25rem;
  border-radius: 1.25rem;
  border: 3px solid #fff;
  box-shadow: rgba(1, 1, 1, 0.05) 0 0.25rem 0.5rem;
  z-index: 1;
  margin-bottom: 1.5rem;
}
.shop .product-item .product-thumb {
  display: block;
}
.shop .product-item .product-thumb:hover {
  opacity: 0.8;
}
.shop .product-item .product-thumb img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.shop .product-item .product-name {
  font-weight: 600;
  color: #010101;
  font-size: 1.1rem;
  line-height: 1.2;
  margin: 0.5rem 0;
  display: block;
  text-decoration: none;
}
.shop .product-item .product-name:hover {
  text-decoration: underline;
}
.shop .product-item .product-price {
  color: #d9b957;
  font-weight: bold;
}
.shop .product-item .product-label {
  position: absolute;
  top: -0.75rem;
  left: 1rem;
  display: inline-block;
  padding: 0 0.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
  background: #d9b957;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  z-index: 2;
}
.shop .product-item .product-buy {
  height: auto;
  margin-top: 1rem;
  z-index: 2;
}
.shop .product-item .product-buy .btn.btn-primary {
  width: 100%;
  display: block;
  border-radius: 1.25rem;
  padding: 0.5rem 0;
  outline: none;
  box-shadow: none;
  font-size: 0.8rem;
}

.product-breadcrumbs {
  padding: 1rem 0;
  background: #fafbfc;
}
.product-breadcrumbs ul.breadcrumb {
  margin: 0;
}
.product-breadcrumbs ul.breadcrumb .breadcrumb-item {
  color: #010101;
  font-size: 0.9rem;
}
.product-breadcrumbs ul.breadcrumb .breadcrumb-item:before {
  opacity: 0.25;
}
.product-breadcrumbs ul.breadcrumb .breadcrumb-item a {
  color: #010101;
  font-weight: 600;
  text-decoration: none;
}
.product-breadcrumbs ul.breadcrumb .breadcrumb-item a:hover {
  color: #d9b957;
  text-decoration: underline;
}

.modal.product-modal .modal-dialog .modal-content {
  padding: 2.5rem;
  border-radius: 1.25rem;
  position: relative;
}
.modal.product-modal .modal-dialog .modal-content .modal-body {
  position: static;
  padding: 0;
}
.modal.product-modal .btn-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  box-shadow: none;
  outline: none;
}
.modal.product-modal .img-fluid {
  border: 1px solid #eee;
  border-radius: 1.25rem;
}
.modal.product-modal h1.product-name {
  font-weight: bold;
  color: #010101;
  font-size: 2rem;
  margin: 0 0 1rem 0;
}
.modal.product-modal h3.product-price {
  font-weight: bold;
  color: #d9b957;
  margin: 1rem 0;
}

.modal.extras-modal .modal-dialog .modal-content {
  padding: 2.5rem;
  border-radius: 1.25rem;
  position: relative;
}
@media (max-width: 767.9px) {
  .modal.extras-modal .modal-dialog .modal-content {
    padding: 1.5rem;
  }
}
.modal.extras-modal .modal-dialog .modal-content .modal-body {
  position: static;
  padding: 0;
}
.modal.extras-modal .btn-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  box-shadow: none;
  outline: none;
}
.modal.extras-modal .img-fluid {
  border: 1px solid #eee;
  border-radius: 1.25rem;
  display: none;
}
.modal.extras-modal h2.product-name {
  font-weight: bold;
  color: #010101;
  font-size: 1.5rem;
  margin: 0 0 1rem 0;
}
.modal.extras-modal h3.product-price {
  font-weight: bold;
  color: #d9b957;
  font-size: 1.25rem;
  margin: 1rem 0 0 0;
}
.modal.extras-modal .product-sauces {
  width: calc(100% + 5rem);
  margin: 1.5rem -2.5rem;
  padding: 1.5rem 2.5rem;
  background: #fafbfc;
}
@media (max-width: 767.9px) {
  .modal.extras-modal .product-sauces {
    width: calc(100% + 3rem);
    margin: 1rem -1.5rem;
    padding: 1rem 1.5rem;
  }
}
.modal.extras-modal .product-sauces .form-group + .form-group {
  margin-top: 1.5rem;
}
.modal.extras-modal .product-sauces .form-group .form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: #010101;
}
.modal.extras-modal .product-sauces .form-group .form-control {
  padding: 0.75rem;
  height: auto;
  border-radius: 0.5rem;
  border: 1px solid rgba(1, 1, 1, 0.25);
  color: #010101;
}
.modal.extras-modal .product-sauces .form-group .form-control:focus, .modal.extras-modal .product-sauces .form-group .form-control:hover {
  box-shadow: none;
  border-color: #d9b957;
}
.modal.extras-modal .product-sauces .form-group .form-check .form-check-input {
  cursor: pointer;
}
.modal.extras-modal .product-sauces .form-group .form-check .form-check-input:checked {
  background-color: #d9b957;
  border-color: #d9b957;
}
.modal.extras-modal .product-sauces .form-group .form-check .form-check-input:checked:focus {
  box-shadow: rgba(217, 185, 87, 0.15) 0 0 0 0.25rem;
}
.modal.extras-modal .product-sauces .form-group .form-check .form-check-input:not(:checked):focus {
  box-shadow: rgba(217, 185, 87, 0.15) 0 0 0 0.25rem;
  border-color: #d9b957;
}
.modal.extras-modal .product-sauces .form-group .form-check .form-check-label {
  color: #010101;
  font-size: 0.9rem;
  user-select: none;
  cursor: pointer;
}
.modal.extras-modal .product-sauces .form-group .form-check .product-options-units {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  display: none;
}
.modal.extras-modal .product-sauces .form-group .form-check .product-options-units .form-control {
  background: transparent;
  width: 1.5rem;
  font-size: 0.8rem;
  padding: 0;
  text-align: center;
  border: none;
  box-shadow: none;
}
.modal.extras-modal .product-sauces .form-group .form-check .product-options-units .btn {
  width: 0.1rem;
  height: 1.6rem;
  border-radius: 0.5rem;
  border: none;
  background: rgba(1, 1, 1, 0.05);
  display: block;
  flex-shrink: 0;
  position: relative;
  box-shadow: none;
  color: transparent;
}
.modal.extras-modal .product-sauces .form-group .form-check .product-options-units .btn:hover {
  background: rgba(1, 1, 1, 0.1);
}
.modal.extras-modal .product-sauces .form-group .form-check .product-options-units .btn:active {
  background: rgba(1, 1, 1, 0.25);
  transform-origin: center;
  transform: scale(0.95);
}
.modal.extras-modal .product-sauces .form-group .form-check .product-options-units .btn span {
  display: none;
}
.modal.extras-modal .product-sauces .form-group .form-check .product-options-units .btn.product-option-quantity-down:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 20%;
  height: 2px;
  background: #010101;
  content: " ";
  margin: auto;
}
.modal.extras-modal .product-sauces .form-group .form-check .product-options-units .btn.product-option-quantity-up:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 20%;
  height: 2px;
  background: #010101;
  content: " ";
  margin: auto;
}
.modal.extras-modal .product-sauces .form-group .form-check .product-options-units .btn.product-option-quantity-up:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 20%;
  height: 2px;
  background: #010101;
  content: " ";
  transform-origin: center;
  transform: rotate(90deg);
  margin: auto;
}
.modal.extras-modal .product-sauces .form-group.expandable-group:not(.expanded) .expandable-group-body .form-check {
  display: none;
}
.modal.extras-modal .product-sauces .form-group.expandable-group:not(.expanded) .expandable-group-body .form-check:nth-child(1), .modal.extras-modal .product-sauces .form-group.expandable-group:not(.expanded) .expandable-group-body .form-check:nth-child(2), .modal.extras-modal .product-sauces .form-group.expandable-group:not(.expanded) .expandable-group-body .form-check:nth-child(3) {
  display: block;
}
.modal.extras-modal .product-sauces .form-group.expandable-group.expanded .btn.btn-link.btn-expandable-toggle {
  display: none;
}
.modal.extras-modal .product-sauces .form-group.expandable-group .btn.btn-link.btn-expandable-toggle {
  font-size: 0.8rem;
  color: #d9b957;
  font-weight: 600;
}
.modal.extras-modal .product-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal.extras-modal .product-actions .product-quantity {
  display: flex;
  align-items: center;
}
.modal.extras-modal .product-actions .product-quantity .form-control {
  width: 3rem;
  padding: 0;
  text-align: center;
  border: none;
  box-shadow: none;
}
.modal.extras-modal .product-actions .product-quantity .btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  border: none;
  background: rgba(1, 1, 1, 0.05);
  display: block;
  flex-shrink: 0;
  position: relative;
  box-shadow: none;
}
.modal.extras-modal .product-actions .product-quantity .btn:hover {
  background: rgba(1, 1, 1, 0.1);
}
.modal.extras-modal .product-actions .product-quantity .btn:active {
  background: rgba(1, 1, 1, 0.25);
  transform-origin: center;
  transform: scale(0.95);
}
.modal.extras-modal .product-actions .product-quantity .btn span {
  display: none;
}
.modal.extras-modal .product-actions .product-quantity .btn.product-quantity-down:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 40%;
  height: 2px;
  background: #010101;
  content: " ";
  margin: auto;
}
.modal.extras-modal .product-actions .product-quantity .btn.product-quantity-up:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 40%;
  height: 2px;
  background: #010101;
  content: " ";
  margin: auto;
}
.modal.extras-modal .product-actions .product-quantity .btn.product-quantity-up:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 40%;
  height: 2px;
  background: #010101;
  content: " ";
  transform-origin: center;
  transform: rotate(90deg);
  margin: auto;
}
.modal.extras-modal .product-actions .btn.btn-primary {
  flex-grow: 1;
  margin-left: 2.5rem;
  display: block;
  text-align: center;
}

.order-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: calc(100svh - 3.5rem);
}
.order-summary .qr-code {
  display: block;
  width: 15rem;
  height: 15rem;
  background: #eeeeee;
  margin: 1.5rem auto;
  border-radius: 1.25rem;
}
.order-summary h1 {
  font-weight: bold;
  color: #010101;
  font-size: 2.5rem;
  margin: 1.5rem 0 1rem 0;
}
.order-summary h2 {
  color: #d9b957;
  font-size: 1.5rem;
  font-weight: bold;
}
.order-summary p {
  color: #010101;
  font-size: 0.9rem;
}

.save-planet-widget {
  background: #9ae30a;
  color: #fff;
  padding: 1rem 0;
}
.save-planet-widget .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.save-planet-widget img {
  width: 1.5rem;
  height: 1.5rem;
  filter: brightness(0) invert(1);
}
.save-planet-widget strong {
  display: block;
  font-weight: bold;
  margin: 0 0.5rem;
  font-size: 0.9rem;
}
.save-planet-widget span {
  display: block;
  font-size: 0.9rem;
}

.p-row > * {
  display: flex;
  align-items: stretch;
  margin-bottom: 1.5rem;
}
.p-row > * .product-item .product-thumb img {
  aspect-ratio: 4/3;
}
.p-row > * .product-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.p-row > * .product-item .product-buy {
  margin-top: auto;
}

.shop .p-row > * .product-item .product-price {
  margin-bottom: -0.8rem;
}

.products.v2 .product-item .product-name {
  margin-bottom: -0.5rem;
}

.pr-c-pt {
  margin-top: -3rem !important;
}
@media (max-width: 767.9px) {
  .pr-c-pt {
    margin-top: 0 !important;
  }
}

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