:root {
  --turchese: #5bc0c6;
	--turchese-chiaro: #bbe1e4;
	--giallo: #ffeb98;
  --bg: #edf6f7;
	--blu: #324254;
}

html, body {
  scroll-behavior: auto;
}

body {
	overflow-x: hidden;
  position: relative;
  font-family: 'Maven Pro', sans-serif;
	font-variation-settings:
	"wdth" 100,
	"YTLC" 500;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--blu);
  margin: 0;
}

p {
  font-family: 'Maven Pro', sans-serif;
}

*:focus, *:hover {
  outline: none;
  outline-offset: unset;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

a:hover {
  text-decoration: none;
}

a.iubenda-tp-btn.iubenda-cs-preferences-link {
  display: none !important;
}

button.iubenda-tp-btn.iubenda-cs-preferences-link {
  display: none !important;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Maven Pro', sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.1;
  position: relative;
  color: var(--blu);
  margin: 0;
}

body:not(.home) h3, body:not(.home) h4, body:not(.home) h5, body:not(.home) h6 {
	color: var(--blu);
	margin-bottom: 10px;
}

h1 {
  font-size: 34px;
}

h2 {
  font-size: 30px;
}

img {
  max-width: 100%;
  object-fit: cover;
}

.abslink {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
}

.absimg {
  position: absolute;
  pointer-events: none;
}

.button {
	font-family: 'Maven Pro', sans-serif;
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	margin: 0 auto;
  background: var(--giallo);
  border: 2px solid var(--giallo);
	border-radius: 5px;
  padding: 6px 32px;
	text-transform: initial;
  font-size: 20px;
	font-weight: 800;
	letter-spacing: 0px;
	transition: all .3s ease-in-out;
}

.button:hover {
  background: var(--blu);
  color: var(--giallo);
  border-color: var(--blu);
}

.container {
  position: relative;
  width: 1400px;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.flex {
  display: flex;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--turchese-chiaro);
}

::-webkit-scrollbar-thumb {
  background-color: var(--turchese);
  border-radius: 10px;
  border: 1px solid var(--turchese-chiaro);
  transition: background-color .3s ease-in-out;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--blu);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--turchese) var(--turchese-chiaro);
}

.stella-piccola, .cerchio-piccolo-turchese, .cerchio-turchese, .cerchio-piccolo-giallo, .cerchio-giallo {
  position: absolute;
}

.stella-piccola {
  background: url('../img/stella-piccola.svg') no-repeat;
  width: 36px;
  height: 36px;
}

.cerchio-piccolo-turchese {
  background: #c1dee2 no-repeat;
  border-radius: 100px;
  width: 5px;
  height: 5px;
}

.cerchio-turchese {
  background: #c1dee2 no-repeat;
  border-radius: 100px;
  width: 12px;
  height: 12px;
}

.cerchio-piccolo-giallo {
  background: var(--giallo) no-repeat;
  border-radius: 100px;
  width: 5px;
  height: 5px;
}

.cerchio-giallo {
  background: var(--giallo) no-repeat;
  border-radius: 100px;
  width: 12px;
  height: 12px;
}

.main, .main-shop {
  margin: 200px 0 100px;
  position: relative;
}

.custom-cta-button, .custom-price-button {
  width: fit-content;
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--turchese);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  border: 2px solid var(--turchese);
  font-size: 22px;
  text-transform: lowercase;
  font-weight: 800;
  transition: all .4s ease-in-out;
  z-index: 0;
}

.social-list {
  position: fixed;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 8px;
  z-index: 99;
  transition: all .3s ease-in-out;
}

.social-list a {
  position: relative;
  left: 0;
  width: 44px;
  height: 44px;
  background: var(--turchese);
  border-radius: 100px;
  box-shadow: 0px 0px 0px 2px #fff;
  transition: all .3s ease-in-out;
}

.social-list a:hover {
  background: var(--blu);
  left: 10px;
}

.social-list img {
  width: 46px;
  object-fit: contain;
  padding: 10px;
  filter: brightness(10);
}

.social-list > a:nth-child(3) picture > img {
  padding: 6px;
}

/* Inizio Header */

#header {
  position: relative;
}

.topbar {
  display: none;
}

.topbar.show {
  display: block;
}

.topbar {
  background-color: var(--turchese);
  color: #fff;
  padding: 0.75em 1em;
  font-size: 0.95rem;
  position: relative;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.topbar-content {
  margin: 0 auto;
}

.topbar a {
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.topbar-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  margin-left: 1em;
}

.topbar[hidden] {
  display: none !important;
}

.site-header {
  position: relative;
  background-color: var(--turchese-chiaro);
  padding: 20px 0;
  color: #fff;
}

.site-header .stella-bg {
  width: 180px;
  object-fit: contain;
  left: 30%;
  top: 130%;
  transform: rotate(45deg) translateX(-50%);
  transform-origin: center;
  mix-blend-mode: multiply;
  opacity: .6;
  z-index: 0;
}

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

.waves svg {
  height: 130px;
  background-color: var(--turchese-chiaro);
}

.site-header .flex {
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 180px;
}

.logo .logo-first {
  display: none;
}

.shop-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.testo-promo {
  width: 100%;
  position: absolute;
  bottom: -140px;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.testo-promo a {
  color: var(--turchese);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 30px;
}

/* Fine Header */

/* Inizio Nav */

.desktop-nav {
  display: block;
}

.mobile-nav {
  display: none;
}

.hamburger {
  display: none;
}

.site-header .intro-logo, .site-header .shop-tools {
  flex-grow: 1;
  max-width: 320px;
}

.site-header .nav {
  flex-grow: 2;
}

.nav ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.nav .menu {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav .menu li {
  display: flex;
  align-items: center;
  padding: 0 30px;
  font-weight: 700;
  font-size: 22px;
  height: 60px;
  cursor: pointer;
}

.nav .menu li a {
  transition: all .3s ease-in-out;
}

.nav .menu li:hover a {
  color: var(--blu);
}

.nav .menu > li ul {
  position: absolute;
  opacity: 0;
  transition: all .3s ease-in-out
}

.nav .menu > li .mega-menu-dropdown {
  pointer-events: none;
  opacity: 0;
}

.nav .menu .shop-menu .mega-menu-dropdown {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 30px;
  border-radius: 25px;
  background: var(--bg);
  color: var(--blu);
  box-shadow: 0px 10px 20px 0px #32425420;
  transition: all .3s ease-in-out;
  z-index: 21;
}

.nav .menu .shop-menu:hover .mega-menu-dropdown {
  opacity: 1;
  pointer-events: none;
}

.nav .menu > li:hover ul.sub-menu, .nav .menu > li:hover ul.mega-submenu, .nav .menu .shop-menu:hover .mega-menu-dropdown{
  opacity: 1;
  pointer-events: initial;
}

.nav .menu > li ul > li {
  font-weight: 400;
}

.mega-menu-columns {
  display: flex;
  align-items: center;
  gap: 50px;
}

.mega-menu-col-1 {
  width: 20%;
}

.mega-menu-col-2 {
  width: 40%;
}

.mega-menu-col-3 {
  width: 60%;
}

.mega-menu-col-1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}

.mega-menu-col-1 .promo-item {
  position: relative;
  padding: 0;
}

.mega-menu-col-1 .promo-item img {
  width: 160px;
}

.mega-menu-col-1 .promo-item h4 {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  line-height: 1;
  color: var(--blu);
  text-transform: lowercase;
  text-align: center;
  font-weight: 800;
  margin: 24px 0 0 -6px;
  line-height: 0.9;
  z-index: 1;
}

.mega-menu-col-1 .promo-item span {
  display: block;
  font-size: 34px;
}

.nav .menu > li .mega-submenu {
  position: relative;
  opacity: 1;
}

.nav .menu>li .mega-submenu:before {
  content: 'Categorie';
  pointer-events: none;
  font-size: 22px;
}

.nav .menu > li .mega-submenu li {
  padding: 0;
  margin: 10px 0;
  height: initial;
  font-size: 20px;
}

.nav .menu > li .mega-submenu li a {
  transition: all .3s ease-in-out;
}

.nav .menu > li .mega-submenu li:hover a {
  margin-left: 4px;
  color: var(--turchese);
}

.nav .menu li.nav-natale a {
  color: #FF5854;
}

.nav .menu > li .mega-submenu li:first-child {
  margin-top: 20px;
}

.mega-menu-col-3 {
  border-radius: 20px;
}

.mega-menu-col-3 .cta-custom-nav {
  width: fit-content;
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--turchese);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  border: 2px solid var(--turchese);
  font-size: 22px;
  text-transform: lowercase;
  font-weight: 800;
  transition: all .4s ease-in-out;
  z-index: 0;
}

.mega-menu-col-3 .cta-custom-nav span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: var(--giallo);
  transition: width .4s ease-in-out, height .4s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.mega-menu-col-3 .cta-custom-nav:hover {
  color: var(--blu);
  border-color: var(--giallo);
}

.mega-menu-col-3 .cta-custom-nav:hover span {
  width: 400px;
  height: 400px;
}

.mega-menu-col-3 .text-custom-nav p {
  margin: 0;
  font-weight: 400;
}

.text-custom-nav img {
  width: 100%;
  border-radius: 15px;
  height: auto;
}

.nav .menu li:not(.shop-menu) {
  position: relative;
}

.nav .menu li:not(.shop-menu) ul.sub-menu {
  position: absolute;
  top: 60px;
  left: 0;
  width: 300px;
  padding: 30px;
  border-radius: 25px;
  background: var(--bg);
  color: var(--blu);
  box-shadow: 0px 10px 20px 0px #32425420;
  pointer-events: none;
  transition: all .3s ease-in-out;
  opacity: 0;
  z-index: 11;
}

.nav .menu li:not(.shop-menu):hover ul.sub-menu {
  opacity: 1;
  pointer-events: initial;
}

.nav .menu > li ul.sub-menu li:first-child {
  margin-top: 0px;
}

.nav .menu > li ul.sub-menu li:last-child {
  margin-bottom: 0px;
}

.nav .menu li ul.sub-menu li {
  padding: 0;
  margin: 10px 0;
  height: initial;
  font-size: 20px;
}

.nav .menu li ul.sub-menu li a {
  transition: all .3s ease-in-out;
}

.nav .menu li ul.sub-menu li:hover a {
  margin-left: 4px;
  color: var(--turchese);
}

/* Fine Nav */

/* Inizio Cerca */

.search-icon-wrapper {
  position: relative;
  display: inline-block;
}

#search-icon {
  cursor: pointer;
  width: 30px;
}

.fullscreen-search {
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #5bc0c6ee;
  z-index: -100;
  transition: all 0.3s ease-in-out;
}

.search-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 600px;
  text-align: center;
  padding: 0 10px;
}

.search-container input[type="text"] {
  width: 80%;
  padding: 10px;
  font-size: 26px;
  border: none;
  border-radius: 0px;
  border-bottom: 2px solid var(--blu);
  background: transparent;
  color: var(--blu);
}

.search-container input[type="text"]::placeholder {
  color: var(--blu);
}

.search-container button {
  background: none;
  border: none;
  cursor: pointer;
  background-color: transparent !important;
}

.search-container img {
  width: 35px;
  position: relative;
  top: 16px;
}

.close-btn {
  position: absolute;
  top: calc(50% + -80px);
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.risultati {
  padding: 30px 15px;
  border-bottom: 1px solid var(--giallo);
}

.risultati h2 {
  margin-top: 0;
  margin-bottom: 10px;
}

.risultati a {
  color: var(--turchese);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}

.risultati a:hover {
  border-bottom: 1px solid var(--turchese);
}

.risultati-prodotti {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 52px;
  margin: 30px 0 0;
}

.risultati-prodotti .post-item.item {
  position: relative;
}

.prodotto-trovato {
  position: relative;
  text-align: center;
  color: var(--blu);
  padding: 0;
}

.prodotto-trovato img {
  border-radius: 15px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 0 1em;
  box-shadow: none;
}

.prodotto-trovato h2 {
  padding: 0.5em 0;
  font-size: 1em;
  font-weight: 600;
}

.prodotto-trovato .price {
  color: transparent;
  display: flex;
  flex-direction: column-reverse;
}

.prodotto-trovato .price del {
  color: var(--blu);
  opacity: .5;
}

.prodotto-trovato .price ins {
  margin: 10px 0;
}

.prodotto-trovato .lb-wishlist-wrapper {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 1;
}

.prodotto-trovato .lb-wishlist-button {
  border: none;
  background: #fff;
  border-radius: 100px;
}

.prodotto-trovato .lb-wishlist-button img {
  display: block;
  width: 28px;
  height: 38px;
  object-fit: contain;
  margin: 0;
}

.prodotto-trovato .onsale {
  right: initial;
  font-size: 16px;
  position: absolute;
  top: -10px;
  left: -10px;
  margin: -0.5em -0.5em 0 0;
  background: var(--giallo);
  border: 2px solid var(--blu);
  border-radius: 100%;
  height: 80px;
  width: 80px;
  text-transform: uppercase;
  color: var(--blu);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  z-index: 9;
}

.prodotto-trovato img {
  width: 100%;
  height: 350px;
  display: block;
  transition: opacity 0.3s ease;
}

.prodotto-trovato .hover-image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
}

.prodotto-trovato a:has(.hover-image):hover .hover-image {
  opacity: 1;
}

.prodotto-trovato a:has(.hover-image):hover .main-image {
  opacity: 0;
}

/* Fine Cerca */

/* Inizio Preferiti */

button.lb-wishlist-button {
  cursor: pointer;
}

.preferiti-wrapper {
  position: relative;
  bottom: -2px;
}

.preferiti-wrapper img {
  width: 32px;
  cursor: pointer;
}

.preferiti-wrapper .wishlist-count {
  position: absolute;
  top: -26px;
  right: -16px;
  background: #fff;
  border-radius: 100px;
  width: 24px;
  height: 24px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blu);
  font-weight: 700;
  letter-spacing: -1px;
  padding-right: 2px;
}

.woocommerce.single-product div.product div .cuore-preferiti {
  width: 28px;
  height: 38px;
  object-fit: contain;
  /* filter: brightness(10); */
}

.content-preferiti h1 {
  margin-bottom: 50px;
}

.content-preferiti ul.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 52px;
  list-style: none;
  padding-left: 0;
}

.content-preferiti ul.products li {
  position: relative;
  text-align: center;
}

.content-preferiti ul.products li.product a.woocommerce-loop-product__link {
  display: block;
}

.content-preferiti ul.products li.product .button {
  display: none;
}

.content-preferiti .lb-wishlist-wrapper {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 1;
}

.content-preferiti ul.products li.product .lb-wishlist-button {
  border: none;
  background: #fff;
  border-radius: 100px;
}

.content-preferiti ul.products li.product .lb-wishlist-button img {
  display: block;
  margin: 0;
  width: 28px;
  height: 38px;
  object-fit: contain;
}

.content-preferiti ul.products li.product .onsale {
  position: absolute;
  left: -20px;
  top: -10px;
  right: initial;
  background: var(--giallo);
  border: 0px solid var(--blu);
  height: 70px;
  width: 70px;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--blu);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}

.content-preferiti ul.products li.product .woocommerce-placeholder, .content-preferiti ul.products li.product img {
  border: none;
  border-radius: 15px;
  margin: 0 0 1em;
  height: auto;
  display: block;
  width: 100%;
}

