@charset "UTF-8";
/* ── Josefin Sans ── */
@font-face {
  font-family: "Josefin Sans";
  src: url("/wp-content/themes/hello-theme-child-master/fonts/Josefin_Sans/JosefinSans-VariableFont_wght.woff2") format("woff2"), url("/wp-content/themes/hello-theme-child-master/fonts/Josefin_Sans/JosefinSans-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Josefin Sans";
  src: url("/wp-content/themes/hello-theme-child-master/fonts/Josefin_Sans/JosefinSans-Italic-VariableFont_wght.woff2") format("woff2"), url("/wp-content/themes/hello-theme-child-master/fonts/Josefin_Sans/JosefinSans-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 700;
  font-style: italic;
  font-display: swap;
}
/* ── Montserrat ── */
@font-face {
  font-family: "Montserrat";
  src: url("/wp-content/themes/hello-theme-child-master/fonts/Montserrat/Montserrat-VariableFont_wght.woff2") format("woff2"), url("/wp-content/themes/hello-theme-child-master/fonts/Montserrat/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/wp-content/themes/hello-theme-child-master/fonts/Montserrat/Montserrat-Italic-VariableFont_wght.woff2") format("woff2"), url("/wp-content/themes/hello-theme-child-master/fonts/Montserrat/Montserrat-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Monsterrat;
}

p,
a,
li,
span,
em,
strong,
b {
  font-family: "Josefin Sans", Sans-serif;
}

button.delfi-button,
a.delfi-button {
  color: white;
  background: #09555a;
  border: solid 2px #09555a;
  padding: 12px 24px;
  transition: 0.4s ease;
  box-sizing: border-box;
  display: inline-block;
  text-decoration: none !important;
}
button.delfi-button:hover,
a.delfi-button:hover {
  color: #09555a;
  background: white;
}

.header-wrapper {
  position: relative;
  border-bottom: 1px #ebebeb solid;
  margin-bottom: 50px;
}
.header-wrapper.homepage {
  margin-bottom: 0;
}

header {
  transition: 0.4s ease-in-out;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: "left-icons logo right-icons" "navigation navigation navigation";
  max-width: 1140px;
  margin: auto;
  align-items: center;
  padding: 2rem 1.5rem;
  gap: 1.5rem;
}
@media screen and (max-width: 990px) {
  header {
    grid-template-areas: "left-icons logo right-icons";
    grid-template-rows: auto;
    align-content: center;
    padding: 1rem 1.5rem;
  }
  header nav {
    grid-area: unset;
  }
}
header .menu-button {
  display: none;
  grid-area: left-icons;
  position: relative;
  z-index: 5;
  width: 100px;
}
@media screen and (max-width: 990px) {
  header .menu-button {
    display: inline-flex;
  }
}
header .menu-button a {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.4s ease;
}
header .menu-button a.active span {
  background-color: black;
}
header .menu-button a.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}
header .menu-button a.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 9px;
}
header .menu-button a.active span:nth-child(2) {
  opacity: 0;
}
header .menu-button a span {
  min-width: 32px;
  min-height: 4px;
  background-color: black;
  position: relative;
  top: 0px;
  margin-bottom: 5px;
  bottom: auto;
  transition: 0.4s ease all;
  transition: 0.4s ease all;
  border-radius: 100px;
}
header .menu-button a span:last-child {
  margin-bottom: 0px;
}
header .menu-button a span:last-child {
  top: auto;
  bottom: 0px;
}
header h1 {
  grid-area: logo;
  margin: 0px;
}
header .icon-list {
  justify-self: end;
  width: max-content;
  grid-area: right-icons;
}
header nav {
  grid-area: navigation;
  justify-self: center;
  width: max-content;
  transition: 0.4s ease;
}
header nav ul {
  padding: 0px;
  list-style-type: none;
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
}
header nav ul li {
  position: relative;
}
header nav ul li a {
  font-family: "Montserrat";
  color: black;
  font-size: 16px;
  text-decoration: none;
  transition: 0.4s ease all;
  position: relative;
  font-weight: 500;
}
header nav ul li .sub-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: auto;
  max-height: 0px;
  overflow: hidden;
  position: absolute;
  transition: 0.4s ease-in-out;
  top: 100%;
  background: rgba(0, 0, 0, 0.6901960784);
  backdrop-filter: blur 3px;
  padding: 0 10px;
  width: 100%;
  width: fit-content;
  min-width: 100%;
}
header nav ul li .sub-menu li {
  margin: 0px;
  margin-top: 3px;
  white-space: nowrap;
}
header nav ul li:hover .sub-menu {
  max-height: 300px;
  padding: 10px;
  min-width: 100%;
}
header nav ul li.current-menu-item {
  text-decoration: underline;
}
@media screen and (max-width: 990px) {
  header nav {
    position: absolute;
    top: 100%;
    height: calc(100dvh - var(--header-height));
    background: white;
    left: 0;
    z-index: 300;
    left: -100%;
    padding: 2rem 1.5rem;
  }
  header nav ul {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
  header nav.active {
    left: 0;
  }
}
header .logo {
  grid-area: "logo";
  display: inline-flex;
}
header .logo a {
  display: inline-flex;
  text-decoration: none;
  transition: 0.4s ease all;
}

.menu__button {
  display: none;
}

@media (max-width: 991px) {
  .head-spacer {
    min-height: 95px;
  }
  header .outer__header .menu li {
    position: relative;
  }
  header .outer__header .menu li.menu-item-has-children:after {
    display: none;
  }
  header .outer__header .menu li.menu-item-has-children > a {
    position: relative;
    padding-right: 25px;
  }
  header .outer__header .menu li.menu-item-has-children > a:after {
    content: "▼";
    font-size: 12px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s ease;
  }
  header .outer__header .menu li.menu-item-has-children.open > a:after {
    transform: translateY(-50%) rotate(180deg);
  }
  header .outer__header .menu li .sub-menu {
    position: relative;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    top: 0;
    align-items: center;
  }
  header .outer__header .menu li .sub-menu a {
    font-weight: 300;
  }
  header .outer__header .menu li.open > .sub-menu {
    max-height: 500px;
  }
  .menu__button {
    display: inline-flex;
    position: relative;
    z-index: 5;
  }
  .menu__button a {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }
  .menu__button a.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 7px;
  }
  .menu__button a.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 9px;
  }
  .menu__button a.active span:nth-child(2) {
    opacity: 0;
  }
  .menu__button a span {
    min-width: 28px;
    min-height: 3px;
    border-radius: 5px;
    position: relative;
    top: 0px;
    margin-bottom: 5px;
    transition: 0.4s ease all;
  }
  .menu__button a span:last-child {
    margin-bottom: 0px;
  }
  .menu__button a span {
    bottom: auto;
    transition: 0.4s ease all;
  }
  .menu__button a span:last-child {
    top: auto;
    bottom: 0px;
  }
  header .outer__header > .logo img {
    max-width: 55px;
  }
  header .outer__header {
    padding: 5px 20px;
  }
  header .outer__header .menu {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #09555a;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: -100%;
    transition: 0.8s ease all;
  }
  header .outer__header .menu ul {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  header .outer__header .menu ul li {
    margin-right: 0px !important;
    margin-bottom: 15px;
  }
  header .outer__header .menu ul li a {
    display: block;
    width: 100%;
    text-align: center;
    font-weight: bold;
  }
  header .outer__header .menu ul.sub-menu li a {
    font-weight: 200;
    backdrop-filter: none;
  }
}
.footer-wrapper {
  background: #09555a;
}

