/*
  Questo file sovrascrive tutti i colori di Bootstrap 5.
  Includilo dopo il file CSS principale di Bootstrap.
*/
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  /* ==================================== */
  /* Colori principali per testi, sfondi, link */
  /* ==================================== */
  --bs-primary: #0099a9;
  --bs-primary-rgb: 0, 153, 169;
  --bs-primary-hover: #1a6776;
  --bs-secondary: #314d98;
  --bs-secondary-rgb: 49, 77, 152;
  --bs-secondary-hover: #243871;
  --bs-success: #008000;
  --bs-info: #0055a4;
  --bs-warning: #ffb700;
  --bs-danger: #d90000;
  --bs-light: #f8f9fa;
  --bs-dark: #343a40;
  /* ==================================== */
  /* Colori di sfondo */
  /* ==================================== */
  --bs-body-bg: #f5f5f5; /* Nuovo colore di sfondo del corpo della pagina */
  /* ==================================== */
  /* Colori del testo */
  /* ==================================== */
  --bs-body-color: #333333; /* Nuovo colore del testo principale */
  --bs-link-color: #0099a9; /* Nuovo colore dei link */
  --bs-link-hover-color: #222; /* Nuovo colore dei link al passaggio del mouse */
  --bs-link-color-rgb: 0, 153, 169;
}

/* ==================================== */
/* Sovrascrittura dei colori dei pulsanti */
/* ==================================== */
.btn {
  --bs-btn-disabled-bg: #555555;
  --bs-btn-disabled-border-color: #555555;
}

.btn-primary {
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-bg: var(--bs-primary-hover); /* Colore al passaggio del mouse */
  --bs-btn-hover-border-color: var(--bs-primary-hover);
  --bs-btn-active-bg: var(--bs-primary-hover); /* Colore quando premuto */
  --bs-btn-active-border-color: var(--bs-primary-hover);
}

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

/* ==================================== */
/* Sovrascrittura dei colori dei pulsanti outline */
/* ==================================== */
.btn-outline-primary {
  --bs-btn-color: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-bg: var(--bs-primary);
  --bs-btn-hover-border-color: var(--bs-primary);
  --bs-btn-active-bg: var(--bs-primary-hover);
  --bs-btn-active-border-color: var(--bs-primary-hover);
  --bs-btn-active-color: #fff;
  --bs-btn-hover-color: #fff;
}

.btn-outline-secondary {
  --bs-btn-color: var(--bs-dark); /* Impostiamo il testo in nero */
  --bs-btn-border-color: var(--bs-secondary);
  --bs-btn-hover-bg: var(--bs-secondary);
  --bs-btn-hover-border-color: var(--bs-secondary);
  --bs-btn-active-bg: var(--bs-secondary-hover);
  --bs-btn-active-border-color: var(--bs-secondary-hover);
  --bs-btn-active-color: var(--bs-dark);
  --bs-btn-hover-color: var(--bs-dark);
}

a:hover {
  --bs-link-color-rgb: var(--bs-primary-rgb);
}

/* Ripeti per gli altri tipi di pulsanti (success, info, warning, danger, ecc.) */
body {
  font-family: "Rubik", "Inter", sans-serif;
  letter-spacing: 0.5px;
  line-height: 1.5rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Noto Serif", serif;
}

.object-fit-cover {
  object-fit: cover;
}

.aspect-ratio-1-1 {
  aspect-ratio: 1/1;
}

.section-padding {
  padding: 50px 0;
}

.py-50px {
  padding-top: 50px;
  padding-bottom: 50px;
}

.py-100px {
  padding-top: 100px;
  padding-bottom: 100px;
}

.bg-cover {
  background-size: cover;
}

.bg-contain {
  background-size: contain;
}

.bg-position-center {
  background-position: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 992px) {
  .bg-attachment-fixed {
    background-attachment: fixed;
  }
}
.min-h-300px {
  min-height: 300px;
}

.min-h-400px {
  min-height: 400px;
}

.min-h-500px {
  min-height: 500px;
}

@media (min-width: 1600px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xs, .container-xxl {
    max-width: 1440px;
  }
}
@media (min-width: 1920px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xs, .container-xxl {
    max-width: 1600px;
  }
}
.hover-opacity {
  transition: all 0.5s;
}
.hover-opacity:hover {
  opacity: 0.6;
}

.main-menu__tree {
  justify-content: center;
}
.main-menu__tree > li > a {
  padding: 0.5rem 0.8rem;
  font-weight: 500;
  font-size: 14px;
}
.main-menu__tree > li:first-of-type > a {
  padding-left: 0;
}
.main-menu__tree > li:last-of-type > a {
  padding-right: 0;
}

.navbar-brand .logo {
  max-width: 200px;
}
@media screen and (min-width: 1200px) {
  .navbar-brand .logo {
    max-width: 240px;
  }
}

.blockcart .header-block__badge {
  background-color: var(--bs-primary);
  color: var(--bs-white);
  font-size: 0.6rem;
  height: 1.6em;
  line-height: 1.6;
  margin-left: 0;
  min-width: 1.6em;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .blockcart .header-block__badge {
    right: 2px;
  }
}

#search_widget form input {
  background-color: var(--bs-gray-100);
}

@media screen and (min-width: 385px) and (max-width: 768px) {
  .header-bottom {
    margin-top: -40px;
  }
}
.submenu {
  list-style: none;
  padding-left: 0;
  margin-top: 5px;
}
.submenu[data-depth="3"] {
  margin-bottom: 20px;
  opacity: 0.8;
}
.submenu[data-depth="3"] a.dropdown-item {
  padding-left: 20px !important;
}
.submenu li > a.dropdown-item::after {
  display: none;
}
.submenu li a.dropdown-item {
  padding-left: 0 !important;
  font-weight: normal;
}
.submenu li a.dropdown-item:hover {
  color: var(--bs-primary);
  opacity: 1;
}