.content-preferiti h2 {
  font-size: 22px;
  font-weight: 600;
  padding: 10px 0;
}

.content-preferiti ul.products li.product .price {
  color: transparent;
}

.content-preferiti ul.products li.product .price {
  display: flex;
  flex-direction: column-reverse;
}

.content-preferiti ul.products li.product .price del {
  color: var(--blu);
  opacity: .5;
  display: inline-block;
}

/* .content-preferiti ul.products li.product .price ins {
  margin: 10px 0;
} */

/* Fine Preferiti */

/* Inizio Profilo */

body:not(.logged-in).woocommerce-account .testo-promo {
  display: none;
}

.woocommerce-account .testo-promo {
  display: none;
}

.woocommerce-account #main {
  margin: 100px 0;
}

.woocommerce-account .content-page {
  margin: 100px 0 100px;
}

.profilo-wrapper {
  position: relative;
  bottom: -2px;
  margin-right: 20px;
}

.profilo-wrapper img {
  width: 26px;
  cursor: pointer;
}

.profilo-wrapper .user-name {
  position: relative;
  color: var(--blu);
  top: -8px;
  font-weight: 600;
  font-size: 17px;
}

.woocommerce-info {
  border: none;
  padding: 10px;
  background: transparent;
  text-align: center;
}

.woocommerce-info::before {
  display: none;
}

.woocommerce .woocommerce-error .button, .woocommerce .woocommerce-info .button, .woocommerce .woocommerce-message .button, .woocommerce-page .woocommerce-error .button, .woocommerce-page .woocommerce-info .button, .woocommerce-page .woocommerce-message .button {
  float: none;
  text-align: center;
  margin: 20px auto;
  display: block;
  width: fit-content;
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--turchese);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  border: 2px solid var(--turchese);
  font-size: 22px;
  text-transform: lowercase;
  font-weight: 800;
  transition: all .4s ease-in-out;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:hover {
  background-color: var(--giallo);
  text-decoration: none;
  background-image: none;
  color: var(--blu);
  border-color: var(--giallo);
}

.woocommerce-EditAccountForm.edit-account fieldset {
  margin: 30px 0 20px;
  border-radius: 15px;
  border: 1px solid var(--turchese-chiaro);
}

.woocommerce-Address-title.title h2 {
  font-size: 22px;
  text-transform: initial;
}

.woocommerce-account .addresses .title .edit {
  float: left;
  margin-bottom: 10px;
  text-decoration: underline;
}

#account_display_name_description em {
  font-size: 17px;
}

.woocommerce-MyAccount-navigation ul {
  padding-left: 20px;
}

/* Fine Profilo */

/* Inizio Carrello */

.woocommerce-cart #main {
  margin: 200px 0 100px;
}

.header-cart {
  position: relative;
  bottom: -2px;
}

.header-cart img {
  width: 32px;
  cursor: pointer;
}

.header-cart .cart-count {
  position: absolute;
  top: -25px;
  right: -16px;
  background: var(--giallo);
  border-radius: 100px;
  width: 24px;
  height: 24px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blu);
  font-weight: 700;
  letter-spacing: -1px;
  padding-right: 2px;
}

.wc-block-cart-items img {
  border-radius: 8px;
}

.wp-block-woocommerce-cart-cross-sells-block h2.has-large-font-size {
  font-size: 26px !important;
}

.wp-block-button.wc-block-components-product-button {
  display: none;
}

.wp-block-woocommerce-cart-cross-sells-block .wc-block-components-product-image img {
  border-radius: 8px;
  width: 180px;
}

.wp-block-woocommerce-cart .wp-block-woocommerce-cart-cross-sells-block .cross-sells-product .wc-block-components-product-button__button {
  display: none;
}

.theme-lebodidibu .wp-block-woocommerce-cart .wp-block-woocommerce-cart-cross-sells-block .cross-sells-product div .wc-block-components-product-name {
  font-weight: 600;
}

.wp-block-woocommerce-cart .wp-block-woocommerce-cart-cross-sells-block .cross-sells-product {
  width: 180px;
}

.wc-block-formatted-money-amount.wc-block-components-formatted-money-amount.wc-block-components-product-price__value.wp-block-cart-cross-sells-product__product-price__value {
  background: var(--giallo);
  border: 2px solid var(--giallo);
  color: var(--blu);
  margin: 0 auto;
  width: fit-content;
  position: relative;
  display: block;
  overflow: hidden;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 22px;
  text-transform: lowercase;
  font-weight: 800;
  cursor: pointer;
  transition: all .4s ease-in-out;
  z-index: 0;
}

.wc-block-formatted-money-amount.wc-block-components-formatted-money-amount.wc-block-components-product-price__value.wp-block-cart-cross-sells-product__product-price__value span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: var(--blu);
  transition: width .4s ease-in-out, height .4s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.wc-block-formatted-money-amount.wc-block-components-formatted-money-amount.wc-block-components-product-price__value.wp-block-cart-cross-sells-product__product-price__value:hover {
  background: var(--blu);
  border-color: var(--blu);
  color: var(--giallo);
}

.wc-block-formatted-money-amount.wc-block-components-formatted-money-amount.wc-block-components-product-price__value.wp-block-cart-cross-sells-product__product-price__value:hover span {
  width: 200px;
  height: 200px;
}

/* Inizio Carrello aside */

.cart-aside {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  z-index: 9999;
  transition: right 0.3s ease;
}

.cart-aside.active {
  right: 0;
}

.cart-aside-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-aside.active .cart-aside-overlay {
  opacity: 1;
  visibility: visible;
}

.cart-aside-content {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  color: var(--blu);
  display: flex;
  flex-direction: column;
}

.cart-aside-header {
  padding: 20px 20px 12px 20px;
  border-bottom: 1px solid var(--turchese-chiaro);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-aside-header h3 {
  margin: 0;
  font-size: 20px;
}

.cart-aside-close {
  position: relative;
  top: -4px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
}

.cart-aside-body {
  flex: 1;
  padding: 10px 20px;
  overflow-y: auto;
}

.cart-aside-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  gap: 15px;
}

.cart-aside-item:last-child {
  border-bottom: none;
}