footer {
  display: grid;
  max-width: 1140px;
  margin: auto;
  padding: 5rem 1.5rem;
  gap: 1.5rem;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: "logo newsletter menu" "bottom bottom bottom";
}
@media screen and (max-width: 990px) {
  footer {
    grid-template-columns: 1fr;
    grid-template-areas: "logo" "newsletter" "menu" "bottom";
    gap: 25px;
    padding: 5rem 10px;
  }
}
footer .bottom-section {
  grid-area: bottom;
  text-align: center;
  font-size: 14px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .bottom-section p {
  margin-bottom: 30px;
  width: fit-content;
}
footer .bottom-section a {
  color: white;
}
footer .bottom-section a:hover {
  color: white;
  text-decoration: underline;
}
footer .bottom-section .bananau {
  font-size: 16px;
  display: flex;
  justify-content: center;
  gap: 7px;
  align-items: center;
  width: fit-content;
}
footer .bottom-section .bananau svg {
  height: 16px;
}
footer .bottom-section .bananau:hover {
  text-decoration: none;
}
footer .logo {
  grid-area: logo;
  width: max-content;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
footer .logo a {
  color: white;
}
footer .logo a:hover {
  color: white;
}
footer .logo svg {
  fill: white;
}
footer .logo svg:hover {
  fill: #e8c57a;
}
footer .newsletter {
  grid-area: newsletter;
}
footer .newsletter p {
  color: white;
  font-family: "Josefin Sans";
}
footer .newsletter form {
  max-width: 300px;
}
footer .newsletter form input {
  border-bottom: 1px solid white;
  background: transparent;
  color: white;
  padding: 0.2rem 1rem;
  font-size: 14px;
  font-weight: 400;
}
footer .newsletter form input:focus {
  border-color: #e8c57a;
}
footer .newsletter form input[type=submit] {
  align-self: end;
  font-size: 12px;
  background: white;
  padding: 0.5rem 1.2rem;
  margin-top: 0.5rem;
}
footer .newsletter form input[type=submit]:hover {
  background: #e8c57a;
  color: #09555a;
}
footer .newsletter form .intl-tel-input .selected-flag .iti-arrow {
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid white;
}
footer .newsletter form .selected-dial-code {
  color: white;
}
footer .newsletter form .intl-tel-input.separate-dial-code .selected-flag {
  background: transparent;
}
footer .newsletter form .wpcf7-list-item-label {
  color: white;
}
footer .menu-outer {
  grid-area: menu;
  justify-self: end;
  width: max-content;
}
@media screen and (max-width: 990px) {
  footer .menu-outer {
    margin-bottom: 20px;
  }
}
footer ul {
  padding: 0px;
  list-style-type: none;
  margin: 0px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer ul li {
  position: relative;
  color: white;
}
footer ul li a {
  font-family: "Montserrat";
  color: white;
  font-size: 12px;
  text-decoration: none;
  transition: 0.4s ease all;
  position: relative;
  font-weight: 500;
  text-transform: uppercase;
}
footer ul li a:hover {
  color: #e8c57a;
}
footer ul li.current-menu-item {
  text-decoration: underline;
}
@media screen and (max-width: 990px) {
  footer .menu-outer {
    justify-self: center;
  }
  footer ul {
    align-items: center;
  }
  footer .logo {
    justify-self: center;
  }
  footer .newsletter {
    justify-self: center;
  }
  footer .bottom-section {
    width: 100%;
  }
}

form.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
form.wpcf7-form.wpcf7-form {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  align-items: self-start;
}
form.wpcf7-form .double {
  display: flex;
  gap: 15px;
  width: 100%;
}
form.wpcf7-form .double > div {
  width: 50%;
}
form.wpcf7-form * {
  font-family: "Montserrat";
}
form.wpcf7-form input {
  border-radius: 0;
  color: #09555a;
  background: #cbd5d4;
  border: none;
}
form.wpcf7-form input:focus {
  outline: none;
}
form.wpcf7-form input[type=submit] {
  border: none;
  background: #cbd5d4;
  color: #221f21;
  font-weight: bold;
  padding: 10px 30px;
  border: 1px solid transparent;
  font-family: "Montserrat";
}
form.wpcf7-form input[type=submit]:hover {
  border: 1px solid #cbd5d4;
  color: #cbd5d4;
  background: transparent;
}
form.wpcf7-form textarea {
  font-family: "Montserrat";
  border: none;
  border-radius: 0;
  color: #09555a;
  max-height: 200px;
  background: #cbd5d4;
}
form.wpcf7-form textarea:focus {
  outline: none;
}
form.wpcf7-form [type=checkbox] {
  position: fixed;
  left: -10000px;
}
form.wpcf7-form [type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
  transform: scale(1);
}
form.wpcf7-form .wpcf7-list-item {
  cursor: pointer;
  margin: 0 0 0 22px;
}
form.wpcf7-form .wpcf7-not-valid-tip {
  font-size: 14px;
}
form.wpcf7-form .wpcf7-list-item-label {
  position: relative;
  font-size: 12px;
  cursor: pointer;
}
form.wpcf7-form .wpcf7-list-item-label::after {
  content: "";
  top: 0;
  left: -20px;
  width: 15px;
  height: 15px;
  background: #221f21;
  transition: all 0.2s;
  position: absolute;
  opacity: 0;
  transform: scale(0);
  border-radius: 4px;
}
form.wpcf7-form .wpcf7-list-item-label::before {
  content: "";
  top: 0;
  left: -20px;
  width: 15px;
  height: 15px;
  position: absolute;
  box-sizing: border-box;
  background: #cbd5d4;
  border: 1px solid transparent;
  border-radius: 4px;
}
form.wpcf7-form .wpcf7-form-control.wpcf7-select {
  display: block;
  width: auto;
  border-radius: 0;
}
form.wpcf7-form .multi-selection p {
  margin: 0;
}
form.wpcf7-form .multi-selection .wpcf7-form-control {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
form.wpcf7-form .multi-selection span {
  font-size: 12px;
}
form.wpcf7-form .wpcf7-form-control-wrap {
  width: 100%;
}
form.wpcf7-form a {
  color: #09555a;
}
form.wpcf7-form a:hover {
  color: #cbd5d4;
}
form.wpcf7-form .wpcf7-submit {
  display: inline-block;
  width: fit-content;
}

.icon-list {
  display: flex;
  gap: 10px;
  position: relative;
}
.icon-list svg {
  width: 20px;
  height: 20px;
}
.icon-list span {
  position: absolute;
  top: -9px;
  left: -11px;
  display: inline-flex;
  border-radius: 50px;
  background: black;
  color: #fff;
  width: 17px;
  height: 17px;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  margin: 0;
  padding: 0;
}
.icon-list span.product-0 {
  display: none;
}

body .page-content {
  position: relative;
}
body .page-content:after {
  content: "";
  position: absolute;
  inset: 0;
  background: black;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
body.menu-open {
  overflow: hidden;
}
body.menu-open .page-content:after {
  opacity: 0.5;
  visibility: visible;
  pointer-events: auto;
}
body {
  /* .page-content {
      margin-top: 50px;
  } */
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto 1fr;
  grid-template-areas: "gallery header" "gallery description" "gallery pay";
  column-gap: 30px;
  row-gap: 20px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.product-layout .gallery {
  grid-area: gallery;
  display: flex;
  flex-direction: column;
  gap: 50px;
  overflow: hidden;
}
.product-layout .gallery .woocommerce-product-gallery {
  width: 100% !important;
}
.product-layout .gallery .woocommerce-product-gallery__wrapper {
  margin: 0;
}
.product-layout .gallery .woocommerce-product-gallery__image a {
  display: block;
}
.product-layout .gallery .woocommerce-product-gallery__image img {
  width: 100%;
  height: auto;
  max-height: 980px;
  object-fit: cover;
  display: block;
}
.product-layout .gallery .flex-control-thumbs {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  margin-top: 10px !important;
}
.product-layout .gallery .flex-control-thumbs li {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
}
.product-layout .gallery .flex-control-thumbs li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.product-layout .gallery .flex-control-thumbs li img.flex-active, .product-layout .gallery .flex-control-thumbs li img:hover {
  border-color: #000;
}
.product-layout .header {
  grid-area: header;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}
.product-layout .header .product-vendor {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
}
.product-layout .product_title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
  text-align: left;
}
.product-layout .short {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  grid-area: description;
}
.product-layout .short p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #333;
  margin: 0;
}
.product-layout .delfiart-payment {
  grid-area: pay;
}
.product-layout .price {
  font-size: 1.5rem;
  font-weight: 400;
  color: #111;
  margin: 0;
  text-align: left;
}
.product-layout .delfiart-variation-ui {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-layout .delfiart-variation-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-layout .delfiart-variation-title {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
}
.product-layout .delfiart-variation-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product-layout .quantity {
  margin: 4px 0 !important;
}
.product-layout .quantity .qty {
  width: 5em;
}
.product-layout .delfiart-variant-btn {
  font-family: "Josefin Sans", sans-serif;
  padding: 9px 20px;
  border: 1px solid #09555a;
  font-size: 0.9rem;
  cursor: pointer;
  background: white;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
  color: #09555a;
}
.product-layout .delfiart-variant-btn:hover:not(:disabled) {
  border-color: #000;
  background: #e8c57a;
}
.product-layout .delfiart-variant-btn.is-active {
  border-color: #000;
  background: #000;
  color: #fff;
}
.product-layout .delfiart-variant-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}
.product-layout .delfiart-variant-btn--original {
  padding: 10px 28px;
}
.product-layout .single_add_to_cart_button,
.product-layout .button.alt {
  width: 100%;
  padding: 16px;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  text-align: center;
  border: 1px solid transparent !important;
  background: #19757b !important;
  color: white !important;
}
.product-layout .single_add_to_cart_button:hover,
.product-layout .button.alt:hover {
  background: transparent !important;
  color: #19757b !important;
  border-color: #19757b !important;
}
.product-layout .woocommerce-variation-add-to-cart,
.product-layout .variations_form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-layout .description {
  font-size: 0.9rem;
  line-height: 1.75;
  color: #555;
  text-align: left;
}
@media (max-width: 900px) {
  .product-layout {
    grid-template-columns: 1fr;
    grid-template-areas: "header" "description" "gallery" "pay";
    gap: 10px;
  }
  .product-layout .gallery {
    gap: 20px;
  }
  .product-layout .gallery .flex-control-nav.flex-control-thumbs li {
    width: 72px;
    height: 72px;
  }
  .product-layout .description {
    padding-top: 0px;
    border: none;
  }
  .product-layout .product_title {
    font-size: 1.8rem;
  }
  .product-layout .woocommerce-product-gallery__image {
    max-height: 500px;
  }
}
@media (max-width: 480px) {
  .product-layout {
    padding: 20px 16px;
  }
  .product-layout .product_title {
    font-size: 1.5rem;
  }
  .product-layout .price {
    font-size: 1.25rem;
  }
}
.product-layout .out-of-stock {
  display: none;
}
.product-layout form.wpcf7-form input {
  font-size: 14px;
  background: transparent;
  border-bottom: #19757b solid 1px;
}
.product-layout form input.wpcf7-submit {
  border: #19757b solid 1px;
  margin-left: auto;
}
.product-layout form input.wpcf7-submit:hover {
  color: #09555a;
  border-color: #09555a;
}
.product-layout .intl-tel-input.separate-dial-code .selected-dial-code {
  font-size: 12px;
}
.product-layout .single_variation_wrap .details {
  margin: 0;
  margin-top: 25px;
  font-weight: 800;
}

.delfiart-archive__grid {
  /* display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); */
  gap: 50px;
  columns: 3;
}
.delfiart-archive__grid h2 {
  color: black;
}
@media screen and (max-width: 1170px) {
  .delfiart-archive__grid {
    columns: 2;
  }
}
@media screen and (max-width: 697px) {
  .delfiart-archive__grid {
    columns: 1;
  }
}

.delfiart-archive__item {
  margin-bottom: 50px;
  break-inside: avoid;
}
.delfiart-archive__item .delfiart-archive__image-wrap {
  position: relative;
  width: 100%;
  break-inside: avoid;
  overflow: hidden;
}
.delfiart-archive__item .delfiart-archive__image-wrap img {
  object-fit: contain;
  transform: scale(1);
  transition: 0.4s ease;
}
.delfiart-archive__item:hover img {
  transform: scale(1.1);
}
.delfiart-archive__title {
  margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 300;
  font-family: Montserrat;
}
.delfiart-archive__info p {
  font-size: 12px;
  color: black;
}
.delfiart-archive__tipologia-badge {
  display: inline-block;
  border: solid 1px rgba(25, 117, 123, 0.431372549);
  padding: 0px 5px;
  border-radius: 50px;
  font-size: 11px;
  color: rgba(25, 117, 123, 0.431372549);
  transition: 0.4s ease;
}
.delfiart-archive__tipologia-badge:not(.is-sold):hover {
  color: #19757b;
  border-color: #19757b;
  cursor: pointer;
}
.delfiart-archive__tipologia-badge.is-sold {
  color: #d0d0d0;
  border-color: #d0d0d0;
  text-decoration-line: line-through;
}

.delfiart-shop-wrapper #main {
  max-width: unset;
  padding: 0 20px;
  max-width: 1440px;
  margin: auto;
}
.delfiart-shop-wrapper .delfiart-archive__layout {
  margin-bottom: 50px;
}
.delfiart-shop-wrapper .delfiart-filters {
  margin-bottom: 30px;
  position: sticky;
  top: 0;
  background: white;
  z-index: 200;
  padding: 15px 0;
}
.delfiart-shop-wrapper .delfiart-filters__option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
  padding: 4px 0;
}
.delfiart-shop-wrapper .delfiart-filters__option span {
  font-size: 0.9rem;
  color: #333;
  text-transform: capitalize;
  transition: color 0.2s;
}
.delfiart-shop-wrapper .delfiart-filters__option {
  /* Nascondi il checkbox nativo */
}
.delfiart-shop-wrapper .delfiart-filters__option input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1.5px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s, background-color 0.2s;
  top: -2px;
  /* Checkmark via pseudo-element */
}
.delfiart-shop-wrapper .delfiart-filters__option input[type=checkbox]::after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.delfiart-shop-wrapper .delfiart-filters__option input[type=checkbox]:checked {
  background-color: #333;
  border-color: #333;
}
.delfiart-shop-wrapper .delfiart-filters__option input[type=checkbox]:checked::after {
  display: block;
}
.delfiart-shop-wrapper .delfiart-filters__option input[type=checkbox]:hover:not(:checked) {
  border-color: #999;
}
.delfiart-shop-wrapper .delfiart-filters__option:hover span {
  color: #000;
}
.delfiart-shop-wrapper .delfiart-filters__section {
  display: flex;
  gap: 20px;
}
.delfiart-shop-wrapper .delfiart-filters__section .category-wrapper {
  display: flex;
  gap: 10px 20px;
  flex-wrap: wrap;
}
.delfiart-shop-wrapper .delfiart-filters__title {
  font-family: "Josefin Sans", Sans-serif;
  margin: 0;
}
.delfiart-shop-wrapper .delfiart-filters__clear {
  margin: 10px 0;
}

.logo-section a {
  font-family: "Josefin Sans";
  color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
  gap: 5px;
  letter-spacing: 2px;
}
.logo-section a:hover {
  color: black;
}
.logo-section img {
  max-width: 80px;
}

.delfi-slider-wrapper {
  height: var(--slider-height-desktop);
}
.delfi-slider-wrapper .delfi-slider,
.delfi-slider-wrapper .swiper-slide,
.delfi-slider-wrapper .delfi-slide {
  height: 100%;
}
@media (max-width: 1024px) {
  .delfi-slider-wrapper {
    height: var(--slider-height-tablet);
  }
}
@media (max-width: 767px) {
  .delfi-slider-wrapper {
    height: var(--slider-height-mobile);
  }
}

.delfi-slider-wrapper .delfi-slide-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%) scale(1);
  transform-origin: center center;
  transition: transform 8s ease-in;
}
.delfi-slider-wrapper .swiper-slide {
  overflow: hidden;
}
.delfi-slider-wrapper .swiper-slide-active .delfi-slide-bg {
  transform: translate(-50%, -50%) scale(1.2);
}
.delfi-slider-wrapper .swiper-pagination {
  bottom: 5px;
  display: inline-flex;
  background: rgba(255, 255, 255, 0.5490196078);
  max-width: fit-content;
  margin: auto;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5000px;
  padding: 5px 3px;
  justify-content: center;
  align-items: center;
}
.delfi-slider-wrapper .delfi-slide-content {
  display: flex;
  padding: 5%;
  max-width: 1440px;
  margin: auto;
  height: 100%;
  z-index: 200;
  position: relative;
  align-items: baseline;
}
.delfi-slider-wrapper .delfi-slide-content p {
  color: black;
  font-size: 18px;
}
.delfi-slider-wrapper .delfi-slide-content.bottom-left {
  align-items: end;
}
.delfi-slider-wrapper .delfi-slide-content.center-left {
  align-items: center;
}
.delfi-slider-wrapper .delfi-slide-content.center-right {
  align-items: center;
  justify-content: right;
}
.delfi-slider-wrapper .delfi-slide-content.top-right {
  justify-content: right;
}
.delfi-slider-wrapper .delfi-slide-content.bottom-right {
  align-items: end;
  justify-content: right;
}
.delfi-slider-wrapper .delfi-slide-content .inner {
  position: relative;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.0901960784);
  padding: 1.5em;
  backdrop-filter: blur(3px);
}
.delfi-slider-wrapper .delfi-slide-content h2 {
  color: black;
  font-family: "Josefin Sans", Sans-serif;
}

.swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #09555a;
  border-radius: 500px;
  opacity: 1;
  transition: width 0.4s ease;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 25px;
  border-radius: 500px;
}

body:not([class*=elementor-page-]) .site-main {
  max-width: 1140px !important;
  padding: 0 10px;
}

.wp-block-woocommerce-cart .wc-block-components-button {
  border: solid 2px transparent;
}
.wp-block-woocommerce-cart .wc-block-components-button:hover {
  color: #32373c;
  border-color: #32373c;
  background: white;
}

.alignwide {
  margin-inline: 0 !important;
}

.delfi-checkout-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas: "express express" "left right";
}
.delfi-checkout-grid input {
  border-color: #b9b9b9;
}
.delfi-checkout-grid .express-checkout {
  grid-area: express;
}
.delfi-checkout-grid .delfi-checkout-left {
  grid-area: left;
  flex: 1;
}
.delfi-checkout-grid .delfi-checkout-right {
  grid-area: right;
  position: sticky;
  top: 20px;
}
@media screen and (max-width: 980px) {
  .delfi-checkout-grid {
    grid-template-areas: "express express" "left left" "right right";
  }
}

.wp-block-woocommerce-empty-cart-block {
  display: grid;
  justify-content: center;
  margin: 50px 0;
}

.wc-block-cart-item__wrap a {
  color: black;
}