.swiper {
  overflow: visible !important;
}
.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  color: #eee !important;
  background-color: transparent;
  border: 2px solid #eee;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  transition: all 0.3s ease;
  z-index: 11;
}
.swiper .swiper-button-next {
  right: 10px;
}
.swiper .swiper-button-prev {
  left: 10px;
}
.swiper .swiper-button-next:hover,
.swiper .swiper-button-prev:hover {
  background-color: #eee;
  color: #000 !important;
}
.swiper .swiper-button-next::after,
.swiper .swiper-button-prev::after {
  font-size: 20px;
}
.swiper .swiper-pagination {
  bottom: -20px !important;
}
.swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--bs-primary);
  width: 20px;
  border-radius: 6px;
}

.home-slider .swiper img {
  aspect-ratio: 5/3;
  object-fit: cover;
  object-position: left;
}
@media screen and (min-width: 768px) {
  .home-slider .swiper img {
    object-position: center;
    aspect-ratio: unset;
    max-height: 500px;
    object-fit: contain;
  }
}

#index main, #index section, #index #content-wrapper {
  max-width: 100vw;
  overflow-x: hidden;
}

.product-miniature .product-list-reviews {
  padding: 0;
}
.product-miniature .product-list-reviews .grade-stars.small-stars {
  height: auto;
}
.product-miniature .product-miniature__quickview {
  padding-top: 0;
  padding-bottom: 8px;
  display: flex;
  justify-content: center;
  background-color: transparent;
  /* 
      &::after{
          content: '';
          position: absolute;
          bottom: 1px;
          left: 5%;
          width: 90%;
          height: 1px;
          background-color: var(--bs-gray-200);
      } 
  */
}
.product-miniature .product-miniature__quickview button {
  background-color: var(--bs-gray-200);
  width: auto;
  padding: 4px 8px;
  color: var(--bs-gray-600);
}
.product-miniature .product-miniature__quickview button:hover {
  background-color: var(--bs-primary);
  color: var(--bs-white);
}

.badge {
  /* background-color: #ca4a4d; */
}

.accordion {
  --bs-accordion-bg: transparent;
}

#product .gm_omniprice {
  display: block;
}
#product .attachment {
  margin-top: 20px;
}

@media screen and (max-width: 767.99px) {
  #category .left-block {
    margin-bottom: 0rem;
    padding-bottom: 0rem;
    border: 0;
  }
}

#left-column {
  --left-block-title-color: var(--bs-primary);
  --left-block-link-color: var(--bs-primary);
  --left-block-title-size: 18px;
  --left-block-title-spacing: 1rem;
  --left-block-subtitle-color: #343a40;
  --left-block-subtitle-size: 1rem;
  --left-block-subtitle-spacing: 0.25rem;
  --left-block-border-bottom: 1px solid #e9ecef;
  padding-right: 0px !important;
  margin-bottom: 20px;
}
#left-column .filter-left-column {
  top: 225px;
}
@media screen and (min-width: 768px) {
  #left-column .filter-left-column {
    position: sticky;
  }
}
@media screen and (min-width: 768px) {
  #left-column {
    padding-right: 3rem !important;
    margin-bottom: 0px;
  }
}

.search-filters-link {
  margin-left: 8px;
}

.left-block__title {
  font-family: "Noto Serif", serif;
}

#offcanvas-faceted {
  z-index: 1999;
}
#offcanvas-faceted .offcanvas-body {
  background-color: white;
}

#checkout .tab-pane {
  background-color: white;
  border-radius: 15px;
  padding: 20px;
}
#checkout .shipping__actions {
  margin-top: 20px;
}
#checkout .delivery-option__center {
  font-size: 0.85rem;
}
#checkout .payment__list .payment__option label {
  display: flex !important;
}
#checkout .js-payment-ps_checkout {
  padding-top: 30px;
}

.prestablogExtra {
  display: none;
}

#prestablogfront, #blog_list_1-7 {
  border: none;
  border-radius: 10px;
  margin-bottom: 80px;
}
#prestablogfront time.date::before, #prestablogfront .info_blog::before, #blog_list_1-7 time.date::before, #blog_list_1-7 .info_blog::before {
  display: none;
}

#index #blog_list_1-7 {
  margin-bottom: 0px;
}

#prestablogfont {
  max-width: 992px;
  margin: 0 auto;
}

#content-wrapper {
  padding-bottom: 0;
}
#content-wrapper .page-footer {
  margin-top: 0;
}

.email-subscription .email-subscription__content__inputs input[type=email] {
  color: var(--bs-body-color);
}
.email-subscription .email-subscription__content__inputs input[type=email]::placeholder {
  color: #666;
}

.footer-copyright p {
  color: var(--bs-gray-400);
}
.footer-copyright a {
  color: var(--bs-gray-400);
}
.footer-copyright a:hover {
  color: white;
}

.footer {
  --footer-background-color: #f5f5f5;
  --footer-heading-color: #333333;
  --footer-text-color: var(--bs-body-color);
}

.btn-newsletter-right {
  min-width: 140px;
}
@media screen and (min-width: 1200px) {
  .btn-newsletter-right {
    min-width: 200px;
  }
}

.footer__main .footer__block a:hover {
  color: var(--bs-primary);
}

#accessibility-toggle {
  left: auto !important;
  right: 20px !important;
}

#accessibility-widget {
  right: 25px !important;
  left: auto !important;
}

.grecaptcha-badge {
  bottom: 100px !important;
}

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