.cart-item-image {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.cart-item-details {
  flex: 1;
}

.cart-item-details h4 {
  margin: 0 0 8px 0;
  font-size: 15px;
  font-weight: 600;
}

.cart-item-price {
  display: block;
  font-weight: 500;
  color: var(--blu);
  margin-bottom: 8px;
  margin-top: -4px;
  font-size: 17px;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-minus,
.qty-plus {
  font-size: 20px;
  border: 1px solid var(--bg);
  background: var(--bg);
  height: 28px;
  min-width: 28px;
  cursor: pointer;
  width: 10px;
  border-radius: 100px;
  transition: .3s all ease-in-out;
}

.qty {
  min-width: 18px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
}

.remove-item {
  background: var(--giallo);
  color: var(--blu);
  border: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-aside-footer {
  padding: 20px;
  background: var(--bg);
}

.cart-aside-total {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: right;
}

.cart-aside-checkout {
  width: 100%;
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--turchese);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  border: 2px solid var(--turchese);
  font-size: 22px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 800;
  transition: all .3s ease-in-out;
  z-index: 0;
}

.cart-aside-checkout:hover {
  color: var(--blu);
  background: var(--giallo);
  border-color: var(--giallo);
}

.cart-aside .loading-stars {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  width: 200px;
  height: 100px;
  z-index: 1;
  margin: 50px auto;
}

.cart-aside .loading-stars .star {
  position: absolute;
  width: 60px;
  height: auto;
  animation: sparkle 1.5s infinite ease-in-out;
  will-change: transform, opacity;
  transition: opacity .3s ease-in-out, transform .3s ease-in-out;
}

.cart-aside .loading-stars .star-yellow {
  left: 20%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 50px;
  animation-delay: 0s;
  animation-direction: normal;
  transition: all .3s ease-in-out;
}

.cart-aside .loading-stars .star-blue {
  left: 65%;
  top: 35%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 70px;
  opacity: .6;
  animation-delay: .3s;
  animation-direction: reverse;
  transition: all .3s ease-in-out;
}

.cart-aside-loading {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
}

.loading-stars {
  text-align: center;
  padding: 40px 20px;
}

.cart-empty {
  text-align: center;
  color: #666;
  font-style: italic;
  margin: 40px 0;
}

/* Fine Carrello aside */

/* Fine Carrello */

/* Inizio Home */

.main-home .flex {
  align-items: center;
  justify-content: space-between;
  gap: 100px;
}

.main-home .testo-main {
  width: 40%;
}

.main-home .testo-main h1 {
  font-weight: 800;
  font-size: 50px;
  width: 500px;
  margin-bottom: 30px;
}

.main-home .img-main {
  position: relative;
  border-radius: 30px;
  width: 800px;
  height: 700px;
  background-position: center;
}

.img-main .stella-bg {
  width: 140px;
  object-fit: contain;
  left: 0%;
  top: 60%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.inner-wave {
  position: absolute;
  bottom: 0;
  overflow: hidden;
  width: 100%;
  height: 40px;
}

.wave-svg {
  width: 200%;
  height: 100%;
  transition: transform 0.5s ease;
  animation: waveScroll 40s linear infinite both;
}

@keyframes waveScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.about-home {
  position: relative;
  margin-bottom: 180px;
}

.about-home .flex {
  position: relative;
  align-items: flex-start;
  justify-content: space-between;
  gap: 100px;
}

.about-home .flex .stella-bg:nth-child(3) {
  width: 410px;
  object-fit: contain;
  left: 0%;
  top: 10%;
  transform: translate(-50%, -50%);
  opacity: .6;
  z-index: -1;
}

.about-home .flex .stella-bg:nth-child(4) {
  width: 160px;
  object-fit: contain;
  left: 10%;
  top: 60%;
  transform: rotate(-25deg) translateX(-50%);
  transform-origin: center;
  z-index: 0;
}

.about-home .testo-about {
  width: 60%;
}

.about-home .img-about {
  width: 40%;
}

.about-home .testo-about h2 {
  font-weight: 800;
  font-size: 50px;
  width: 600px;
  margin-top: 20px;
}

.about-home .testo-about div {
  width: 700px;
}

.about-home img {
  border-radius: 30px;
}

.content-about-2 {
  width: 100%;
  max-width: 800px;
  display: flex;
  align-items: flex-end;
  gap: 20px;
  position: absolute;
  right: 50px;
  bottom: -180px;
}

.content-about-2 > * {
  width: 50%;
}

.content-about-2 p {
  margin: 10px;
}

.promo-home {
  position: relative;
  margin: 180px 0;
  padding-top: 180px;
}

.promo-carousel {
  margin: -40px 0 0;
}

.promo-item {
  position: relative;
  padding: 0 30px;
}

.promo-home h2 {
  font-weight: 800;
  font-size: 50px;
  text-align: center;
}

.promo-home .img-promo {
  position: relative;
  border-radius: 30px;
  height: 500px;
  background-position: center;
}

.promo-home .titolo-promo {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 190px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.promo-home .titolo-promo h3 {
  font-size: 20px;
  line-height: 1;
  color: #fff;
  text-transform: lowercase;
  text-align: center;
  font-weight: 800;
  margin: 24px 0 0 -6px;
  line-height: 0.9;
}

.promo-home .titolo-promo span {
  display: block;
  font-size: 42px;
}

.promo-home .promo-item:nth-child(1) .titolo-promo {
  background: url('../img/stella-turchese.svg') no-repeat center center / 200px;
}

.promo-home .promo-item:nth-child(2) .titolo-promo {
  background: url('../img/stella-turchese-chiaro.svg') no-repeat center center / 200px;
}

.promo-home .promo-item:nth-child(3) .titolo-promo {
  background: url('../img/stella-gialla.svg') no-repeat center center / 200px;
}

.extra-promo-home {
  background: var(--bg);
  position: relative;
  margin-bottom: 180px;
  padding: 100px 0 80px;
}

.extra-promo-home .flex {
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  padding: 0 100px;
}

.extra-promo-home .testo-extra-promo {
  position: relative;
  width: 60%;
  z-index: 0;
}

.extra-promo-home .testo-extra-promo .stella-bg {
  width: 200px;
  object-fit: contain;
  left: 54%;
  top: 0%;
  transform: rotate(-25deg) translate(-50%, -50%);
  transform-origin: center;
  z-index: -1;
}

.extra-promo-home .img-extra-promo {
  position: relative;
  width: 44%;
}

.extra-promo-home .testo-extra-promo h2 {
  font-weight: 800;
  font-size: 110px;
  line-height: 0.9;
  margin: 0 0 40px;
}

.testo-extra-promo div {
  max-width: 400px;
  margin-bottom: 40px;
}

.extra-promo-home img {
  border-radius: 30px;
}

.extra-promo-home .waves {
  position: absolute;
  width: 100%;
  top: unset;
  bottom: -30px;
  left: 0;
}

.extra-promo-home .waves svg {
  background-color: var(--bg);
}

.prodotti-home {
  position: relative;
  margin-bottom: 180px;
  text-align: center;
}

.prodotti-home h2 {
  font-weight: 800;
  font-size: 50px;
  text-align: center;
}

.primo-carosello-prod, .secondo-carosello-prod {
  margin: 60px 0 80px;
}

.prodotti-home .content-single-product img {
  position: relative;
  margin-bottom: 40px;
  border-radius: 15px;
  height: 480px;
  object-fit: cover;
}

.content-single-product .product-title {
  font-weight: 800;
  font-size: 26px;
}

.content-single-product .product-price {
  display: block;
  width: fit-content;
  min-width: 80px;
  margin: 20px auto 0;
  background: var(--giallo);
  border: 2px solid var(--giallo);
  border-radius: 5px;
  padding: 6px 20px;
  text-transform: initial;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0px;
  transition: all .3s ease-in-out;
}

.content-single-product .product-price:hover {
  background: var(--blu);
  color: var(--giallo);
  border-color: var(--blu);
}

.prodotti-home .content-single-product .product-image-wrapper {
  position: relative;
  overflow: initial;
  margin: 20px 30px;
}

.prodotti-home .content-single-product .product-image-wrapper img {
  width: 100%;
  display: block;
  transition: opacity 0.3s ease;
}

.prodotti-home .content-single-product .product-image-wrapper .hover-image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
}

.prodotti-home .content-single-product a:has(.hover-image):hover .hover-image {
  opacity: 1;
}

.prodotti-home .content-single-product a:has(.hover-image):hover .main-image {
  opacity: 0;
}

.custom-price-button {
  background: var(--giallo);
  border: 2px solid var(--giallo);
  color: var(--blu);
  margin: 10px auto;
  padding: 4px 14px;
  font-size: 20px;
}

.custom-cta-button span, .custom-price-button span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: var(--giallo);
  transition: width .4s ease-in-out, height .4s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.custom-price-button span {
  background-color: var(--blu);
}

.custom-cta-button:hover, .custom-price-button:hover {
  color: var(--blu);
  border-color: var(--giallo);
}

.custom-price-button:hover {
  background: var(--blu);
  border-color: var(--blu);
  color: var(--giallo);
}

.custom-cta-button:hover span {
  width: 400px;
  height: 400px;
}

.custom-price-button:hover span {
  width: 200px;
  height: 200px;
}

.arrow {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  border: 2px solid #fff;
  transition: all .3s ease-in-out;
}

.arrow:hover {
  background-color: var(--turchese);
  border: 2px solid var(--turchese);
}

.arrow:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border: solid var(--turchese);
  border-width: 0 3px 3px 0;
  border-radius: 2px;
  padding: 3px;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: all .3s ease-in-out;
}

.arrow:hover:before {
  border-color: #fff;
}

.arrow-sx:before {
  transform: translate(-50%, -50%) rotate(135deg);
  left: 27px;
  transition: all .3s ease-in-out;
}

.arrow-dx:before {
  transform: translate(-50%, -50%) rotate(-45deg);
  left: 20px;
  transition: all .3s ease-in-out;
}

.arrow-sx {
  position: absolute;
  left: -50px;
  top: 45%;
  transform: translateY(-50%);
  transition: all .3s ease-in-out;
}

.arrow-dx {
  position: absolute;
  right: -50px;
  top: 45%;
  transform: translateY(-50%);
  transition: all .3s ease-in-out;
}

.last-promo-home {
  background: var(--bg);
  position: relative;
  margin-bottom: 180px;
  padding: 100px 0 80px;
}

.last-promo-home .flex {
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  padding: 0 100px;
}

.last-promo-home .testo-last-promo {
  position: relative;
  width: 60%;
  z-index: 0;
}

.last-promo-home .testo-last-promo .stella-bg {
  width: 200px;
  object-fit: contain;
  left: 0%;
  top: 10%;
  transform: rotate(-25deg) translate(-50%, -50%);
  transform-origin: center;
  z-index: -1;
}

.last-promo-home .img-last-promo {
  position: relative;
  width: 44%;
}

.last-promo-home .testo-last-promo h2 {
  font-weight: 800;
  font-size: 110px;
  line-height: 0.9;
  margin: 0 0 40px;
}

.testo-last-promo div {
  max-width: 400px;
  margin-bottom: 40px;
}

.last-promo-home img {
  border-radius: 30px;
}

.last-promo-home .waves {
  position: absolute;
  width: 100%;
  top: unset;
  bottom: -30px;
  left: 0;
}

.last-promo-home .waves svg {
  background-color: var(--bg);
}

.img-last-promo .bollino {
  background: var(--turchese);
  border-radius: 100px;
  height: 150px;
  width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -75px;
  top: 50%;
  font-size: 20px;
  color: #fff;
  text-transform: lowercase;
  text-align: center;
  font-weight: 800;
  margin: 24px 0 0 -6px;
  line-height: 0.9;
  transition: all .3s ease-in-out;
}

.img-last-promo a:hover~.bollino {
  background: var(--giallo);
  color: var(--blu);
}

.img-last-promo .bollino span {
  display: block;
  font-size: 42px;
}

.follow-home {
  position: relative;
  margin-bottom: 180px;
  text-align: center;
}

.follow-home .titolo-link {
  font-weight: 800;
  font-size: 50px;
  text-align: center;
  transition: all .3s ease-in-out;
}

.follow-home .titolo-link:hover {
  color: var(--turchese);
}

.elementi-1, .elementi-2, .elementi-3, .elementi-4, .elementi-5, .elementi-6, .elementi-7, .elementi-8, .elementi-9, .elementi-10, .elementi-11, .elementi-12, .elementi-13 {
  position: absolute;
}

.elementi-1 {
  top: 60px;
  left: 160px;
}

.elementi-2 {
  top: 100px;
  left: 560px;
}

.elementi-2 .cerchio-piccolo-turchese {
  left: -70px;
}

.elementi-2 .cerchio-turchese {
  top: -60px;
}

.elementi-2 .cerchio-piccolo-giallo {
  top: -20px;
  left: -20px;
}

.elementi-2 .cerchio-giallo {
  top: 10px;
  left: -5px;
}

.elementi-3 {
  bottom: 150px;
}

.elementi-3 .cerchio-piccolo-giallo {
  left: -20px;
}

.elementi-3 .stella-piccola {
  top: -20px;
  left: 40px;
}

.elementi-3 .cerchio-turchese {
  top: 50px;
}

.elementi-3 > div:nth-child(4) {
  top: 80px;
  left: 60px;
}

.elementi-4 {
  left: 450px;
  bottom: 180px;
}

.elementi-4 .cerchio-piccolo-turchese {
  top: 10px;
  left: -60px;
}

.elementi-4 .cerchio-piccolo-giallo {
  top: -10px;
}

.elementi-4 .cerchio-giallo {
  top: 20px;
  left: 20px;
}

.elementi-5 {
  top: 0;
  right: 200px;
}

.elementi-5 .cerchio-piccolo-giallo {
  left: -50px;
}

.elementi-5 .stella-piccola {
  top: -20px;
  left: 10px;
}

.elementi-5 .cerchio-turchese {
  top: 60px;
  left: -30px;
}

.elementi-5 > div:nth-child(4) {
  top: 80px;
  left: 40px;
}

.elementi-6 {
  bottom: -100px;
  left: 400px;
}

.elementi-6 .cerchio-piccolo-turchese {
  left: -60px;
}

.elementi-6 .cerchio-piccolo-giallo {
  top: -20px;
  left: -10px;
}

.elementi-6 .cerchio-turchese {
  top: -50px;
  left: 10px;
}

.elementi-6 .cerchio-giallo {
  top: 10px;
}

.elementi-7 {
  bottom: 0;
  right: 400px;
}

.elementi-7 .cerchio-piccolo-giallo {
  top: -80px;
  left: -40px;
}

.elementi-7 .cerchio-turchese {
  top: -10px;
  left: -20px;
}

.elementi-7 .stella-piccola {
  top: -90px;
  left: 30px;
}

.elementi-7 > div:nth-child(4) {
  top: 10px;
  left: 60px;
}

.elementi-8 {
  top: 100px;
  left: 440px;
}

.elementi-8 .cerchio-piccolo-turchese {
  left: -30px;
}

.elementi-8 .cerchio-piccolo-giallo {
  top: -20px;
  left: 30px;
}

.elementi-8 .cerchio-giallo {
  top: 10px;
  left: 50px;
}

.elementi-9 {
  bottom: -20px;
  right: 0;
}

.elementi-9 .cerchio-piccolo-turchese {
  left: -100px;
}

.elementi-9 .cerchio-piccolo-giallo {
  top: -20px;
  left: -40px;
}

.elementi-9 .cerchio-turchese {
  top: -60px;
  left: -10px;
}

.elementi-9 > div:nth-child(4) {
  top: 10px;
  left: -20px;
}

.elementi-10 {
  bottom: 100px;
  left: 600px;
}

.elementi-10 .cerchio-piccolo-turchese {
  top: 10px;
  left: -50px;
}

.elementi-10 .cerchio-piccolo-giallo {
  top: -5px;
  left: 5px;
}

.elementi-10 .cerchio-turchese {
  top: -40px;
  left: 30px;
}

.elementi-10 .cerchio-giallo {
  top: 20px;
  left: 20px;
}

.elementi-11 {
  top: 0;
  right: 200px;
}

.elementi-11 .cerchio-piccolo-giallo {
  top: 0px;
  left: -60px;
}

.elementi-11 .stella-piccola {
  top: -20px;
  left: 10px;
}

.elementi-11 .cerchio-turchese {
  top: 50px;
  left: -40px;
}

.elementi-11 > div:nth-child(4) {
  top: 70px;
  left: 40px;
}

.elementi-12 {
  bottom: 0px;
  left: 700px;
}

.elementi-12 .cerchio-piccolo-turchese {
  top: 0px;
  left: -70px;
}

.elementi-12 .cerchio-piccolo-giallo {
  top: -20px;
  left: -10px;
}

.elementi-12 .cerchio-turchese {
  top: -60px;
  left: 20px;
}

.elementi-12 .cerchio-giallo {
  top: 10px;
  left: 10px;
}

.elementi-13 {
  top: -30px;
  right: 200px;
}

.elementi-13 .cerchio-piccolo-giallo {
  top: 0px;
  left: -90px;
}

.elementi-13 .stella-piccola {
  top: -20px;
  left: -10px;
}

.elementi-13 .cerchio-turchese {
  top: 60px;
  left: -70px;
}

.elementi-13 > div:nth-child(4) {
  top: 80px;
  left: 20px;
}

.prodotti-home .product-image-wrapper .lb-wishlist-wrapper {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 2;
}

.prodotti-home .product-image-wrapper .lb-wishlist-button {
  border: none;
  background: #fff;
  border-radius: 100px;
}

.prodotti-home .product-image-wrapper .lb-wishlist-button img {
  display: block;
  width: 28px;
  height: 38px;
  object-fit: contain;
  margin: 0;
}

.prodotti-home .onsale {
  right: initial;
  font-size: 16px;
  position: absolute;
  top: -10px;
  left: -10px;
  margin: -0.5em -0.5em 0 0;
  background: var(--giallo);
  border: 0px solid var(--blu);
  border-radius: 100%;
  height: 70px;
  width: 70px;
  text-transform: uppercase;
  color: var(--blu);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  z-index: 9;
}

/* Fine Home */

/* Inizio Newsletter */



/* Fine Newsletter */

/* Inizio Pagina */

.content-page {
  margin: 200px 0 100px;
}

h1.title.title-page {
  font-weight: 700;
}

.page-policy {
  font-size: 18px;
}

.page-policy ul {
  padding-left: 20px;
}

.page-policy h1.title.title-page {
  margin-bottom: 50px;
}

.page-policy table {
  width: 100%;
  text-align: left;
}

.page-policy tr:nth-child(even) {
  background: var(--bg);
}

.page-policy thead {
  background: var(--blu);
  color: #fff;
}

.page-policy th, .page-policy td {
  font-size: 16px;
  padding: 4px;
}

/* Fine Pagina */

/* Inizio Pagina Chi Siamo */

.page-template-page-azienda .testo-promo {
  display: none;
}

.page-azienda #header, .page-template-page-azienda #header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-azienda {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.horizontal-container {
  display: flex;
  flex-wrap: nowrap;
  width: fit-content;
  height: 100vh;
  overflow: visible;
}

.horizontal-section {
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  padding: 160px 0 80px;
}

.horizontal-section .container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  max-width: 1300px;
}

.horizontal-section h1 {
  font-size: 38px;
  font-weight: 700;
}

.horizontal-section p {
  font-size: 20px;
}

.horizontal-section .content-intro, .horizontal-section .content-progetto {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.horizontal-section .content-intro .text, .horizontal-section .content-progetto .text {
  width: 40%;
}

.horizontal-section .content-intro .media, .horizontal-section .content-progetto .media {
  width: 60%;
  text-align: center;
}

.horizontal-section .media {
  position: relative;
}

.horizontal-section .content-intro .media>img:nth-child(1) {
  position: relative;
  max-width: 400px;
  border-radius: 15px;
}

.horizontal-section .content-intro .media>img:nth-child(2) {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translateX(-50%) rotate(5deg);
  max-width: 300px;
  border-radius: 15px;
  z-index: 1;
}

.horizontal-section .content-progetto .media>img:nth-child(1) {
  position: relative;
  max-width: 400px;
  border-radius: 15px;
}

.horizontal-section .content-progetto .media>img:nth-child(2) {
  position: absolute;
  top: 85%;
  left: 70%;
  transform: translateX(-50%) rotate(-5deg);
  max-width: 300px;
  border-radius: 15px;
  z-index: 1;
}

.horizontal-section .content-progetto .media > img:nth-child(2) {
  position: absolute;
}

.horizontal-section .content-storia, .horizontal-section .content-finale {
  position: relative;
  text-align: center;
  max-width: 60%;
}

.page-template-page-azienda .site-header .stella-bg {
  display: none;
}

.horizontal-container .content-intro .stella-bg {
  top: 220px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  opacity: 0.4;
  z-index: -1;
}

.horizontal-container .content-intro .deco-1 {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.deco-1 .cerchio-turchese {
  left: -40px;
}

.deco-1 .cerchio-giallo {
  top: -50px;
  left: 10px;
}

.deco-1 .cerchio-piccolo-giallo {
  left: 10px;
  top: 0px;
}

.deco-2 {
  position: absolute;
  top: -80px;
  left: -60px;
}

.deco-2 .cerchio-piccolo-giallo {
  left: -50px;
  top: 0px;
}

.deco-2 .stella-piccola {
  top: -20px;
  left: 10px;
}

.deco-2 .cerchio-turchese {
  top: 60px;
  left: -40px;
}

.deco-2 .cerchio-piccolo-giallo:nth-child(4) {
  top: 70px;
  left: 30px;
}

.horizontal-container .content-storia .stella-bg {
  bottom: -80px;
  right: 50px;
  transform: translate(-50%, -50%) rotate(0deg);
  width: 50px;
  opacity: 1;
  z-index: -1;
}

.deco-3 {
  position: absolute;
  bottom: 150px;
  left: 200px;
}

.deco-3 .cerchio-giallo {
  left: -40px;
  top: -10px;
}

.deco-3 .cerchio-piccolo-giallo {
  left: 0px;
  top: 0;
}

.deco-3 .cerchio-turchese {
  bottom: -40px;
}

.deco-4 {
  position: absolute;
  left: calc(50% - 60px);
  transform: translateX(-50%);
}

.cerchio-piccolo-giallo {
  left: -70px;
  top: -40px;
}

.deco-4 .cerchio-turchese {
  top: -20px;
}

.deco-4 .cerchio-piccolo-giallo:nth-child(3) {
  left: 20px;
  top: 50px;
}

.deco-5 {
  position: absolute;
  right: 0;
  bottom: 150px;
}

.deco-5 .cerchio-piccolo-turchese {
  left: -60px;
}

.deco-5 .cerchio-piccolo-giallo {
  top: -20px;
  left: -10px;
}

.deco-5 .cerchio-turchese {
  top: -60px;
}

.deco-5 .cerchio-giallo {
  left: 0px;
}

.horizontal-container .content-finale .stella-bg:nth-child(1) {
  top: -30px;
  left: -100px;
  transform: translate(-50%, -50%) rotate(-25deg);
  width: 180px;
  opacity: 0.4;
  z-index: -1;
}

.horizontal-container .content-finale .stella-bg:nth-child(5) {
  bottom: -160px;
  right: -160px;
  transform: translate(-50%, -50%);
  width: 120px;
  z-index: -1;
}

.horizontal-section .content-intro .media:before {
  content: '';
  position: absolute;
  top: -20px;
  left: 160px;
  background: var(--turchese-chiaro);
  width: 100%;
  height: 100%;
  max-width: 400px;
  border-radius: 15px;
  transform: rotate(-5deg);
}

.horizontal-section .content-intro .media:after {
  content: '';
  position: absolute;
  top: 75%;
  left: 48%;
  max-width: 300px;
  max-height: 390px;
  border-radius: 15px;
  background: var(--giallo);
  width: 100%;
  height: 100%;
  transform: translateX(-50%) rotate(10deg);
  z-index: 0;
}

.horizontal-section .content-progetto .media:before {
  content: '';
  position: absolute;
  top: -5px;
  left: 170px;
  background: var(--turchese-chiaro);
  width: 100%;
  height: 100%;
  max-width: 400px;
  border-radius: 15px;
  transform: rotate(5deg);
}

.horizontal-section .content-progetto .media:after {
  content: '';
  position: absolute;
  top: 84%;
  left: 71%;
  max-width: 300px;
  max-height: 390px;
  border-radius: 15px;
  background: var(--giallo);
  width: 100%;
  height: 100%;
  transform: translateX(-50%) rotate(0deg);
  z-index: 0;
}

.page-template-page-azienda footer, .page-template-page-azienda .social-list {
  display: none;
}

/* Fine Pagina Chi Siamo */

/* Inizio Prodotto */

.single .site-header .stella-bg {
  display: none;
}

.woocommerce-page div.product div.summary:before {
  content: url(https://lebodidibu.it/wp-content/themes/lebodidibu/assets/img/stella-gialla.svg);
  mix-blend-mode: multiply;
  width: 180px;
  object-fit: contain;
  left: 60%;
  top: -10%;
  transform: rotate(45deg) translateX(-50%);
  opacity: 0.4;
  z-index: 0;
  display: inline-block;
  position: absolute;
}

.single-product .article-item h1 {
  float: right;
  width: 48%;
  clear: none;
  font-size: 40px;
  font-weight: 800;
}

.single-product .lb-wishlist-button {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  background: #fff;
  border-radius: 100px;
  padding: 4px 7px 0px;
}

.single-product .related.products, .single-product .related {
  width: 100%;
  display: inline-block;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image--placeholder {
  border: none;
}

.woocommerce div.product div.images img {
  border-radius: 15px;
}

.woocommerce div.product p.price {
  color: var(--blu);
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  margin: 22px 0 0;
  gap: 20px;
}

.woocommerce div.product .entry-summary p.price~.custom-price-button {
  background: none;
  border: none;
  border-radius: 0;
  font-size: 30px;
  color: var(--blu);
  text-decoration: none;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  margin: 10px 0 0;
  padding: 0;
  gap: 20px;
}

.woocommerce div.product .entry-summary p.price~.custom-price-button:hover {
  background: none;
  border: none;
  color: var(--blu);
}

.woocommerce div.product .entry-summary p.price~.custom-price-button span {
  display: none;
}

.woocommerce div.product p.price del {
  font-size: 20px;
}

.woocommerce div.product form.cart {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--turchese-chiaro);
}

.woocommerce div.product.product-type-simple form.cart {
  display: block;
  padding-bottom: 40px;
}

.tempo-spedizione {
  display: inline-block;
  width: fit-content;
}

.single-product #lbpbs-progress-wrapper {
  position: relative;
  width: 44%;
  top: 50px;
  margin-top: 0;
  margin-right: 100px;
}

.single-product .lbpbs-message {
  text-align: left;
}

.woocommerce div.product form.cart .button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  background: var(--giallo);
  border: 2px solid var(--giallo);
  border-radius: 5px;
  padding: 10px 40px;
  text-transform: initial;
  color: var(--blu);
  font-size: 22px;
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: 0px;
  transition: all .3s ease-in-out;
}

.woocommerce div.product form.cart .button:hover {
  background: var(--blu);
  color: var(--giallo);
  border-color: var(--blu);
}

.woocommerce .quantity .qty {
  font-size: 22px;
  border: none;
  width: 50px;
  text-align: center;
}

body.woocommerce div.product form.cart div.quantity {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 6px 60px 0 5px;
  width: 100px;
  place-content: center;
  place-items: center;
}

.single-product input[type="number"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.single-product input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

button.minus, button.plus {
  font-size: 22px;
  border: 1px solid var(--bg);
  background: var(--turchese-chiaro);
  height: 30px;
  min-width: 30px;
  float: left;
  margin: 0;
  cursor: pointer;
  width: 10px;
  border-radius: 100px;
  transition: .3s all ease-in-out;
}

button.minus:hover, button.plus:hover {
  background: var(--turchese);
  color: #fff;
}

.woocommerce .woocommerce-breadcrumb, .woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb a {
  color: var(--turchese);
  text-transform: lowercase;
  font-weight: 600;
  font-size: 20px;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb a:hover {
  color: var(--blu);
}

.woocommerce div.product .product_title {
  font-weight: 800;
  font-size: 36px;
  margin-bottom: 14px;
}

.sku-sotto-titolo {
  text-transform: lowercase;
  margin-bottom: 20px;
}

.woocommerce div.product p.price ins, .woocommerce div.product span.price ins {
  text-decoration: none;
  font-size: 36px;
}

.woocommerce-product-details__short-description p {
  margin: 20px 0 0;
}

.woocommerce span.onsale {
  background: var(--giallo);
  border: 0px solid var(--blu);
  height: 70px;
  width: 70px;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--blu);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  left: -20px;
  top: -10px;
}

.woocommerce-product-gallery__image.flex-active-slide {
  border-radius: 15px;
}

.woocommerce div.product div.images.woocommerce-product-gallery {
  position: relative;
}

.woocommerce div.product div.images .flex-control-thumbs {
  display: flex;
}

.woocommerce div.product div.images .flex-control-thumbs li {
  margin: 0;
  list-style: none;
  width: 100%;
  max-width: 110px;
  padding: 4px;
  margin-top: 6px;
}

.woocommerce div.product div.images .flex-control-thumbs li img {
  max-height: 100px;
  max-width: 100px;
  transition: all .3s ease-in-out;
}

.woocommerce-page div.product div.summary {
  position: relative;
  width: 46%;
}

.woocommerce-page div.product div.images {
  width: 50%;
}

/* .woocommerce-product-gallery__wrapper {
  display: flex;
} */

.flex-viewport {
  min-height: 660px;
}

.woocommerce img.pswp__img, .woocommerce-page img.pswp__img {
  max-width: none;
  border-radius: 15px;
}

.pswp__bg {
  background: #bbe1e4ee;
}

.woocommerce div.product div.images img.wp-post-image {
  height: 660px;
  max-height: 660px;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image a img {
  height: 660px;
}

.product .product-extra-bottom-wrapper {
  clear: both;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 140px 0 100px;
  gap: 100px;
}

.product-extra-bottom-wrapper > .custom-description-section {
  width: 66%;
}

.product-extra-bottom-wrapper > .custom-product-reviews {
  width: 34%;
}

.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
  position: relative;
  text-align: center;
  color: var(--blu);
}

.woocommerce ul.products li.product .lb-wishlist-wrapper {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 1;
}

.woocommerce ul.products li.product .lb-wishlist-button img {
  margin: 0;
}

.woocommerce ul.products li.product .onsale {
  right: initial;
  font-size: 16px;
  top: -10px;
  left: -10px;
}

.single-product .related.products h2, .single-product .related h2 {
  margin-bottom: 40px;
}

.woocommerce ul.products li.product .woocommerce-placeholder, .woocommerce ul.products li.product a img {
  border: none;
  border-radius: 15px;
}

.woocommerce ul.products li.product .woocommerce-loop-category__title, .woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce ul.products li.product h3 {
  font-weight: 600;
}

.woocommerce ul.products li.product .button {
  display: none;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) ul.products li.product .price {
  display: flex;
  flex-direction: column-reverse;
}

/* .woocommerce div.product .related p.price ins, .woocommerce div.product .related span.price ins, .woocommerce.woocommerce.lb-custom-loop ul.products li.product .price ins {
  margin: 10px 0;
} */

.woocommerce div.product .related p.price del, .woocommerce div.product .related span.price del {
  color: var(--blu);
}

.single_add_to_cart_button~.loading {
  position: absolute;
  bottom: 10px;
  left: 230px;
}

.container-banner-prod {
  width: 1100px;
  margin: 100px auto 0;
}

.container-banner-prod .banner-prod-desktop, .container-banner-prod .banner-prod-mobile {
  width: 100%;
  object-fit: contain;
}

.container-banner-prod .banner-prod-mobile {
  display: none;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled[disabled] {
  background-color: var(--giallo);
  color: var(--blu);
  cursor: not-allowed;
  opacity: .5;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled[disabled], .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled[disabled]:hover {
  background: var(--giallo);
  color: var(--blu);
  border-color: var(--giallo)
}

.woocommerce div.product form.cart .button.disabled:hover {
  background: var(--giallo);
  color: var(--blu);
  border-color: var(--giallo);
}

.custom-product-reviews {
  background: var(--bg);
  padding: 20px 30px;
  border-radius: 8px;
}

.custom-product-reviews .woocommerce-noreviews {
  margin: 2px 0 20px;
  font-size: 16px;
}

.custom-product-reviews .comment-reply-title {
  font-weight: 600;
  font-size: 22px;
}

.custom-product-reviews #cancel-comment-reply-link {
  color: var(--turchese);
}

.custom-product-reviews .comment-form {
  margin-top: 10px;
}

.custom-product-reviews .comment-form-rating {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.custom-product-reviews .required {
  margin-left: -6px;
}

.woocommerce .custom-product-reviews .stars a {
  font-size: 22px;
}

.custom-product-reviews .stars span {
  position: relative;
  top: 2px;
}

.woocommerce #review_form #respond textarea {
  border: none;
  border-radius: 8px;
  background: var(--turchese-chiaro);
  padding: 10px;
  font-size: 16px;
  color: var(--blu);
  margin-top: 5px;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond button#submit {
  width: fit-content;
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--turchese);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  border: 2px solid var(--turchese);
  font-size: 22px;
  text-transform: lowercase;
  font-weight: 800;
  cursor: pointer;
  transition: all .4s ease-in-out;
  z-index: 0;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) .custom-product-reviews #respond button#submit:hover {
  color: var(--blu);
  border-color: var(--giallo);
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) .custom-product-reviews #respond button#submit span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: var(--giallo);
  transition: width .4s ease-in-out, height .4s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) .custom-product-reviews #respond button#submit:hover span {
  width: 400px;
  height: 400px;
}

.woocommerce #reviews #comments ol.commentlist {
  padding: 0 20px 0 0;
  max-height: 340px;
  overflow: auto;
  margin: 30px 0;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
  margin: 0;
  padding: 14px 20px;
  border: none;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
  margin-bottom: 10px;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p {
  margin-bottom: 0;
  word-wrap: break-word;
  font-size: 18px;
}

.custom-product-reviews .comment_container {
  border: 1px solid var(--blu);
  border-radius: 8px;
}

.woocommerce #reviews #comments ol.commentlist li img.avatar {
  display: none;
}

.custom-product-reviews .woocommerce-review__author {
  color: var(--blu);
}

.custom-product-reviews span.woocommerce-review__dash {
  display: none;
}

.custom-product-reviews .woocommerce-Reviews-title span {
  font-weight: 800;
}

time.woocommerce-review__published-date {
  font-size: 13px;
}

.woocommerce #reviews #comments ol.commentlist ul.children .comment_container {
  border: 1px solid var(--turchese);
}

.woocommerce .star-rating {
  color: var(--turchese);
}

.woocommerce div.product .woocommerce-product-rating {
  margin-bottom: 0px;
  font-size: 18px;
}

.woocommerce div.product p.price {
  color: var(--blu);
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  margin: 6px 0 0;
  gap: 20px;
}

.woocommerce ul.products li.product .star-rating {
  margin: 5px auto 10px;
}

/* Inizio Variazioni Prodotto */

.swatch-wrapper {
  max-width: 300px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0;
}

.swatch-color, .swatch-image {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  border: 1px solid var(--blu);
  cursor: pointer;
  display: inline-block;
  /* transition: border-color 0.3s, box-shadow 0.3s; */
  transition: all .3s ease-in-out;
}

.swatch-image {
  width: 50px;
  height: 50px;
}

.swatch-image.selected {
  box-shadow: 0px 0px 0px 2px var(--turchese);
  border-color: var(--turchese);
}

.swatch-text {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid var(--blu);
  border-radius: 4px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -1px;
  transition: all .3s ease-in-out;
}

.swatch-text.selected {
  background: var(--blu);
  color: #fff;
}

.postid-226 .variations tr:nth-child(1) .swatch-color {
  width: 50px;
  height: 50px;
}

.swatch-color img, .swatch-image img {
  border-radius: 3px;
}

/* .swatch-color:before, .swatch-image:before {
  content: attr(title);
  font-size: 15px;
  font-weight: 500;
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: all .3s ease-in-out;
} */

.swatch-color:before, .swatch-image:before {
  font-size: 14px;
  font-weight: 500;
  position: absolute;
  bottom: -74px;
  left: 50%;
  transform: translateX(-103%);
}

.woocommerce div.product form.cart .variations:has(.swatch-color.selected) th:before, .woocommerce div.product form.cart .variations:has(.swatch-image.selected) th:before {
  content: attr(title);
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  color: var(--turchese);
  width: 100%;
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: all .3s ease-in-out;
}

/* .swatch-image:before {
  width: 210px;
  max-width: 190px;
  word-wrap: break-word;
} */

.woocommerce div.product form.cart .variations:has(.swatch-color.selected) th:before, .woocommerce div.product form.cart .variations:has(.swatch-color:hover) th:before, .woocommerce div.product form.cart .variations:has(.swatch-image.selected) th:before, .woocommerce div.product form.cart .variations:has(.swatch-image:hover) th:before {
  opacity: 1;
}

/* .swatch-color.selected:before, .swatch-color:hover:before, .swatch-image.selected:before, .swatch-image:hover:before {
  opacity: 1;
} */

.swatch-wrapper:has(span.selected) .swatch-color:not(.selected):hover:before, .swatch-wrapper:has(span.selected) .swatch-image:not(.selected):hover:before {
  opacity: 0;
}

.swatch-color.selected::after, .swatch-image.selected::after {
  content: "✔";
  /* font-family: Arial, "Segoe UI Symbol", "Apple Color Emoji", sans-serif; */
  font-family: Arial, "Segoe UI Symbol", sans-serif;
  color: var(--turchese);
  font-size: 22px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: all .3s ease-in-out;
}

.hidden-swatch-select {
  position: absolute !important;
  width: 1px !important;
  min-width: 0 !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
}

.woocommerce div.product form.cart .variations label {
  font-size: 17px;
  font-weight: 600;
}

.woocommerce div.product form.cart .variations tr {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.woocommerce div.product form.cart .custom-message-field {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 10px 0 40px;
}

/* .woocommerce div.product form.cart .variations tr:last-child {
  margin-bottom: 0;
} */

.woocommerce div.product form.cart .variations td, .woocommerce div.product form.cart .variations th {
  position: relative;
  line-height: 1;
}

.woocommerce div.product form.cart .variations th {
  width: auto;
  text-align: left;
}

.woocommerce div.product form.cart label {
  line-height: 1;
  font-size: 17px;
  font-weight: 600;
}

.woocommerce div.product form.cart .variations {
  margin-bottom: 0;
}

.woocommerce div.product form.cart .reset_variations {
  display: none !important;
}

.custom-message-inserted label {
  font-size: 17px;
  font-weight: 600;
}

.woocommerce div.product form.cart .custom-message-field input, .custom-message-inserted input {
  width: 290px;
  height: 40px;
  border-radius: 4px;
  border: none;
  border: 1px solid var(--blu);
  padding: 4px 8px;
  font-size: 16px;
}

/* Fine Variazioni Prodotto */

/* Fine Prodotto */

/* Inizio Shop e Tassonomie */

.shop-button-filtri {
  display: none;
}

.sidebar-close {
  display: none;
}

.tax-product_cat .content-page {
  margin: 0;
}

.woocommerce.lb-custom-loop ul.products li.product .lb-wishlist-button img {
  width: 28px;
  height: 38px;
  object-fit: contain;
}

.woocommerce.lb-custom-loop ul.products li.product .lb-wishlist-button {
  border: none;
  background: #fff;
  border-radius: 100px;
}

.woocommerce.lb-custom-loop ul.products li.product .price del {
  color: var(--blu);
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)).lb-custom-loop ul.products li.product .price {
  color: transparent;
}

.woocommerce-shop .main-shop {
  margin: 10px 0;
}

/* .woocommerce-shop h1.title.title-page {
  padding: 0 15px;
} */

.woocommerce .main-shop .products ul, .woocommerce .main-shop ul.products {
  padding: 40px 0 0;
}

h1.woocommerce-products-header__title.page-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.loop-products > .container {
  display: flex;
  gap: 60px;
}

.loop-products > .container .shop-sidebar {
  width: 22%;
  margin: 200px 0 100px;
  order: 1;
}

.loop-products > .container .content-page {
  position: relative;
  width: 78%;
  order: 2;
  flex: 1;
}

.loop-products .main-shop {
  margin: 0;
}

.widget-title ~ * {
  margin-bottom: 50px;
}

.widget-title ~ .woocommerce-widget-layered-nav-list {
  margin-bottom: 50px;
}

.widget-title {
  font-size: 24px;
  margin: 0;
}

.sidebar .woocommerce-widget-layered-nav-list li {
  font-size: 17px;
  line-height: 1.6;
}

.sidebar .woocommerce-widget-layered-nav-list li .count {
  font-size: 14px;
}

.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item--chosen a::before {
  color: var(--blu);
  font-size: 16px;
}

.sidebar ul {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
}

.sidebar ul li {
  font-size: 17px;
  line-height: 1.6;
}

.sidebar a {
  transition: all .3s ease-in-out;
}

.sidebar a:hover {
  margin-left: 4px;
}

.price-filter-clear {
  color: var(--turchese);
}

.price-filter-clear span {
  background: var(--blu);
  color: #fff;
  border-radius: 100px;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 900;
  padding: 1px;
  height: 16px;
  width: 16px;
  position: relative;
  top: -1px;
  display: inline-block;
  text-align: center;
  margin-right: 6px;
}

/* body:not(.woocommerce-shop) .content-page {
  margin: 0;
} */

body:not(.woocommerce-shop) .loop-products > .container .shop-sidebar {
  margin: 0;
}

.loop-products .woocommerce-ordering select {
  border: 1px solid var(--turchese-chiaro);
  background: var(--turchese-chiaro);
  border-radius: 8px;
  color: var(--blu);
  padding: 4px;
}

.woocommerce .blockUI.blockOverlay::before, .woocommerce .blockUI.blockMsg::before, .blockUI.blockOverlay::before, .blockUI.blockMsg::before {
  content: none !important;
  display: none !important;
}

.loading-stars {
  position: fixed;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 100px;
  z-index: 10;
}

.loading-stars .star {
  position: absolute;
  width: 60px;
  height: auto;
  animation: sparkle 1.5s infinite ease-in-out;
  will-change: transform, opacity;
  transition: opacity .3s ease-in-out, transform .3s ease-in-out;
}

.loading-stars .star-yellow {
  left: 20%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 50px;
  animation-delay: 0s;
  animation-direction: normal;
  transition: all .3s ease-in-out;
}

.loading-stars .star-blue {
  left: 65%;
  top: 35%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 70px;
  opacity: .6;
  animation-delay: .3s;
  animation-direction: reverse;
  transition: all .3s ease-in-out;
}

@keyframes sparkle {
  0%, 100% {
    opacity: .6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.woocommerce nav.woocommerce-pagination ul {
  border: none;
  background: none;
  color: var(--blu);
}

.woocommerce .woocommerce-pagination ul.page-numbers li,
.woocommerce-page .woocommerce-pagination ul.page-numbers li {
  background: var(--bg);
  border-radius: 8px;
  margin: 0 6px;
  border: none;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--turchese-chiaro);
  color: var(--blu);
  padding: 6px 10px;
}

.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
  padding: 6px 10px;
}

.woocommerce nav.woocommerce-pagination ul li:has(a.next.page-numbers) {
  background: none;
}

.woocommerce nav.woocommerce-pagination ul li a:hover {
  background: var(--turchese-chiaro);
  color: var(--blu);
}

/* Fine Shop e Tassonomie */

/* Inizio pagina Carrello */

.wc-block-components-sidebar.wc-block-cart__sidebar.wp-block-woocommerce-cart-totals-block {
  padding-top: 100px;
}

body:not(.woocommerce-block-theme-has-button-styles).woocommerce-cart .wc-block-components-button:not(.is-link) {
  width: fit-content;
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--turchese);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  border: 2px solid var(--turchese);
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 800;
  margin: 20px auto 0;
  min-height: initial !important;
  transition: all .3s ease-in-out;
}

body:not(.woocommerce-block-theme-has-button-styles).woocommerce-cart .wc-block-components-totals-coupon__form .wc-block-components-button.wc-block-components-totals-coupon__button {
  margin: 0;
  height: 50px;
}

.wc-block-components-totals-coupon__form .wc-block-components-text-input input[type=text] {
  height: 50px;
  padding: 6px;
  line-height: 1;
  border-radius: 8px;
}

.wc-block-components-totals-coupon__form .wc-block-components-text-input label {
  font-size: 18px;
  top: 50%;
}

/* Fine pagina Carrello */

/* Inizio pagina Pagamento */

.woocommerce-checkout #main {
  margin: 200px 0 100px;
}

body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link) {
  width: fit-content;
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--turchese);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  border: 2px solid var(--turchese);
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 800;
  min-height: initial !important;
  transition: all .3s ease-in-out;
}

body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link):hover {
  color: var(--blu);
  background: var(--giallo);
  border-color: var(--giallo);
}

.wc-block-checkout__terms.wc-block-checkout__terms--with-separator.wp-block-woocommerce-checkout-terms-block {
  display: none;
}

/* Fine pagina Pagamento */

/* Inizio pagina Ordine completato */

.content-center {
  text-align: center;
}

.content-center h1.title.title-page {
  margin-bottom: 20px;
}

.torna-shop {
  width: fit-content;
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--turchese);
  color: #fff;
  margin: 30px auto 0;
  padding: 10px 20px;
  border-radius: 8px;
  border: 2px solid var(--turchese);
  font-size: 22px;
  text-transform: lowercase;
  font-weight: 800;
  transition: all .4s ease-in-out;
  z-index: 0;
}

.torna-shop span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: var(--giallo);
  transition: width .4s ease-in-out, height .4s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.torna-shop:hover {
  color: var(--blu);
  border-color: var(--giallo);
}

.torna-shop:hover span {
  width: 400px;
  height: 400px;
}

/* Fine pagina Ordine completato */

/* Inizio FAQ */

.page-faq .content-faq {
  margin-top: 80px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.page-faq .faq-category-title {
  margin-bottom: 20px;
}

.page-faq .faq-item {
  margin-bottom: 15px;
}

.page-faq .faq-question {
  position: relative;
  display: block;
  width: 100%;
  padding: 18px 10px 18px 40px;
  font-size: 18px;
  text-align: left;
  background: var(--bg);
  color: var(--blu);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.page-faq .faq-question.active {
  background: var(--turchese);
  color: #fff;
}

.page-faq .faq-question:hover {
  background: var(--turchese-chiaro);
}

.page-faq .faq-question.active:hover {
  background: var(--turchese);
}

.page-faq .faq-question::before {
  content: '+';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
}

.page-faq .faq-question[aria-expanded="true"]::before {
  content: '-';
  transform: translateY(-50%) rotate(0deg);
}

.page-faq .faq-answer {
  overflow: hidden;
  height: 0;
  transition: all .3s ease-in-out;
  padding: 0 14px;
  border-bottom: 2px solid var(--turchese);
  margin-top: -1px;
  border-radius: 8px;
  font-size: 18px;
}

/* Fine FAQ */

/* Inizio Contatti */

body:not(.logged-in).woocommerce-account .title-page {
  display: none;
}

.page-contatti {
  margin: 200px 0 100px;
}

.page-contatti .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 100px;
}

.page-contatti .content-page {
  margin: 0;
  width: 50%;
}

.page-contatti .form {
  width: 50%;
}

/* Fine Contatti */

/* Inizio Login e Registrazione */

.woocommerce-account #customer_login {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 120px;
  text-align: center;
}

.woocommerce-account h2 {
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}

.woocommerce-account #customer_login > div {
  max-width: 500px;
}

.woocommerce-account .woocommerce form.login, .woocommerce-account .woocommerce form.register {
  position: relative;
  margin: 10px 0 20px;
  border-radius: 15px;
  border: 2px solid var(--turchese-chiaro);
  height: 490px;
  max-width: 500px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  transition: all .3s ease-in-out;
}

.woocommerce-account .woocommerce form.checkout_coupon:hover, .woocommerce-account .woocommerce form.login:hover, .woocommerce-account .woocommerce form.register:hover {
  border-color: var(--turchese);
}

.woocommerce-account .woocommerce form .form-row .input-text, .woocommerce-account .woocommerce form .form-row select {
  border: 1px solid var(--turchese);
  height: 40px;
  font-size: 20px;
  padding: 6px;
  width: 300px;
  max-width: 100%;
  border-radius: 8px;
}

.woocommerce-account .woocommerce form .form-row .required {
  display: none;
}

.woocommerce-account button.woocommerce-button.button.woocommerce-form-login__submit, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button {
  width: fit-content;
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--turchese);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  border: 2px solid var(--turchese);
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 800;
  margin: 0 auto;
  transition: all .3s ease-in-out;
}

:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button {
  margin-top: -10px;
}

.woocommerce-account button.woocommerce-button.button.woocommerce-form-login__submit:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:hover {
  color: var(--blu);
  background: var(--giallo);
  border-color: var(--giallo);
}

.woocommerce-account .login .form-row:nth-child(3) {
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  margin-bottom: 0;
}

.woocommerce-account .woocommerce-LostPassword.lost_password {
  position: absolute;
  bottom: -50px;
  text-decoration: underline;
  font-size: 16px;
  margin: 0;
}

/* Fine Login e Registrazione */

/* Inizio Sidebar */



/* Fine Sidebar */

/* Inizio Footer */

footer {
  border-top: 1px solid var(--turchese);
  color: var(--blu);
  padding: 60px 0 0;
}

footer > div {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.widget-footer > .container > div {
  width: 33.3%;
  margin-bottom: 50px;
}

.title-widget {
  font-weight: 600;
  font-size: 26px;
}

.widget-footer ul {
  list-style: none;
  padding-left: 0;
}

.widget-footer ul li a {
  font-size: 17px;
  transition: all .3s ease-in-out;
}

.widget-footer ul li a:hover {
  margin-left: 4px;
  color: var(--turchese);
}

.widget-footer p {
  font-size: 17px;
  line-height: 1.7;
}

.widget-footer p a {
  transition: all .3s ease-in-out;
}

.widget-footer p a:hover {
  margin-left: 4px;
  color: var(--turchese);
}

.copyright {
  background: var(--turchese);
  padding: 8px 0;
  color: #fff;
  font-size: 14px;
}

.copyright .flex {
  align-items: flex-start;
  justify-content: space-between;
}

.copyright .copy-policy {
  text-align: right;
}

a.wa-widget-button {
  position: fixed;
  right: 15px;
  bottom: 20px;
  background: #3fd83a;
  z-index: 7;
  width: 50px;
  height: 50px;
  padding: 4px 4px 4px 4px;
  border-radius: 50%;
  box-shadow: 0 2px 14px -3px #000000a3;
  transition: all 300ms ease-out;
}

svg.wa-messenger-svg-whatsapp.wa-svg-icon * {
  fill: #FFF;
}

/* Fine Footer */

@media (max-width: 1400px) {

  .site-header .flex {
    padding-left: 20px;
    padding-right: 20px;
  }

  .testo-promo a {
    font-size: 28px;
  }

  .primo-carosello-prod, .secondo-carosello-prod {
    width: calc(100% - 100px);
    margin: 60px auto 80px;
  }

  .promo-home {
    position: relative;
    margin: 180px 0;
    padding-top: 180px;
    padding: 180px 15px 0;
  }

  .woocommerce span.onsale {
    left: -10px;
  }

}

@media (max-width: 1200px) {

  .testo-promo a {
    font-size: 26px;
  }

  .main-home .testo-main h1 {
    font-size: 48px;
  }

  .main-home .img-main {
    height: 600px;
  }

  .prodotti-home h2 {
    font-size: 48px;
  }

  .prodotti-home .content-single-product .product-image-wrapper {
    margin: 20px;
  }

  .prodotti-home .content-single-product img {
    height: 400px;
  }

  .about-home .testo-about h2 {
    font-size: 48px;
    width: 560px;
  }

  .about-home .testo-about div {
    width: 500px;
  }

  .about-home .img-about {
    width: 30%;
  }

  .content-about-2 {
    max-width: 600px;
    right: 50px;
  }

  .elementi-6 {
    left: 440px;
  }

  .elementi-7 {
    right: 300px;
  }

  .promo-home h2 {
    font-size: 48px;
  }

  .promo-home .img-promo {
    height: 400px;
  }

  .extra-promo-home .testo-extra-promo h2 {
    font-size: 90px;
  }

  .last-promo-home .testo-last-promo h2 {
    font-size: 90px;
  }

  .follow-home .titolo-link {
    font-size: 48px;
  }

  .woocommerce .woocommerce-breadcrumb, .woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb a {
    font-size: 18px;
  }

  .woocommerce ul.products li.product .onsale {
    font-size: 15px;
    height: 64px;
    width: 64px;
  }

  .custom-price-button {
    font-size: 18px;
  }

  .woocommerce ul.products li.product .lb-wishlist-wrapper {
    right: 8px;
    top: 8px;
  }

  .woocommerce.lb-custom-loop ul.products li.product .lb-wishlist-button img {
    width: 20px;
    height: 30px;
  }

  .woocommerce ul.products li.product .star-rating {
    font-size: 14px;
  }

  .woocommerce ul.products li.product .woocommerce-placeholder, .woocommerce ul.products li.product a img {
    margin: 0px 0 14px;
  }

  .woocommerce span.onsale {
    font-size: 17px;
  }

  .woocommerce-page div.product div.summary {
    width: 48%;
  }

  .woocommerce div.product .product_title {
    font-size: 34px;
    margin-bottom: 10px;
  }

  .woocommerce div.product .woocommerce-product-rating {
    font-size: 16px;
  }

  .woocommerce div.product p.price ins, .woocommerce div.product span.price ins {
    font-size: 32px;
  }

  .woocommerce-product-details__short-description p {
    margin: 14px 0 0;
    font-size: 18px;
  }

  .woocommerce div.product form.cart .variations label {
    font-size: 16px;
  }

  .woocommerce div.product form.cart .variations tr {
    gap: 12px;
    margin-bottom: 14px;
  }

  .custom-message-inserted input {
    width: 280px;
    height: 38px;
  }

  .woocommerce div.product form.cart {
    gap: 16px;
  }

  .woocommerce .quantity .qty {
    font-size: 20px;
  }

  .woocommerce div.product form.cart .button {
    font-size: 20px;
  }

  .lbpbs-message {
    font-size: 16px;
  }

  .tempo-spedizione {
    font-size: 18px;
  }
  
  .product .product-extra-bottom-wrapper {
    padding: 100px 0 100px;
  }

  .product-extra-bottom-wrapper > .custom-description-section {
    width: 60%;
  }

  .product-extra-bottom-wrapper > .custom-product-reviews {
    width: 40%;
  }

  .product .product-extra-bottom-wrapper h2 {
    font-size: 26px;
  }

  .single-product .related.products h2, .single-product .related h2 {
    margin-bottom: 20px;
    font-size: 28px;
  }

  .main, .main-shop {
    margin: 200px 0 80px;
  }

  h1.title.title-page {
    font-size: 32px;
  }

  .page-faq .faq-category-title {
    font-size: 28px;
  }

  #lbpbs-progress-wrapper {
    max-width: 370px;
  }

  body .wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
    font-size: 24px;
  }
  
  body .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    font-size: 24px;
  }

  body:not(.woocommerce-block-theme-has-button-styles).woocommerce-cart .wc-block-components-button:not(.is-link) {
    font-size: 20px;
  }

  .wp-block-woocommerce-cart-cross-sells-block .wc-block-components-product-image img {
    width: 160px;
  }

  .wc-block-formatted-money-amount.wc-block-components-formatted-money-amount.wc-block-components-product-price__value.wp-block-cart-cross-sells-product__product-price__value {
    padding: 6px 16px;
    font-size: 18px;
  }

  .wc-block-components-order-summary .wc-block-components-order-summary-item__description .wc-block-components-product-metadata, .wc-block-components-order-summary .wc-block-components-order-summary-item__description p {
    font-size: 16px;
  }

  .horizontal-section {
    padding: 180px 0 80px;
  }

  .horizontal-section h1 {
    font-size: 36px;
  }

  .horizontal-section p {
    font-size: 18px;
  }

  .horizontal-section .content-intro, .horizontal-section .content-progetto {
    gap: 0px;
  }

  .horizontal-section .content-intro .media>img:nth-child(1) {
    max-width: 340px;
  }

  .horizontal-section .content-intro .media:before {
    max-width: 340px;
  }

  .horizontal-section .content-intro .media>img:nth-child(2) {
    max-width: 240px;
  }

  .horizontal-section .content-intro .media:after {
    max-width: 240px;
  }

  .horizontal-section .content-progetto .media>img:nth-child(1) {
    max-width: 340px;
  }

  .horizontal-section .content-progetto .media:before {
    max-width: 340px;
  }

  .horizontal-section .content-progetto .media>img:nth-child(2) {
    max-width: 240px;
  }

  .horizontal-section .content-progetto .media:after {
    max-width: 240px;
  }

  .horizontal-container .content-intro .stella-bg {
    width: 240px;
  }

}

@media (max-width: 992px) {

  .social-list img {
    width: 42px;
  }

  .social-list a {
    width: 40px;
    height: 40px;
  }

  .logo img {
    width: 170px;
  }

  .nav .menu li {
    font-size: 20px;
  }

  .mega-menu-columns {
    gap: 40px;
  }

  .nav .menu .shop-menu .mega-menu-dropdown {
    padding: 20px;
    width: calc(100% + 50px);
  }

  .nav .menu > li .mega-submenu li {
    font-size: 18px;
    margin: 8px 0;
  }

  .nav .menu > li .mega-submenu:before {
    font-size: 20px;
  }

  .nav .menu li:not(.shop-menu) ul.sub-menu {
    width: 260px;
    padding: 20px;
  }

  .nav .menu li ul.sub-menu li {
    margin: 8px 0;
    font-size: 18px;
  }

  .shop-tools {
    gap: 22px;
  }

  #search-icon {
    width: 26px;
  }

  .preferiti-wrapper img {
    width: 30px;
  }

  .preferiti-wrapper .wishlist-count {
    width: 22px;
    height: 22px;
    font-size: 15px;
    font-weight: 500;
  }

  .profilo-wrapper img {
    width: 24px;
  }

  .header-cart img {
    width: 30px;
  }

  .header-cart .cart-count {
    width: 22px;
    height: 22px;
    font-size: 15px;
    font-weight: 500;
  }

  .testo-promo {
    bottom: -100px;
  }

  .testo-promo a {
    font-size: 22px;
  }

  .main-home .testo-main h1 {
    font-size: 44px;
    width: 440px;
  }

  .custom-cta-button, .custom-price-button {
    padding: 8px 18px;
    font-size: 20px;
  }

  .main-home .img-main {
    height: 500px;
  }

  .elementi-3 {
    bottom: 100px;
  }

  .elementi-4 {
    left: 380px;
    bottom: 60px;
  }

  .img-main .stella-bg {
    width: 120px;
    top: 60%;
  }

  .prodotti-home h2 {
    font-size: 44px;
  }

  .prodotti-home .content-single-product .product-image-wrapper {
    margin: 15px;
  }

  .prodotti-home .content-single-product img {
    height: 300px;
  }

  .arrow {
    width: 40px;
    height: 40px;
  }

  .arrow:before {
    padding: 2px;
  }

  .arrow-dx:before {
    left: 15px;
  }

  .arrow-sx:before {
    left: 22px;
  }

  .prodotti-home .content-single-product img {
    margin-bottom: 20px;
  }

  .prodotti-home .product-image-wrapper .lb-wishlist-wrapper {
    right: 8px;
    top: 8px;
  }

  .single-product .lb-wishlist-button {
    padding: 2px 5px 0px;
  }

  .prodotti-home .product-image-wrapper .lb-wishlist-button img {
    width: 26px;
    height: 36px;
  }

  .content-single-product .product-title {
    font-size: 24px;
  }

  .content-single-product .product-price {
    margin: 18px auto 0;
    padding: 4px 18px;
    font-size: 18px;
  }

  .about-home .testo-about h2 {
    font-size: 44px;
    width: 560px;
  }

  .about-home .flex .stella-bg:nth-child(3) {
    width: 300px;
  }

  .about-home .flex .stella-bg:nth-child(4) {
    width: 140px;
    top: 80%;
  }

  .content-about-2 {
    max-width: 500px;
    right: 10px;
    gap: 10px;
  }

  .about-home .testo-about h2 {
    font-size: 42px;
    width: 500px;
  }

  .about-home .testo-about div {
    width: 400px;
    font-size: 18px;
  }

  .content-about-2 p {
    font-size: 18px;
  }

  .promo-home {
    margin: 160px 0;
    padding: 160px 15px 0;
  }

  .promo-home h2 {
    font-size: 40px;
  }

  .promo-home .img-promo {
    height: 340px;
    background-size: cover;
    background-position: 0px 0px;
  }

  .promo-home .titolo-promo h3 {
    font-size: 18px;
  }

  .promo-home .titolo-promo span {
    font-size: 38px;
  }

  .promo-home .promo-item:nth-child(2) .titolo-promo, .promo-home .promo-item:nth-child(1) .titolo-promo, .promo-home .promo-item:nth-child(3) .titolo-promo {
    background-size: 180px;
  }

  .extra-promo-home .testo-extra-promo h2 {
    font-size: 80px;
  }

  .extra-promo-home .flex {
    gap: 60px;
  }

  .prodotti-home {
    margin-bottom: 160px;
  }

  .last-promo-home .testo-last-promo .stella-bg {
    width: 180px;
  }

  .last-promo-home .testo-last-promo h2 {
    font-size: 80px;
  }

  .last-promo-home .flex {
    gap: 60px;
  }

  .img-last-promo .bollino {
    height: 130px;
    width: 130px;
    font-size: 18px;
  }

  .img-last-promo .bollino span {
    font-size: 38px;
  }

  .follow-home .titolo-link {
    font-size: 40px;
  }

  .follow-home {
    font-size: 18px;
    margin-bottom: 160px;
  }

  .elementi-13 {
    top: -50px;
    right: 100px;
  }

  .woocommerce ul.products li.product .woocommerce-placeholder, .woocommerce ul.products li.product a img {
    margin: 0px 0 8px;
  }

  .woocommerce ul.products li.product .woocommerce-loop-category__title, .woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce ul.products li.product h3 {
    font-size: 18px;
  }

  .archive .custom-cta-button, .archive .custom-price-button {
    padding: 6px 16px;
    font-size: 18px;
  }

  .woocommerce ul.products li.product .lb-wishlist-wrapper {
    right: 6px;
    top: 6px;
  }

  .woocommerce.lb-custom-loop ul.products li.product .lb-wishlist-button img {
    width: 18px;
    height: 28px;
  }

  .content-page {
    margin: 200px 0 80px;
  }

  .woocommerce .woocommerce-breadcrumb, .woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb a {
    font-size: 16px;
  }

  .woocommerce div.product div.images .woocommerce-product-gallery__image a img {
    height: 540px;
  }

  .flex-viewport {
    min-height: 540px;
  }

  .woocommerce div.product .product_title {
    font-size: 32px;
  }

  .woocommerce div.product .woocommerce-product-rating {
    font-size: 15px;
  }

  .woocommerce div.product .entry-summary p.price~.custom-price-button {
    font-size: 28px;
    margin: 0;
  }

  .woocommerce-product-details__short-description p {
    font-size: 17px;
  }

  .woocommerce div.product form.cart .variations label {
    font-size: 15px;
  }

  .woocommerce div.product form.cart .variations:has(.swatch-image.selected) th:has(label[for="pa_fantasia-palloncino"]):before {
    bottom: -48px;
  }

  .woocommerce div.product form.cart .variations:has(.swatch-image.selected) th:before {
    bottom: -32px;
  }

  .woocommerce div.product form.cart .variations:has(.swatch-color.selected) th:before {
    bottom: -20px;
  }

  .woocommerce div.product form.cart .variations th {
    width: initial;
  }

  .swatch-color {
    width: 26px;
    height: 26px;
  }

  .swatch-color:before {
    font-size: 13px;
  }

  .custom-message-inserted input {
    width: 260px;
    height: 34px;
  }

  body.woocommerce div.product form.cart div.quantity {
    margin: 6px 40px 0 5px;
  }

  .woocommerce div.product form.cart .button {
    padding: 10px 20px;
  }

  .single-product #lbpbs-progress-wrapper {
    width: 48%;
    margin-right: 40px;
  }

  .lbpbs-message {
    font-size: 15px;
  }

  .tempo-spedizione {
    font-size: 17px;
  }

  .product .product-extra-bottom-wrapper h2 {
    font-size: 24px;
  }

  .product-extra-bottom-wrapper > .custom-description-section p {
    font-size: 18px;
  }

  .custom-product-reviews .comment-reply-title {
    font-size: 20px;
  }

  .woocommerce #review_form #respond p {
    margin: 10px 0;
    font-size: 18px;
  }

  .single-product .related.products h2, .single-product .related h2 {
    margin-bottom: 10px;
    font-size: 26px;
  }

  .single-product .related .custom-price-button {
    padding: 6px 16px;
    font-size: 18px;
  }

  .woocommerce.single-product .related div.product div .cuore-preferiti {
    width: 24px;
    height: 34px;
  }

  .single_add_to_cart_button~.loading {
    left: 190px;
    font-size: 18px;
  }

  .main-shop {
    margin: 200px 0 60px;
  }

  h1.title.title-page {
    font-size: 30px;
  }

  #lbpbs-progress-wrapper {
    max-width: 300px;
  }

  body:not(.woocommerce-block-theme-has-button-styles).woocommerce-cart .wc-block-components-button:not(.is-link) {
    font-size: 18px;
  }

  .wc-block-components-totals-wrapper {
    font-size: 18px;
  }

  .wp-block-woocommerce-cart-order-summary-totals-block {
    font-size: 18px;
  }

  body .wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
    font-size: 22px;
  }

  body .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    font-size: 22px;
  }
  
  .wp-block-woocommerce-cart-cross-sells-block h2.has-large-font-size {
    font-size: 24px !important;
  }

  .wp-block-woocommerce-cart-cross-sells-block .wc-block-components-product-image img {
    width: 140px;
  }

  .wc-block-components-quantity-selector {
    width: 100px;
  }

  .is-large.wc-block-cart {
    margin-bottom: 0;
  }

  .page-faq .content-faq {
    margin-top: 60px;
    gap: 40px;
  }

  .page-faq .faq-category-title {
    font-size: 26px;
    margin-bottom: 16px;
  }

  .page-faq .faq-answer {
    font-size: 17px;
  }

  .woocommerce-account #main {
    margin: 140px 0 80px;
  }

  .title-widget {
    font-size: 22px;
  }

  .widget-footer ul li a {
    font-size: 16px;
  }

  .widget-footer p {
    font-size: 16px;
  }

  .horizontal-section .content-intro .text, .horizontal-section .content-progetto .text {
    width: 50%;
  }

  .horizontal-section .content-intro .media, .horizontal-section .content-progetto .media {
    width: 50%;
  }

  .horizontal-section h1 {
    font-size: 34px;
  }

  .horizontal-container .content-intro .stella-bg {
    width: 220px;
    left: 60%;
  }

  .horizontal-section .content-intro .media>img:nth-child(1) {
    max-width: 280px;
  }

  .horizontal-section .content-intro .media:before {
    max-width: 280px;
    left: 100px;
  }

  .horizontal-section .content-intro .media>img:nth-child(2) {
    max-width: 180px;
  }

  .horizontal-section .content-intro .media:after {
    max-width: 180px;
    max-height: 230px;
  }

  .horizontal-section .content-progetto .media>img:nth-child(1) {
    max-width: 280px;
  }

  .horizontal-section .content-progetto .media:before {
    max-width: 280px;
    left: 110px;
  }

  .horizontal-section .content-progetto .media>img:nth-child(2) {
    max-width: 180px;
  }

  .horizontal-section .content-progetto .media:after {
    max-width: 180px;
    max-height: 230px;
  }

  .horizontal-container .content-finale .stella-bg:nth-child(1) {
    top: -40px;
    width: 140px;
  }

  .horizontal-container .content-finale .stella-bg:nth-child(5) {
    bottom: -120px;
    right: -120px;
    width: 100px;
  }

  .search-results h1 {
    font-size: 26px;
    font-weight: 700;
  }

  .risultati-prodotti {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 15px;
  }

  .prodotto-trovato img {
    height: auto;
    margin-bottom: 0;
  }

  /* Da aggiustare */

  .main-shop .content-page {
    margin-right: 0 !important;
  }

}

@media (max-width: 767px) {

  /* Inizio mobile nav */

  .desktop-nav {
    display: none;
  }
  
  .mobile-nav {
    display: block;
  }

  .hamburger {
    display: block;
  }

  html:has(body.menu-open) {
    overflow: hidden;
  }

  .border {
    display: none;
  }

  .social-info {
    display: none;
  }

  .menu-open .social-info {
    display: flex;
    top: 100%;
    transform: translateY(-100%);
    gap: 10px;
    padding: 10px 0;
    z-index: 11;
  }

  .hamburger {
    position: relative;
    top: -4px;
    width: 36px;
    height: 19px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 100;
  }

  .hamburger span {
    display: block;
    height: 3px;
    border-radius: 100px;
    width: 100%;
    background: #fff;
    transition: all 0.3s ease-in-out;
  }

  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .nav {
    position: fixed;
    bottom: 0;
    left: 0;
    height: calc(100% - 56px);
    width: 100vw;
    /* border-top: 1px solid var(--turchese); */
    background: #fff;
    transform: translateX(100%);
    transition: transform .3s ease-in-out;
    z-index: 100;
    overflow-y: auto;
  }

  .admin-bar .nav {
    height: calc(100% - 102px);
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav .menu {
    flex-direction: column;
    align-items: flex-start;
    padding: 0px 20px 0 14px;
  }

  .nav .menu > .menu-item {
    width: 100%;
    text-align: left;
    margin-bottom: 0px;
    padding: 12px;
    line-height: 1.2;
  }

  .nav.mobile-nav .menu > .menu-item {
    border-bottom: 1px solid var(--bg);
    padding: 10px 0;
    font-weight: 500;
    font-size: 18px;
    height: 50px;
  }

  .nav .menu a {
    position: relative;
    top: 1px;
    width: 100%;
    display: block;
    color: var(--blu);
  }

  .sub-menu {
    display: block;
    max-height: 0;
    overflow: hidden;
    padding-left: 0;
    background: transparent;
    border: none;
    border-left: 1px solid var(--marrone);
    opacity: 0;
    transition: max-height .3s ease-in;
  }

  .sub-menu.open {
    display: block;
    position: initial;
    width: 100%;
    max-height: 300px;
    margin: 6px 0px;
    background: transparent;
    opacity: 1;
  }

  .menu-item-has-children > a {
    position: relative;
  }

  .menu-item-has-children > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #333;
  }

  .menu-item-has-children > a::after {
    content: "+";
    position: absolute;
    top: -3px;
    right: 10px;
    font-size: 22px;
    cursor: pointer;
    transition: all .3s ease-in-out;
  }

  .menu-item-has-children.open > a::after {
    content: '-';
    transform: rotate(8deg);
  }

  .nav .menu a:hover {
    color: var(--marrone);
  }

  .nav .sub-menu li a {
    padding: 6px 10px;
  }

  .nav.mobile-nav .menu > .icon.menu-item:before {
    content: '';
    position: relative;
    width: 50px;
    height: 50px;
    background-size: 35px;
    background-repeat: no-repeat;
    background-position: 0px 8px;
  }

  .nav.mobile-nav .menu > .icon-abbigliamento.menu-item:before {
    background-image: url('../img/nav-abbigliamento.png');
  }

  .nav.mobile-nav .menu > .icon-accessori.menu-item:before {
    background-image: url('../img/nav-accessori.png');
  }

  .nav.mobile-nav .menu > .icon-babycare.menu-item:before {
    background-image: url('../img/nav-baby-care.png');
  }

  .nav.mobile-nav .menu > .icon-bomboniere.menu-item:before {
    background-image: url('../img/nav-bomboniere.png');
  }

  .nav.mobile-nav .menu > .icon-decorazioni.menu-item:before {
    background-image: url('../img/nav-decorazioni.png');
  }

  .nav.mobile-nav .menu > .icon-impermeabili.menu-item:before {
    background-image: url('../img/nav-impermeabili.png');
  }

  .nav.mobile-nav .menu > .icon-nascita.menu-item:before {
    background-image: url('../img/nav-nascita.png');
  }

  .nav.mobile-nav .menu > .icon-natale.menu-item:before {
    background-image: url('../img/nav-natale.png');
  }

  .icon-natale.menu-item a {
    color: #FF5854;
  }

  .nav.mobile-nav .menu > .icon-pappa.menu-item:before {
    background-image: url('../img/nav-pappa.png');
  }

  .nav.mobile-nav .menu > .icon-quadretti.menu-item:before {
    background-image: url('../img/nav-quadretti.png');
  }

  .nav.mobile-nav .menu > .icon-partykit.menu-item:before {
    background-image: url('../img/nav-party-kit.png');
  }

  .nav.mobile-nav .menu > .icon-prontaconsegna.menu-item:before {
    background-image: url('../img/nav-pronta-consegna.png');
  }

  .nav.mobile-nav .menu > .icon-tutti.menu-item:before {
    background-image: url('../img/nav-tutti.png');
  }

  /* Fine mobile nav */

  html {
    overflow-x: hidden;
  }

  .topbar {
    position: fixed;
    bottom: 0;
    z-index: 11;
    width: 100%;
    font-size: 0.85rem;
  }

  .site-header .flex {
    justify-content: flex-start;
    gap: 16px;
  }

  .site-header .intro-logo, .site-header .shop-tools {
    flex-grow: initial;
  }

  .site-header .nav {
    flex-grow: initial;
  }

  .site-header {
    padding: 10px 0 0;
  }

  .site-header .stella-bg {
    width: 140px;
    left: 30%;
    top: 150%;
  }

  .waves {
    top: 32px;
  }

  .waves svg {
    height: 30px;
  }

  .logo img {
    width: 30px;
  }

  .shop-tools {
    gap: 18px;
  }

  #search-icon {
    width: 22px;
  }

  .preferiti-wrapper {
    bottom: 0px;
  }

  .preferiti-wrapper .wishlist-count {
    top: -14px;
    right: -10px;
    background: var(--blu);
    color: #fff;
    padding-right: 0px;
    width: 20px;
    height: 20px;
    line-height: 0;
  }

  .preferiti-wrapper img {
    width: 26px;
  }

  .profilo-wrapper {
    bottom: 0px;
    left: 2px;
  }

  .profilo-wrapper img {
    width: 20px;
  }

  .profilo-wrapper .user-name {
    top: -6px;
    font-size: 14px;
  }

  .header-cart {
    position: absolute;
    bottom: 6px;
    right: 26px;
  }

  .header-cart img {
    width: 26px;
  }

  .header-cart .cart-count {
    width: 20px;
    height: 20px;
    top: -14px;
    right: -10px;
    padding-right: 0;
    line-height: 0;
  }

  .social-list {
    bottom: 10px;
    top: initial;
    left: 50%;
    flex-direction: row;
    transform: translateX(300%);
    z-index: 100;
  }

  .social-list a {
    box-shadow: none;
  }

  body.menu-open .social-list {
    transform: translateX(-50%);
  }

  .main, .main-shop {
    margin: 140px 0 80px;
  }

  .main-home .flex {
    flex-direction: column;
    gap: 40px;
  }

  .main-home .testo-main {
    width: 100%;
  }

  .main-home .testo-main h1 {
    font-size: 38px;
    width: 70%;
    margin-bottom: 20px;
  }

  .custom-cta-button, .custom-price-button {
    padding: 6px 16px;
    font-size: 18px;
  }

  .main-home .img-main {
    height: 440px;
    width: 100%;
    border-radius: 20px;
  }

  .inner-wave {
    height: 30px;
  }

  .img-main .stella-bg {
    width: 100px;
    top: -10%;
    left: 70%;
  }

  .elementi-1 {
    top: 100px;
    left: 30%;
  }

  .elementi-2 {
    top: 70px;
    left: 90%;
  }

  .elementi-3 {
    bottom: 60px;
    left: 80%;
  }

  .elementi-4 {
    left: 10%;
    bottom: 40%;
  }

  .prodotti-home h2 {
    font-size: 38px;
  }

  .elementi-5 {
    top: 70px;
    right: 90%;
  }

  .prodotti-home {
    margin-bottom: 140px;
  }

  .about-home .flex {
    gap: 20px;
  }

  .about-home .testo-about {
    width: 60%;
  }

  .about-home .testo-about h2 {
    font-size: 38px;
    width: 100%;
  }

  .about-home .testo-about div {
    width: 70%;
  }

  .about-home img {
    border-radius: 20px;
  }

  .img-about > img {
    height: 190px;
  }

  .content-about-2 {
    max-width: 400px;
    bottom: -160px;
  }

  .about-home .flex .stella-bg:nth-child(4) {
    width: 120px;
    top: 100%;
  }

  .promo-home {
    margin: 0px 0 100px;
    padding: 120px 15px 0;
  }

  .promo-home h2 {
    font-size: 38px;
  }

  .promo-carousel {
    margin: -40px auto 0;
    width: calc(100% - 100px);
  }

  .promo-item {
    padding: 0 15px;
  }

  .arrow-promo-sx, .arrow-promo-dx {
    top: 70%;
  }

  .promo-home .img-promo {
    border-radius: 20px;
  }

  .extra-promo-home {
    margin-bottom: 120px;
    padding: 60px 0 40px;
  }

  .extra-promo-home .flex {
    padding: 0 20px;
    gap: 40px;
  }

  .extra-promo-home .testo-extra-promo h2 {
    font-size: 60px;
    margin: 0 0 30px;
  }

  .extra-promo-home .testo-extra-promo .stella-bg {
    width: 160px;
    left: 70%;
  }
 
  .testo-extra-promo div {
    max-width: 100%;
    margin-bottom: 30px;
    font-size: 18px;
  }

  .extra-promo-home img {
    border-radius: 20px;
  }

  .last-promo-home {
    margin-bottom: 120px;
    padding: 60px 0 40px;
  }

  .last-promo-home .flex {
    padding: 0 20px;
    gap: 40px;
  }

  .last-promo-home .testo-last-promo h2 {
    font-size: 60px;
    margin: 0 0 30px;
  }

  .last-promo-home .testo-last-promo .stella-bg {
    width: 160px;
  }

  .testo-last-promo div {
    max-width: 100%;
    margin-bottom: 30px;
    font-size: 18px;
  }

  .last-promo-home img {
    border-radius: 20px;
  }

  .img-last-promo .bollino {
    height: 110px;
    width: 110px;
    font-size: 16px;
    right: initial;
    left: -30px;
    top: 70%;
  }

  .img-last-promo .bollino span {
    font-size: 34px;
  }

  .follow-home {
    margin-bottom: 100px;
  }

  .woocommerce-page div.product div.images {
    width: 100%;
  }

  .flex-viewport {
    min-height: initial;
    width: 100%;
  }
  
  .woocommerce div.product div.images .woocommerce-product-gallery__image a img {
    height: 100%;
    max-height: 540px;
    width: 100%;
  }

  .woocommerce-page div.product div.summary {
    width: 100%;
  }

  .product .product-extra-bottom-wrapper {
    padding: 10px 0 40px;
    flex-direction: column;
    gap: 0px;
  }

  .product-extra-bottom-wrapper > .custom-description-section {
    width: 100%;
  }

  .product-extra-bottom-wrapper > .custom-product-reviews {
    width: 100%;
  }

  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond button#submit {
    font-size: 18px;
    padding: 8px 18px;
  }

  .product-extra-bottom-wrapper {
    margin-top: 40px;
  }

  .product-toggle-item {
    width: 100%;
    margin-bottom: 5px;
  }

  .product-toggle-question {
    position: relative;
    display: block;
    width: 100%;
    padding: 18px;
    font-size: 18px;
    text-align: left;
    background: var(--bg);
    color: var(--blu);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all .3s ease-in-out;
  }

  .product-toggle-question.active {
    background: var(--turchese);
    color: #fff;
  }

  .product-toggle-question:hover {
    background: var(--turchese-chiaro);
  }

  .product-toggle-question.active:hover {
    background: var(--turchese);
  }

  .product-toggle-question::before {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    font-size: 20px;
  }

  .product-toggle-question[aria-expanded="true"]::before {
    content: '-';
    right: 22px;
    transform: translateY(-50%) rotate(0deg);
  }

  .product-toggle-answer {
    overflow: hidden;
    height: 0;
    transition: all .3s ease-in-out;
    padding: 0 14px;
    border-bottom: 2px solid var(--turchese);
    margin-top: -1px;
    border-radius: 8px;
    font-size: 16px;
  }

  .product .product-extra-bottom-wrapper #product-toggle-description h2 {
    display: none;
  }

  h2.woocommerce-Reviews-title {
    margin-top: 16px;
  }

  #comments:has(.woocommerce-noreviews) .woocommerce-Reviews-title {
    display: none;
  }

  .content-page {
    margin: 140px 0 80px;
    font-size: 18px;
  }

  .page-faq .content-faq {
    grid-template-columns: repeat(1, 1fr);
  }

  h1.title.title-page {
    font-size: 28px;
  }

  .content-page h3 {
    font-size: 26px;
  }

  .content-preferiti ul.products {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  html #wpadminbar {
    position: fixed;
  }

  .page-contatti .container {
    flex-direction: column;
    gap: 50px;
  }

  .page-contatti .content-page {
    width: 100%;
  }

  .page-contatti .form {
    width: 100%;
  }

  header:has(.topbar.show)~.wa-widget-button {
    bottom: 60px;
  }

  .page-policy th, .page-policy td {
    display: flex;
  }

  .page-azienda #header, .page-template-page-azienda #header {
    position: initial;
  }

  .horizontal-container {
    flex-direction: column;
    height: auto;
    width: 100%;
  }

  .horizontal-section {
    width: 100%;
    height: auto;
    min-height: initial;
    padding: 100px 0 60px;
  }

  .horizontal-section .container {
    max-width: 100%;
  }

  .horizontal-section .content-intro, .horizontal-section .content-progetto {
    gap: 40px;
  }

  .horizontal-section .content-intro .text, .horizontal-section .content-progetto .text {
    width: 50%;
  }

  .horizontal-section .content-intro .media, .horizontal-section .content-progetto .media {
    width: 50%;
  }

  .horizontal-container .content-intro .stella-bg {
    width: 200px;
    left: 50%;
  }

  .horizontal-section h1 {
    font-size: 30px;
  }

  .horizontal-section p {
    font-size: 17px;
  }

  .horizontal-section .content-intro .media>img:nth-child(1) {
    max-width: 240px;
  }

  .horizontal-section .content-intro .media:before {
    max-width: 240px;
    left: 60px;
  }
  
  .horizontal-section .content-intro .media>img:nth-child(2) {
    max-width: 160px;
  }

  .horizontal-section .content-intro .media:after {
    max-width: 160px;
    max-height: 210px;
  }

  .horizontal-section .content-progetto .media>img:nth-child(1) {
    max-width: 240px;
  }

  .horizontal-section .content-progetto .media:before {
    max-width: 240px;
    left: 70px;
  }

  .horizontal-section .content-progetto .media>img:nth-child(2) {
    max-width: 160px;
  }

  .horizontal-section .content-progetto .media:after {
    max-width: 160px;
    max-height: 210px;
  }

  .horizontal-container .content-intro .deco-1 {
    left: 55%;
  }

  .horizontal-container .content-storia .stella-bg {
    right: 0px;
  }

  .horizontal-container .content-progetto .deco-3 {
    position: absolute;
    bottom: 150px;
    left: 60px;
  }

  .horizontal-container .content-progetto .deco-4 {
    left: calc(50% - 40px);
  }

  .horizontal-container .content-finale .stella-bg:nth-child(1) {
    top: -20px;
    width: 120px;
  }

  .horizontal-container .content-finale .stella-bg:nth-child(5) {
    bottom: -40px;
    right: -80px;
    width: 80px;
  }

}

@media (max-width: 576px) {

  .topbar {
    font-size: 14px;
    padding: 10px 0px;
  }

  .topbar .container {
    flex-wrap: nowrap;
  }

  .topbar-close {
    font-size: 24px;
  }

  .site-header .stella-bg {
    width: 100px;
    left: 30%;
    top: 78px;
  }

  .waves {
    top: 16px;
  }

  .waves svg {
    height: 50px;
    width: 200vw;
  }

  .testo-promo {
    bottom: -110px;
    line-height: 1.2;
    padding: 0 10px;
  }

  .testo-promo a {
    font-size: 20px;
  }

  .main, .main-shop {
    margin: 120px 0 60px;
  }
 
  .main-home .testo-main h1 {
    font-size: 28px;
    width: 100%;
  }

  .custom-cta-button, .custom-price-button {
    padding: 6px 14px;
  }

  .main-home .img-main {
    height: 400px;
    background-position: -30px 0px;
    background-size: cover;
  }

  .img-main .inner-wave {
    width: 100vw;
  }

  .inner-wave {
    height: 20px;
    width: 50vw;
  }

  .prodotti-home h2 {
    font-size: 34px;
  }

  .primo-carosello-prod, .secondo-carosello-prod {
    width: calc(100% - 40px);
    margin: 20px auto 20px;
  }

  .prodotti-home .content-single-product .product-image-wrapper {
    margin: 5px;
  }

  .arrow-sx {
    left: -35px;
  }

  .arrow-dx {
    right: -35px;
  }

  .prodotti-home .content-single-product img {
    height: 180px;
  }

  .prodotti-home .product-image-wrapper .lb-wishlist-wrapper {
    right: 6px;
    top: 6px;
  }

  .single-product .lb-wishlist-button {
    padding: 0px 5px 0px;
  }

  .prodotti-home .product-image-wrapper .lb-wishlist-button img {
    width: 22px;
    height: 32px;
  }

  .arrow {
    width: 34px;
    height: 34px;
  }

  .arrow-sx, .arrow-dx {
    top: 30%;
  }

  .arrow-sx:before {
    left: 18px;
  }

  .arrow-dx:before {
    left: 13px;
  }

  .arrow:before {
    padding: 1px;
  }

  .content-single-product .product-title {
    font-size: 20px;
  }

  .content-single-product .product-price {
    font-size: 17px;
    min-width: 60px;
  }

  .prodotti-home {
    margin-bottom: 80px;
  }

  .about-home .flex {
    flex-direction: column;
  }

  .about-home .testo-about {
    width: 100%;
  }

  .about-home .testo-about h2 {
    font-size: 28px;
  }

  .about-home .testo-about div {
    width: 100%;
  }

  .about-home .img-about {
    width: 50%;
    margin-left: auto;
  }

  .about-home .flex .stella-bg:nth-child(3) {
    width: 200px;
    left: 20px;
  }

  .content-about-2 {
    max-width: 100%;
    bottom: -170px;
    right: 0;
    padding: 0 10px;
  }

  .content-about-2 > * {
    width: 60%;
  }

  .content-about-2 p {
    margin: 10px;
    font-size: 17px;
  }

  .promo-home {
    padding: 100px 0 20px;
  }

  .promo-home h2 {
    font-size: 34px;
  }

  .promo-carousel {
    margin: -100px auto 0;
    width: calc(100% - 40px);
  }

  .promo-item {
    padding: 0 5px;
  }

  .promo-home .img-promo {
    height: 300px;
  }

  .promo-home .promo-item:nth-child(2) .titolo-promo, .promo-home .promo-item:nth-child(1) .titolo-promo, .promo-home .promo-item:nth-child(3) .titolo-promo {
    background-size: 130px;
  }

  .promo-home .titolo-promo h3 {
    font-size: 16px;
  }

  .promo-home .titolo-promo span {
    font-size: 28px;
  }

  .promo-home .img-promo {
    height: 200px;
  }

  .promo-carousel .arrow-sx, .promo-carousel .arrow-dx {
    top: 70%;
  }

  .extra-promo-home {
    margin-bottom: 100px;
    padding: 40px 0;
  }

  .extra-promo-home .waves {
    bottom: -20px;
  }

  .extra-promo-home .waves svg {
    height: 60px;
  }

  .extra-promo-home .flex {
    padding: 0 15px;
    flex-direction: column;
  }

  .extra-promo-home .testo-extra-promo {
    width: 100%;
  }

  .extra-promo-home .testo-extra-promo h2 {
    font-size: 50px;
    margin: 0 0 20px;
  }

  .testo-extra-promo div {
    margin-bottom: 20px;
  }

  .extra-promo-home .testo-extra-promo .stella-bg {
    width: 120px;
    left: 80%;
  }

  .extra-promo-home .img-extra-promo {
    width: 100%;
  }
  
  .last-promo-home {
    margin-bottom: 100px;
    padding: 40px 0;
  }

  .last-promo-home .waves {
    bottom: -20px;
  }

  .last-promo-home .flex {
    padding: 0 15px;
    flex-direction: column;
  }

  .last-promo-home .testo-last-promo {
    width: 100%;
  }

  .last-promo-home .testo-last-promo h2 {
    font-size: 50px;
    margin: 0 0 20px;
  }

  .testo-last-promo div {
    margin-bottom: 20px;
  }

  .last-promo-home .testo-last-promo .stella-bg {
    width: 120px;
    left: 5%;
  }

  .last-promo-home .img-last-promo {
    position: relative;
    width: 100%;
  }

  .img-last-promo .bollino {
    left: initial;
    right: -10px;
  }

  .follow-home .titolo-link {
    font-size: 34px;
    line-height: 1.1;
    margin: 0 0 20px;
    display: block;
  }

  .follow-home {
    margin-bottom: 60px;
  }

  .loop-products > .container {
    padding: 0;
  }

  .shop-button-filtri {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 20;
  }
  
  .shop-button-filtri button {
    padding: 12px;
    border: none;
    background: transparent;
    color: var(--blu);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
  }
  
  .sidebar-close {
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 102;
  }
  
  .sidebar-close button {
    padding: 8px 12px;
    border: none;
    background: var(--turchese);
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
  }
  
  .shop-sidebar.open {
    transform: translateX(0);
  }
  
  html:has(body.filters-open) {
    overflow-y: hidden;
  }

  body:not(.home) .sidebar.shop-sidebar .widget-title {
    font-size: 22px;
    margin-bottom: 5px;
  }

  .sidebar.shop-sidebar .widget-title ~ * {
    margin-bottom: 20px;
  }

  .sidebar.shop-sidebar .widget-title ~ .woocommerce-widget-layered-nav-list {
    margin-bottom: 20px;
  }

  .loop-products > .container .shop-sidebar {
    position: fixed;
    bottom: 0;
    left: 0;
    height: calc(100% - 56px);
    width: 100vw;
    margin: 0;
    padding: 15px;
    background: #fff;
    transform: translateX(100%);
    transition: transform .3s ease-in-out;
    z-index: 21;
    overflow-y: auto;
  }

  .admin-bar .loop-products > .container .shop-sidebar {
    height: calc(100% - 102px);
  }

  .loop-products > .container .shop-sidebar.open {
    transform: translateX(0);
  }

  .woocommerce .woocommerce-ordering {
    position: absolute;
    right: 45px;
    top: 8px;
    float: none;
    margin: 0;
    width: 80px;
  }

  .woocommerce .woocommerce-ordering:before {
    content: '';
    position: absolute;
    top: 3px;
    right: 15px;
    background: var(--turchese-chiaro);
    height: 20px;
    width: 1px;
  }

  .woocommerce-ordering select::-ms-expand {
    display: none;
  }

  .loop-products .woocommerce-ordering select {
    border: none;
    background: none;
    color: var(--blu);
    padding: 4px;
    background-image: none;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-weight: 600;
    font-size: 16px;
  }

  .woocommerce div.product form.cart {
    text-align: left;
  }

  body.woocommerce div.product form.cart div.quantity {
    margin: 0 20px 0 0;
  }

  .woocommerce .quantity .qty {
    width: 40px;
  }

  .woocommerce div.product form.cart .button {
    padding: 10px 18px;
    font-size: 18px;
    top: -6px;
  }

  .single-product #lbpbs-progress-wrapper {
    width: 100%;
    max-width: initial;
    margin-right: 0;
  }

  .lbpbs-message {
    font-size: 14px;
  }

  .tempo-spedizione {
    font-size: 16px;
    display: block;
    width: 100%;
    margin-top: 70px;
  }

  .tempo-spedizione br:first-child {
    display: none;
  }

  .product-extra-bottom-wrapper > .custom-description-section p {
    font-size: 17px;
  }

  .custom-product-reviews {
    padding: 10px;
  }

  .product .product-extra-bottom-wrapper h2 {
    font-size: 22px;
  }

  .single-product .related.products h2, .single-product .related h2 {
    margin-bottom: 0px;
    font-size: 24px;
  }

  .single_add_to_cart_button~.loading {
    left: 160px;
    font-size: 17px;
  }
  
  .woocommerce-cart #lbpbs-progress-wrapper {
    right: 0;
    top: -100px;
    max-width: initial;
  }

  .woocommerce-cart .content-page {
    margin: 260px 0 0px;
    font-size: 18px;
  }

  .woocommerce-cart h1.title.title-page {
    font-size: 24px;
  }

  .wp-block-woocommerce-cart-cross-sells-block h2.has-large-font-size {
    font-size: 22px !important;
  }

  .woocommerce-checkout h1.title.title-page {
    font-size: 24px;
  }

  .woocommerce-checkout .wp-block-woocommerce-checkout {
    padding-top: 10px;
  }

  .woocommerce-checkout #main {
    margin: 140px 0 60px;
  }

  .content-preferiti ul.products {
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
  }

  html:has(body.cart-aside-open) {
    overflow: hidden;
  }

  .cart-aside {
    width: 100vw;
    right: -100vw;
    height: 100svh;
  }

  .woocommerce-account #main {
    margin: 60px 0 80px;
  }

  .woocommerce-account .content-page {
    margin: 60px 0 80px;
  }

  .woocommerce-account #customer_login {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }

  .login-tabs {
    display: flex;
    width: 100%;
    max-width: 500px;
    margin-bottom: 0;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    border-bottom: none;
    z-index: 10;
    position: relative;
  }

  .login-tab {
    flex: 1;
    padding: 12px 16px;
    background: var(--turchese-chiaro);
    border: none;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    transition: all .3s ease-in-out;
    text-transform: uppercase;
  }

  .login-tab.active {
    background: var(--turchese);
    color: #fff;
  }

  .login-tab:hover {
    background: #e0e0e0;
  }

  .login-tab.active:hover {
    background: var(--turchese);
  }

  .woocommerce-account #customer_login .u-column1, .woocommerce-account #customer_login .u-column2 {
    width: 100%;
    display: none;
    position: relative;
  }

  .woocommerce-account #customer_login .u-column1.active, .woocommerce-account #customer_login .u-column2.active {
    display: block;
  }

  .woocommerce-account #customer_login > div h2 {
    display: none;
  }

  .woocommerce-account .woocommerce form.login, .woocommerce-account .woocommerce form.register {
    border-radius: 0 0 15px 15px;
    border-top: none;
    margin: 0;
    height: initial;
    padding: 20px 20px 30px 20px;
    gap: 6px
  }

  .woocommerce-account .woocommerce form.login:hover, .woocommerce-account .woocommerce form.register:hover {
    border-color: var(--turchese-chiaro);
    border-top: none;
  }

  .woocommerce-account button.woocommerce-button.button.woocommerce-form-login__submit, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button {
    font-size: 18px;
  }

  .woocommerce-button.button.woocommerce-form-login__submit {
    top: -8px;
  }

  .horizontal-section {
    padding: 60px 0;
  }

  .horizontal-section .content-intro, .horizontal-section .content-progetto {
    flex-direction: column;
  }

  .horizontal-section .content-intro .text, .horizontal-section .content-progetto .text {
    width: 100%;
  }

  .horizontal-section .content-intro .media, .horizontal-section .content-progetto .media {
    width: 100%;
  }

  .horizontal-section .content-intro .media:before {
    left: 60px;
  }

  .horizontal-section .content-intro {
    margin-bottom: 120px;
  }

  .horizontal-section .content-storia, .horizontal-section .content-finale {
    max-width: 90%;
  }

  .horizontal-section .content-progetto .media {
    margin-bottom: 140px;
  }

  .horizontal-section .content-progetto .media:before {
    left: 70px;
  }

  .horizontal-container .content-intro .stella-bg {
    width: 140px;
    left: 80%;
  }

  .horizontal-container .content-intro .deco-1 {
    left: 20%;
  }

  .horizontal-container .content-storia .deco-2 {
    position: absolute;
    top: -60px;
    left: 20px;
  }

  .horizontal-container .content-progetto .deco-3 {
    position: absolute;
    bottom: -20px;
    left: 60px;
  }

  .horizontal-container .content-progetto .deco-4 {
    left: calc(50% - -150px);
  }

  .horizontal-container .content-progetto .deco-5 {
    position: absolute;
    right: 50px;
    bottom: 360px;
  }

  .horizontal-container .content-finale .stella-bg:nth-child(1) {
    top: 30px;
    width: 100px;
    left: 20px;
  }

  .horizontal-container .content-finale .stella-bg:nth-child(5) {
    bottom: 0px;
    right: -40px;
    width: 70px;
  }

  footer {
    padding: 40px 0 0;
  }

  footer .flex {
    flex-direction: column;
  }

  .widget-footer > .container > div {
    width: 100%;
    margin-bottom: 30px;
  }

  .widget-footer ul {
    margin-top: 0;
  }

  .widget-footer p {
    margin-top: 10px;
  }

  header:has(.topbar.show)~.wa-widget-button {
    bottom: 80px;
  }

}

@media (min-width: 1200px) and (max-height: 1200px) {

  .horizontal-section .content-intro .media>img:nth-child(2) {
    top: 15%;
    left: 90%;
  }

  .horizontal-section .content-intro .media:after {
    top: 15%;
    left: 90%;
  }

  .horizontal-section .content-progetto .media>img:nth-child(2) {
    top: 15%;
    left: 5%;
  }

  .horizontal-section .content-progetto .media:after {
    top: 14%;
    left: 4%;
  }

}

@media (min-width: 1200px) and (max-height: 767px) {

  .horizontal-section {
    padding: 240px 0 80px;
  }

  .horizontal-section h1 {
    font-size: 36px;
  }

  .horizontal-section p {
    font-size: 18px;
  }

  .horizontal-section .content-intro .media>img:nth-child(1) {
    max-width: 340px;
  }

  .horizontal-section .content-intro .media:before {
    top: 0px;
    left: 180px;
    max-width: 340px;
  }

  .horizontal-section .content-intro .media>img:nth-child(2) {
    top: 30%;
    left: 85%;
    max-width: 240px;
  }

  .horizontal-section .content-intro .media:after {
    top: 30%;
    left: 85%;
    max-width: 240px;
    max-height: 320px;
  }

  .horizontal-section .content-progetto .media>img:nth-child(1) {
    max-width: 340px;
  }

  .horizontal-section .content-progetto .media:before {
    top: 0px;
    left: 210px;
    max-width: 340px;
  }

  .horizontal-section .content-progetto .media>img:nth-child(2) {
    top: 25%;
    left: 15%;
    max-width: 240px;
  }

  .horizontal-section .content-progetto .media:after {
    top: 22%;
    left: 15%;
    max-width: 240px;
    max-height: 320px;
  }

  .deco-2 {
    top: -60px;
  }

  .horizontal-container .content-finale .stella-bg:nth-child(1) {
    top: -10px;
    width: 170px;
  }

}