/* THIS IS STILOSO */

:root{
    --orange: #fab321;
    --blue: #229ca4;
    --b2: #1a4a67;
    --o2: #ca7900;
    --o1: #fab321;
    --b1: #229ca4;
    
    --tvp: 0px;
}

/* FONTS */

@font-face {
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-Thin.ttf);
  font-weight: 300;
}

@font-face {
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-Regular.ttf);
  font-weight: 400;
}

@font-face {
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-Medium.ttf);
  font-weight: 500;
}

@font-face {
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-SemiBold.ttf);
  font-weight: 600;
}

@font-face {
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-Bold.ttf);
  font-weight: 700;
}

@font-face {
  font-family: Nunito;
  src: url(../assets/fonts/Nunito/Nunito-VariableFont_wght.ttf);
}
@font-face {
  font-family: LilitaOne;
  src: url(../assets/fonts/Lilita_One/LilitaOne-Regular.ttf);
}
@font-face {
  font-family: GoodTimes;
  src: url(../assets/fonts/good_times/GoodTimesRg.otf);
}

body.oh{
  overflow: hidden!important;
}

body{
  padding-top: calc(var(--tvp) + 70px);
}
body.home{
  padding-top: calc(var(--tvp) + 0);
}

.boxy{
    border: 1px solid #ddd;
      padding: 4px 8px;
      border-radius: 12px;
      box-shadow: 0 4px 16px #ddd;
  }

.btn {
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 8px 30px;
    transition: all .3s;
}
.btn:hover {
    border-radius: 40px;
}

.btn-1{
    background: var(--blue);
/*     background: linear-gradient(180deg, var(--blue), #1a4a67);
    border: 3px solid #fff;
    box-shadow: 0 0 0px 3px #256b96 !important;
    letter-spacing: 0.5px; */
}

.btn-2{
    background: var(--orange);
}
.btn.button-disabled{
  background: #ddd;
  opacity: .6;
  pointer-events: none;
}

.magic{
    color: transparent;
    background-clip: text;
}

.magic.blue{
    background-image: linear-gradient(0deg, var(--b2), var(--b1));
}
.magic.orange{
    background-image: linear-gradient(0deg, var(--o2), var(--o1));
}
h3{
  font-size: 38px;
  color: var(--b1);
}

/*  RESPONSIVE  */

.--d{
  display: unset;
}
.--m{
  display: none !important;
}

@media (max-width: 992px){
  .--d{
    display: none !important;
  }
  .--m{
    display: flex !important;
  }
}

/* ADMIN BAR */

.admin-bar{
  --tvp: 32px;
}
@media (max-width: 768px){
  .admin-bar{
    --tvp: 46px;
  }
}

/* PRELOADER */

.preloader{
    position: fixed;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, var(--o2), var(--o1), var(--o2));
    z-index: 100000000;
    top: 0;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    opacity: 1;
    transition: opacity .3s ease;
}
.preloader.preloaded{
  opacity: 0;
  pointer-events: none;
}
.preloader img{
    max-width: 250px;
}

@media (max-width: 992px){
  .preloader img{
    max-width: 150px;
}
}

  /* POPUPS */

#popup-overlay{
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: #003a46dd;
    z-index: 1000000;
    display: none;
    backdrop-filter: blur(4px);
  }
  #popup-overlay.open{
    display: block !important;
  }
  
  #popup-box {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    z-index: 1000001;
    border-radius: 8px;
    border: 6px solid var(--orange);
    box-shadow: 0 4px 16px var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    display: none;
    padding: 40px;
    min-width: 600px;
    color: var(--blue);
  }
  
  .popup-buttons-container{
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 20px;
  }
  .popup-text{
    text-align: center;
    padding: 0 100px;
    font-size: 18px;
  }
  
  .popup-title{
    font-weight: 700;
    color: var(--b1);
    font-size: 2.4rem;
    text-align: center;
  }
  
  .popup-icon{
    font-size: 5rem;
    color: var(--b1);
    margin: -20px;
  }

  .loader {
    border: 10px solid #f3f3f3;
    border-top: 10px solid var(--blue);
    border-left: 10px solid var(--blue);
    border-bottom: 10px solid var(--blue);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    animation: spin 2s linear infinite;
  }
  .loader::before{
    display: none!important;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  @media (max-width: 768px) {
    #popup-box {
      width: 90vw;
      min-width: unset;
    }
    .popup-text{
      padding: 0;
    }
  }

/* Woocommerce Account */
.i-miei-cani__wrapper h3{
    font-weight: 600 !important;
    margin-bottom: 10px !important;
}
.woocommerce-account .lista-cani__container{
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
}
.woocommerce-account .lista-cani__container a .cani-item{
    position: relative;
    width: 150px;
    height: 150px;
}
.woocommerce-account .lista-cani__container a .cani-item .dashicons{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    opacity: .7;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
}
.woocommerce-account .lista-cani__container a .cani-item:hover .dashicons{
    opacity: .9;
    font-size: 3rem;
}
.woocommerce-account .lista-cani__container a .cani-item .cani-item__title{
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 600;
    width: 100%;
    text-align: center;
}
.woocommerce-account .lista-cani__container a .cani-item .cani-item__thumbnail img{
    box-shadow: 0 4px 12px #ddd;
    border-radius: 8px;
    filter: brightness(0.8);
    z-index: -1;
    position: relative;
    transition: all .3s;
    border: 5px solid var(--orange);
    width: 100%;
}
.woocommerce-account .lista-cani__container a .cani-item:hover .cani-item__thumbnail img{
    filter: brightness(0.5);
    border: 5px solid var(--blue);
    box-shadow: 0 4px 12px var(--orange);
}
.woocommerce-account .lista-cani__container a .crea-cane{
    background-color: var(--orange);
    width: 150px;
    height: 150px;
    position: relative;
    box-shadow: 0 4px 12px #ddd;
    border-radius: 8px;
    transition: all .3s;
}
.woocommerce-account .lista-cani__container a .crea-cane:hover{
    background-color: var(--blue);
    box-shadow: 0 4px 12px var(--orange);
}
.woocommerce-account .lista-cani__container a .crea-cane .dashicons{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
}
.woocommerce-account .lista-cani__container a .crea-cane:hover .dashicons{
    font-size: 3rem;
}
.woocommerce-account .lista-cani__container a .crea-cane .cani-item__title{
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 500;
}
.woocommerce-additional-fields h3,
.woocommerce-additional-fields .woocommerce-additional-fields__field-wrapper{
  display: none;
}
.welcome-to-dashboard{
  text-align: center;
  font-size: 18px;
}
.dashboard{
  display: flex;
  align-items: center;
  gap: 20px;
}
.area-personale-main-title{
  font-size: 3rem;
  color: var(--blue);
  font-weight: 600;
}
.petcoin-wallet{
    margin: 30px auto;
    padding: 24px;
    border: 5px var(--orange) dashed;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
    user-select: none;
    flex: 1;
    text-align: center;
    height: 320px;
}
.petcoin-wallet h3{
    font-weight: 600 !important;
    margin-bottom: 10px !important;
}
.petcoin-wallet a{
    font-weight: 400;
    text-decoration: underline !important;
}
.petcoin-wallet a:hover{
    color: var(--orange);
    font-weight: 400 !important;
    text-decoration: underline !important;
}
.petcoin-wallet .petcoin-wallet__balance{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: space-between;
}
.petcoin-wallet .petcoin-wallet__balance div{
    font-size: 1rem;
    font-weight: 500;
}
.petcoin-wallet .petcoin-wallet__balance .petcoin-wallet__digits{
    font-size: 4rem;
    font-weight: 700;
    color: var(--blue);
}

@media (max-width: 992px){
    .petcoin-wallet {
        padding: 40px 50px 30px;
    }
    .woocommerce-account .lista-cani__container {
        overflow: auto;
    }
    .dashboard{
      flex-direction: column;
      gap: 5px;
    }
    .petcoin-wallet {
        margin: 10px auto;
    }
}

.lista-prenotazioni__container{
  box-sizing: border-box;
  margin-bottom: 50px;
}
.lista-prenotazioni__title{
  font-size: 18px;
  font-weight: 600;
  color: var(--blue);
}

.prenotazioni__wrapper h3{
  font-weight: 600 !important;
  font-size: 36px !important;
}

.prenotazione-item{
  display: grid;
  grid-template-columns: 5fr 10fr 8fr 10fr 12fr 6fr;
  padding: 20px;
  margin: 20px 0;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 12px #ddd;
  user-select: none;
  align-items: center;
  justify-content: center;
  justify-items: center;
}
.prenotazione-item:hover{
  box-shadow: 0 2px 12px var(--orange);
}
.prenotazione-item-id{
  font-weight: 600;
  font-size: 1.1rem;
}
.prenotazione-item-date{
  opacity: .8;
}
.prenotazione-item-costo{
  font-weight: 600;
}
.prenotazione-item-actions{
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.prenotazione-item-elimina{
  color: red;
  cursor: pointer;
}
.prenotazione-item-elimina:hover{
  text-decoration: underline;
}
.nessuna-prenotazione-item{
  border: 1px solid #ddd;
  padding: 20px;
  margin: 30px 80px 0 0;
  border-radius: 8px;
  box-shadow: 0 4px 8px #ddd;
  font-size: 1rem;
  font-weight: 600;
  background: #fab32180;
  color: var(--blue);
}

@media (max-width: 992px){
  .prenotazione-item{
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .prenotazione-item-id,
  .prenotazione-item-date,
  .prenotazione-item-costo,
  .prenotazione-item-actions{
    grid-column: span 2;
    text-align: center;
  }
  .prenotazione-item-actions{
    justify-content: center;
  }
}

/* INSERIMENTI */

.inserimento-item {
  border: 1px solid #ddd;
    box-shadow: 2px 4px 12px #ddd;
    margin-bottom: 20px;
    border-radius: 8px;
    padding: 20px 30px 0px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.inserimento-item-left {
    flex: 1;
    padding: 10px 30px 20px;
    border-right: 1px solid #ddd;
}
.inserimento-item-above {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}
.inserimento-item-id {
    font-size: 18px;
    font-weight: 700;
}
.inserimento-item-date-publish {
    font-size: 13px;
    opacity: 0.5;
    padding: 2px 8px;
}
.inserimento-item-below {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 40px 0 20px;
    border-top: 1px solid #ddd;
}
.inserimento-item-below > div{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.i-label {
    font-size: 14px;
    font-weight: 600;
}
.i-value {
    font-size: 22px;
    font-weight: 600;
}
.inserimento-item-actions {
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.inserimento-item-elimina {
    cursor: pointer;
    border: 3px solid;
    border-radius: 8px;
    font-size: 36px;
    width: 62px;
    height: 62px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: red;
}
.inserimento-item-elimina:hover {
    color: red;
    background-color: #fff;
}
.nessun-inserimento-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}
.nessun-inserimento-item i{
  font-size: 90px;
  color: var(--o1);
}
.nessun-inserimento-item h4{
  opacity: 0.7;
}

@media (max-width: 992px){
  .lista-inserimenti__container {
    padding: 0 20px;
  }
  .inserimento-item {
    margin-bottom: 30px;
    padding: 20px 20px 30px;
    gap: 10px;
    flex-direction: column;
  }
  .inserimento-item-left {
    padding: 10px 0px 20px;
    border: none;
  }
  .inserimento-item-above {
    flex-direction: column;
    align-items: center;
  }
  .inserimento-item-below {
    padding: 20px 0 20px;
    flex-direction: column;
    gap: 20px;
    border-bottom: 1px solid #ddd;
  }
  .i-label {
    font-size: 16px;
  }
  .i-value {
    font-size: 30px;
  }
}

/* CREA CANE */

.ca-wrapper{
    max-width: 1340px;
    margin: 80px auto;
}

.ca-wrapper h2{
    color: var(--blue);
}

.ca-wrapper h5{
    color: var(--orange);
}

.ca-wrapper .ca-back{
    color: var(--orange);
    margin-bottom: 10px;
}

.ca-wrapper .ca-upper{
    display: flex;
    gap: 40px;
}

.ca-wrapper .ca-upper-left{
    flex: 1;
}
.ca-wrapper .ca-upper-right{
    min-width: 300px;
}

.mandatory-field-notice{
    font-size: 12px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    margin-bottom: 30px;
  }
  .char-counter{
    position: relative;
  }
  .char-count-container{
    width: fit-content;
    position: absolute;
    top: -4px;
    right: 5px;
    font-weight: 600;
  }
  .ca-container{
    margin-top: 8px;
  }
  .ca-title{
    text-align: center;
  }
  .ca-subtitle{
    text-align: center;
    margin-bottom: 30px;
  }
  .ca-back a{
    color: var(--mag);
  }
  .ca-form-container{
    padding: 50px 80px;
  }
  .ca-form-container .riga .boxy{
    padding: 30px;
  }
  
  .ca-ad-imgs .riga{
    border: 1px dotted var(--blue);
    padding: 6px;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    border-radius: 8px;
    position: relative;
  }

  .avatar-preview{
    width: 298px;
    height: 298px;
    object-fit: cover;
  }
  
  .riga .remove-img{
    position: absolute;
    top: 4px;
    right: 4px;
    color: #fff;
    cursor: pointer;
    z-index: 1000002;
  }
  
  .riga .remove-img i{
    opacity: 0;
    z-index: 11;
    position: relative;
    border-radius: 100%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1px;
    background: #fff;
    color: var(--blue);
  }
  
  .riga .remove-img i.show,
  .riga .remove-vid i.show{
    opacity: 1;
  }
  
  .camera-wrapper{
    cursor: pointer;
    position: absolute;
    top: 50%;
    display: flex;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
    flex-direction: column;
    align-items: center;
    font-size: 10px;
    line-height: 1.5;
    gap: 4px;
    width: 56px;
    z-index: 10000002;
    opacity: .3;
  }
  
  .camera-wrapper i{
    font-size: 2rem;
    filter: drop-shadow(2px 2px 10px white);
  }
  
  .upload-images{
    width: fit-content;
    margin: 40px auto 0;
    min-width: 188px;
    text-align: center;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .riga-pulsanti > div{
    min-width: 200px;
    white-space: nowrap;
    padding-top: 50px;
  }
  .remove-profile{
    text-align: right;
    color: red;
    cursor: pointer;
    padding-top: 60px;
  }
  @media (max-width: 992px){
    .remove-profile{
      text-align: center;
    }
  }
  .remove-profile:hover{
    text-decoration: underline;
  }
  .ca-container .riga{
    display: flex;
    gap: 50px;
    padding: 0 0 60px;
    align-items: center;
  }
  .ca-container .riga h5{
    font-size: 16px;
  }
  .ca-container .riga.more-info > div{
    width: 24%;
  }
  .ca-container .riga .field-description{
    font-size: 14px;
    opacity: .7;
  }
  
  .ca-container .ca-ad-imgs .riga{
    padding: 0;
  }
  
  .ca-container .ca-ad-imgs .riga:hover{
    background: var(--orange);
  }
  
  .ca-descrizione, .ma-descrizione{
    margin: 40px 0 60px;
  }
  
  .caratteristiche-title{
    text-align: center;
    margin: 30px 0 50px;
  }
  
  .ca-container .riga.riga4{
    align-items: flex-start;
    margin: 40px 0 60px;
    gap: 0;
    justify-content: space-between;
  }
  
  .ca-submenu-item{
    display: flex;
    gap: 5px;
    padding: 4px 0;
    align-items: center;
  }
  
  .ca-submenu-item input{
    width: 16px;
    height: 16px;
    min-height: 16px;
  }
  
  .make-it-red{
    border: 3px solid red !important;
  }
  
  .is-mandatory-notice{
    color: red;
    font-size: 14px;
    display: none;
  }
  
  .is-mandatory-notice.show{
    display: block;
  }
  
  .helper-notice{
    opacity: .5;
    font-size: 12px;
    margin-top: 10px;
  }
  .pdf-upload-text{
    opacity: .5;
    font-size: 12px;
    margin: -16px 0 20px 0;
  }
  .ca-container .form-submit{
    border-top: 1px solid #ddd;
    margin: 0;
    padding: 50px 0 0px;
    text-align: center;
    width: 100%;
  }
  
  .ca-chat{
    display: flex;
    flex-direction: row-reverse;
    gap: 8px;
    margin-top: 5px;
  }
  
  .ca-chat input{
    width: 30px;
    height: 30px;
  }
  
  .ca-container .form-submit a{
    padding: 12px 20px;
    min-width: 200px;
    display: inline-block;
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
    background-color: var(--blue);
    border-radius: 8px;
    cursor: pointer;
    transition: all .3s;
  }
  .ca-container .form-submit a:hover{
    background-color: var(--orange);
    border-radius: 40px;
  }
  .ca-note{
    flex: 1;
  }
  
  .indirizzo-wrapper{
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .ca-container .riga.riga2{
    gap: 20px;
    justify-content: space-between
  }
  
  .show-submit-popup{
    margin-top: 55px;
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0 50px;
  }

  @media (max-width: 992px){
    .ca-container {
        padding: 0 20px;
    }
    .ca-container .riga {
        gap: 40px;
        flex-direction: column;
    }
    .ca-wrapper .ca-upper {
        gap: 0;
        flex-direction: column;
    }
    .ca-form-container {
        padding: 50px 20px;
    }
    .ca-form-container {
        padding: 50px 20px;
        margin: 20px 0;
    }
    .mandatory-field-notice{
        display: none;
    }
    .ca-container .riga div:not(.form-submit){
        width: 100%;
    }
    .ca-container .caratteristiche-title{
        margin: 60px 0 30px;
    }
    .ca-container .caratteristiche-title h2{
        font-size: 1.5rem;
    }
    .ca-container .form-submit a {
        font-size: 1.3rem;
    }
  }

  /* MY ACCOUNT - WOOCOMMERCE TWEAKS*/

  .woocommerce-MyAccount-content p{
    display: none;
  }
.woocommerce:not(.product-template-default){
    max-width: 1400px;
    margin: 50px auto;
  }
  .woocommerce-MyAccount-content,
  .woocommerce-MyAccount-navigation{
    padding-top: 40px;
  }
  .woocommerce-MyAccount-navigation li{
    border-radius: 8px;
    border: 2px solid #ddd;
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: 4px 4px 8px #ddd;
    font-family: Nunito;
    font-weight: 700;
    padding: 6px 0;
    position: relative;
  }
    .woocommerce-MyAccount-navigation li:hover{
    box-shadow: 4px 4px 8px #abababf3;
  }
  .woocommerce-MyAccount-navigation li a{
    font-size: 16px;
    color: var(--b1);
  }
  .woocommerce-MyAccount-navigation-link.is-active a{
    color: var(--b1);
    margin-left: 20px;
  }
  .woocommerce-MyAccount-navigation-link.is-active a::before{
    content: url(https://vacationpet.it/wp-content/uploads/2024/11/X32.png);
    position: absolute;
    display: block;
    top: -3px;
    left: -7px;
    font-size: 22px;
    z-index: 10;
    width: 26px;
    height: 26px;
    transform: scale(0.07);
  }
  .woocommerce .woocommerce-Address address{
    padding-top: 70px;
    border: none;
  }
  .woocommerce .woocommerce-Addresses .woocommerce-Address-title{
    border: none;
  }
  .woocommerce-Address{
    border: 2px solid #ddd;
    border-radius: 8px;
  }
  p.woocommerce-form-row{
    display: block;
  }
  .woocommerce h2{
    text-align: center;
  }
  .woocommerce-form.woocommerce-form-login.login{
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 4px 4px 8px #ddd;
  }

  @media (max-width: 992px){
    .woocommerce{
      margin: 0px auto;
    }
    .woocommerce-form.woocommerce-form-login.login{
      max-width: calc(100vw - 30px);
    }
    .u-columns.woocommerce-Addresses.col2-set.addresses .u-column2.col-2.woocommerce-Address{
      margin: 30px 0 60px;
    }
    .woocommerce-MyAccount-navigation{
      padding: 0 15px 30px;
    }
    .woocommerce-MyAccount-content{
      padding: 40px 15px 80px;
    }
    .prenotazioni__wrapper, 
    .dashboard,
    .woocommerce-EditAccountForm.edit-account{
      padding: 0;
    }
    .woocommerce-Address{
      max-width: calc(100vw - 30px);
    }
  }

  .in-uso{
    position: relative;
    border: 2px solid var(--orange);
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--orange);
  }
    .in-uso address{
    box-shadow: none !important;
  }
  .in-uso::before{
    position: absolute;
    content: '✓';
    top: -18px;
    right: 25px;
    color: var(--blue);
    z-index: 10;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    background: #fff;
    border-radius: 4px;
    border: 2px solid var(--orange);
    padding: 0 10px;
  }
  .edit{
    position: relative !important;
  }
  .woocommerce-Address-title.title{
    display: flex;
    justify-content: space-between;
    position: absolute;
    border-radius: 8px;
  }

  /* IMPERSONATION WARNING */

  .impersonation-warning{
    padding: 10px;
    background: #fef3c7;
    border: 1px solid #facc15;
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 299;
  }

  @media (max-width: 992px){
    .impersonation-warning{
      padding: 10px;
      background: #fef3c7;
      border: 1px solid #facc15;
      position: fixed;
      top: 13px;
      left: 10px;
      z-index: 299;
      width: 300px;
      font-size: 12px;
      transform: translateX(0);
    }
  }

  /* SATISFACTION POLL */
  .satisfaction-poll__container{
    max-width: 1340px;
    margin: 0 auto;
  }
  .satisfaction-poll__heading{
    text-align: center;
    margin: 40px 0 20px;
  }
  .satisfaction-poll__subtitle{
    font-size: 1.2rem;
    margin-top: -10px;
    font-weight: 500;
  }
  .satisfaction-poll__cards-wrapper{
    overflow-x: auto;
    padding-bottom: 40px;
  }
  @media (min-width: 992px){
  .satisfaction-poll__cards-wrapper{
    display: flex;
    justify-content: center;
  }
  }
  .satisfaction-poll__cards{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    width: 1000px;
  }
  .satisfaction-poll__card{
    border-radius: 8px;
    box-shadow: 0 4px 16px #ddd;
    background: #fff;
    flex: 1;
    display: flex;
    justify-content: center;
    max-width: 300px;
    overflow: hidden;
    padding-bottom: 25px;
  }
  .satisfaction-poll__card.green:hover{
    box-shadow: 0px 4px 18px 4px #53c253;
  }
  .satisfaction-poll__card.gold:hover{
    box-shadow: 0px 4px 18px 4px gold;
  }
  .satisfaction-poll__card.red:hover{
    box-shadow: 0px 4px 18px 4px #c72b0e;
  }
  .satisfaction-poll__card:hover{
    box-shadow: 0 4px 16px #aaa;
  }
  .satisfaction-poll__card-link{
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .satisfaction-poll__card-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 10px;
    max-height: 240px;
  }
  .satisfaction-poll__card-icon img{
    transform: scale(0.6);
    transition: transform .2s;
  }
  .green .satisfaction-poll__card-icon{
    background-color: #53c253;
  }
  .gold .satisfaction-poll__card-icon{
    background-color: gold;
  }
  .red .satisfaction-poll__card-icon{
    background-color: #c72b0e;
  }
    .satisfaction-poll__card-icon:hover img{
    transform: scale(0.7);
  }
  .satisfaction-poll__card-title{
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 40px;
    color: #333;
    text-align: center;
  }
  .satisfaction-poll__card-description{
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 26px;
    color: #333;
    text-align: center;
    padding: 0 25px;
  }

  .star-rating {
    display: flex;
    direction: ltr;
    font-size: 2rem;
    cursor: pointer;
    user-select: none;
  }

  .star {
    color: lightgray;
    transition: color 0.2s;
  }

  .star.filled {
    color: gold;
  }

  /* SATISFACTION FORM */

 .satisfaction-form__wrapper{
    max-width: 1280px;
    margin: 80px auto;
 }
 .satisfaction-form_heading{
    text-align: center;
    margin-bottom: 50px;
 }
 .satisfaction-form__stars{
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-start;
    margin-bottom: 50px;
 }
 .satisfaction-form__stars-title{
    font-size: 20px;
    font-weight: 600;
 }
 .satisfaction-form__feedback{
  margin-bottom: 30px;
 }
 .satisfaction-form__feedback-title{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
 }
 #submit-feedback{
    border: none !important;
    color: #fff !important;
    font-weight: 600;
    font-size: 24px;
    padding: 5px 80px;
    background: var(--blue) !important;
    transition: all .3s !important;
 }
 #submit-feedback:hover{
    border-radius: 40px !important;
 }

 /* RICARICA */

 .ricarica {
    max-width: 1260px;
    margin: 30px auto;
}
.ricarica-heading h1{
  color: var(--blue);
}
.rh-title {
  text-align: center;
}
.rh-subtitle {
  text-align: center;
  margin: -15px 0 20px;
}
.ricarica-tool {
  display: block;
  margin: 0 auto 40px;
  max-width: 1000px;
}
.range-row {
  margin-bottom: 60px;
  position: relative;
}
.range-row::after{
  content: url(https://vacationpet.it/wp-content/uploads/2026/03/maggior-risparmio-400.png);
  position: absolute;
  top: -80px;
  right: 80px;
  color: green;
  font-size: 12px;
  font-weight: 600;
  transform: scale(0.4);
}
@media (max-width: 992px){
  .range-row::after{
    left: 60%;
    transform: translateX(-50%) scale(0.4);
  }
}
#mySlider {
  width: 800px;
  margin: 90px auto 20px;
  display: block;
  background: linear-gradient(90deg, red, yellow, green);
}
.numbers-row {
  display: flex;
  gap: 30px;
}
.nr-box {
  border: 5px dashed var(--orange);
  border-radius: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;

}
.nr-title {
  font-size: 26px;
  font-weight: 600;
  color: var(--blue);
}
.nr-subtitle{
  text-align: center;
  width: 100%;
  padding: 0 15px;
}
.item-conversion{
  display: flex;
  align-items: center;
  gap: 6px;
}
.item-conversion-label{
  margin-right: auto;
}
.item-conversion-value{
  font-weight: 700;
  color: var(--b1);
}
#sliderValue {
  font-size: 60px;
  font-weight: 600;
  color: var(--blue);
  display: none;
}
#sliderValueInput {
    max-width: 200px;
    font-size: 60px;
    text-align: center;
    font-weight: 600;
    color: var(--blue);
    padding: 0;
    height: 80px;
    margin-bottom: auto;
}
@media (max-width: 992px){
  #sliderValueInput {
    height: 40px;
  }
}
#conversion {
  font-size: 60px;
  font-weight: 600;
  color: var(--blue);
}
.nr-box-euro {
  font-size: 60px;
  font-weight: 600;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 5px;
}
.currency {
  font-size: 40px;
}
.cents {
  font-size: 16px;
  font-weight: 300;
}
#place-order {
  width: 250px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin: 80px auto;

      background: linear-gradient(180deg, var(--blue), #1a4a67);
    border: 3px solid #fff;
    box-shadow: 0 0 0px 3px #256b96 !important;
    letter-spacing: 0.5px;
}
#place-order.btn-disabled{
  background-color: #787878;
  opacity: .7;
  pointer-events: none;
}

input[type="range"] {
  width: 100%;
  max-width: 800px;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: #ddd;
  border-radius: 3px;
  outline: none;
}

/* Thumb */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #0073aa; /* WP blue */
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 0 2px rgba(0,0,0,0.5);
}

input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #0073aa;
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 0 2px rgba(0,0,0,0.5);
}

/* Scale marks (from datalist) */
datalist {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 800px;
  margin: 3px auto 0;
  padding-left: 3px;
}

datalist option {
  position: relative;
  font-size: 12px;
  color: #555;
  text-align: center;
}

/* Optional: small vertical line */
datalist option::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 8px;
  background: #555;
}

.ricarica-notice{
  background: var(--orange);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  gap: 20px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}
.ricarica-notice-bullet{
  color: var(--blue);
  font-size: 45px;
  background: #fff;
  font-weight: 700;
  min-width: 60px;
  height: 60px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 4px;
  border: 1px solid;
}

/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

@media (max-width: 992px){
  .ricarica{
    padding: 0 15px;
  }

  .ricarica-notice-bullet {
    display: none;
  }
  .ricarica-notice-text{
    font-size: 12px;
  }
  #mySlider {
    max-width: calc(100vw - 30px);
  }
  .numbers-row {
    flex-direction: column;
    gap: 0px;
  }
  .nr-box{
    flex-wrap: wrap;
    flex-direction: row;
    padding: 15px 20px 15px;
    border: none;
    border-top: 5px dashed var(--orange);
    border-radius: 0;
    margin-top: -5px;
  }
  .nr-title {
    flex: 1;
    font-size: 24px;
  }
  .nr-subtitle {
    text-align: left;
    font-size: 11px;
  }
  #sliderValue {
    font-size: 35px;
  }
  #total {
      font-size: 25px;
  }
  #conversion {
      font-size: 25px;
  }
  .currency{
    font-size: 15px;
  }
  #sliderValueInput{
    max-width: 100px;
    font-size: 22px;
    text-align: center;
    font-weight: 700;
    color: var(--blue);
  }
}

/* HEADER */

.header-saldo-container {
    user-select: none;
}

.header-saldo-container .first-row,
.footer-saldo-container .first-row {
    display: flex;
    gap: 6px;
    padding: 0px 10px;
    align-items: center;
    position: relative;
}
.hsc-icon svg{
    width: 20px;
    height: 20px;
}
.hsc-icon{
  display: flex;
}
.hsc-icon i{
    color: #d99200d1;
    background: linear-gradient(140deg, #fff5a38f, #f9cc01);
    border: 2px solid var(--orange);
    border-radius: 100%;
    padding: 2.5px;
    box-shadow: 1px 1px 2px #c3b824;
}

.hsc-digit {
    font-size: 28px;
    font-weight: 700;
    color: var(--orange);
    background: linear-gradient(0deg, #ca7900, var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}
.header-saldo-container .first-row::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--orange) 20%, #d27e00, var(--orange) 75%, transparent 100%);
  border-radius: 2px;
}

.hsc-text {
    font-size: 11px;
    white-space: normal;
    line-height: 90%;
}
.header-ricarica-cta{
  display: none;
}

.logged-in .header-ricarica-cta{
    color: #fff;
    font-weight: 600;
    background: linear-gradient(0deg, #ca7900, var(--orange));
    border-radius: 8px;
    font-size: 16px;
    letter-spacing: 0.3px;
    padding: 4px 14px;
    border: 2px solid #fff;
    box-shadow: 0 0 0px 2px #df9600 !important;
    display: block;
    margin-left: -15px;
    text-decoration: none;
}
.header-ricarica-cta:hover{
    color: #fff;
    font-weight: 600;
    background: linear-gradient(180deg, #ca7900, var(--orange));
    transition: all .2s;
    border-radius: 30px;
    font-size: 16px;
    letter-spacing: 0.3px;
    padding: 4px 14px;
    border: 2px solid #fff;
    box-shadow: 0 0 0px 2px #df9600;
}
#content .page-content .header-ricarica-cta--dashboard{
    color: #fff !important;
    font-weight: 400;
    background: linear-gradient(0deg, #ca7900, var(--orange));
    border-radius: 8px;
    text-decoration: none !important;
    font-size: 14px !important;
    letter-spacing: 0.3px;
    padding: 4px 14px;
    border: 2px solid #fff;
    box-shadow: 0 0 0px 2px #df9600 !important;
    display: block;
    transition: all .3s;
}
#content .page-content .header-ricarica-cta--dashboard:hover{
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 30px;
}
.footer-saldo-container{
    position: fixed;
    bottom: 0;
    background: linear-gradient(0deg, #1a4a67de, #229ca4de);
    border-top: 3px solid var(--orange);
    width: 100%;
    left: 0;
    z-index: 10;
    align-items: center;
    display: flex;
    padding: 8px 0;
    justify-content: space-around;
    backdrop-filter: blur(1px);
    transition: bottom .3s;
}
.footer-saldo-container .second-row{
  white-space: nowrap;
}
.footer-saldo-container .hsc-text {
    color: #fff;
}
.fsc-close{
    font-size: 20px;
    color: var(--orange);
}
.fsc-lid{
  position: fixed;
  bottom: -35px;
  right: 30px;
  transition: bottom .3s;
  background: var(--blue);
  color: var(--orange);
  font-size: 22px;
  padding: 0 15px;
  border-radius: 6px 6px 0 0;
  border: 2px solid;
  border-bottom: none;
  z-index: 100;
}

@media (min-width: 992px){
  .footer-saldo-container{
    display: none;
  }
}

/* NUOVO MODULO REGISTRAZIONE CUSTOM */

.registration-wrapper {
  max-width: 1060px;
  margin: 5rem auto;
  padding: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fafafa;
}
.registration-header{
  text-align: center;
  margin: 20px auto 60px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ddd;
  max-width: 800px;
}
.registration-icon i{
  color: var(--blue);
  background: #fff;
  width: fit-content;
  margin: 0 auto;
  font-size: 4rem;
  border-radius: 100%;
  min-width: 105px;
  min-height: 105px;
  border: 3px solid;
  box-shadow: 2px 3px 8px var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.registration-wrapper form label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 600;
}
.registration-wrapper input,
.registration-wrapper button {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.25rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.registration-wrapper button {
  background: #0073aa;
  color: #fff;
  border: none;
  cursor: pointer;
}
.registration-wrapper button:hover {
  background: #005177;
}
.password-wrapper {
  position: relative;
}
.password-wrapper .eye {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 1.2rem;
}
.error { color: #c00; margin-bottom: 1rem; }
.success { color: #090; margin-bottom: 1rem; }

/* Base: stacked on mobile */
.form-row {
  display: block;
  margin-bottom: 1rem;
}
.form-row label {
  display: block;
}

.page-template-registrati .registration-wrapper #pending-registration .btn.btn-1{
    background: var(--blue);
    width: 300px;
    color: #fff !important;
    margin: 30px auto 50px;
    border: none !important;
    cursor: pointer;
    padding: 12px 20px;
    font-size: 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-template-registrati .registration-wrapper #pending-registration .btn.btn-1:hover{
    background: var(--orange)!important;
    border-radius: 30px;
    transition: all .3s;
}

/* Desktop: 3 columns for rows 1–3, 2 columns for row 4 */
@media (min-width: 768px) {
  .form-row.row-1,
  .form-row.row-2,
  .form-row.row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .form-row.row-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .form-row label {
    margin-bottom: 0;
  }
}

.newsletter{
    border-top: 5px solid var(--o1);
    background: linear-gradient(0deg, var(--b2), var(--b1));
}
.newsletter-container{
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 0;
    display: flex;
    gap: 40px;
    align-items: center;
}
.newsletter-icon{
    font-size: 112px;
    color: var(--o1);
}
.newsletter-module{
    width: 100%;
}
.newsletter-title{
    color: var(--o1);
    font-family: 'Nunito';
    font-weight: 600;
    font-size: 32px;
}
#newsletter-form{
    display: flex;
    gap: 8px;
}
#newsletter-input{
    border-radius: 4px;
    border: 3px solid var(--o1);
}
#newsletter-submit{
    background: linear-gradient(0deg, var(--o2), var(--o1));
    color: #fff;
    border: 3px solid;
    font-weight: 700;
    border-radius: 4px;
}

@media (max-width: 992px){
  .newsletter-container{
    flex-direction: column;
    gap: 0;
    padding: 80px 20px 120px;
  }
}

/* HOMEPAGE MISC */

#hp-ricarica-btn.header-ricarica-cta{
    width: fit-content;
    font-size: 22px;
    padding: 6px 36px;
    margin: 0 auto;
}

/* 404 PAGE */

.main-404{
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.error-404 {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #22222280;
}
.error-404 i{
    font-size: 80px;
}

@media (max-width: 992px){
  .main-404{
    padding: 0 30px;
    text-align: center;
    height: 70vh;
  }
  .error-404 h1{
    font-size: 2rem;
  }
}

/* ELEMENTOR KILLER */

body #primary:not([class*="elementor-page-"]) #main.site-main {
    display: block !important;
}

.product-template-default #primary #main .product{
  display: flow-root;
  max-width: 1200px;
  margin: 0 auto;
}
.product-template-default #primary #main .product .woocommerce-product-gallery{
  max-width: 300px;
}
.product-template-default #primary #main .woocommerce-breadcrumb{
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.product-template-default #primary #main .product_meta{
  display: none;
}

@media (max-width: 992px){
  .product-template-default #primary #main .product {
    padding: 0 25px;
  }
}

/* HOMEPAGE */
.page-template-homepage{
  padding: 0;
}
.hh-container{
  position: relative;
  height: 100vh;
}
.hh-overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 5;
    background: linear-gradient(90deg, #00000040, #00000010);
}
.homepage video{
  width: 100%;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  z-index: 1;
  filter: saturate(1.2) brightness(1.2) contrast(0.85);
}
.hh-text-container{
  position: relative;
  z-index: 10;
  top: 50%;
    transform: translateY(-50%);
    max-width: 1200px;
    margin: 0 auto;
}
.hh-title{
    color: #fff;
    font-family: LilitaOne;
    font-size: 75px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 2px 1px 5px #000;
    line-height: 110%;
}
.hh-subtitle{
    color: #fff;
    font-family: 'Nunito';
    text-transform: uppercase;
    font-weight: 300;
    font-size: 65px;
    text-shadow: 1px 1px 5px #000;
}
.hh-ctas{
    display: flex;
    gap: 30px;
    margin: 50px 0 0;
}
.hh-cta.cta-1 a{
    color: #fff;
    font-weight: 500;
    font-family: 'Poppins';
    border: 2px solid;
    border-radius: 8px;
    padding: 12px 40px;
    font-size: 20px;
    background: linear-gradient(0deg, var(--o2), var(--o1));
    border: none;
    transition: all .3s ease;
}
.hh-cta.cta-2 a{
    color: #fff;
    font-weight: 500;
    font-family: 'Poppins';
    border: 2px solid;
    border-radius: 8px;
    padding: 12px 40px;
    font-size: 20px;
    transition: all .3s ease;
    backdrop-filter: blur(4px);
}
.hh-cta.cta-2 a:hover,
.hh-cta.cta-1 a:hover{
    border-radius: 50px;
}

@media (max-width: 992px){
  .hh-title{
    font-size: 60px;
    text-align: center;
    max-width: 95vw;
  }
  .hh-subtitle{
    font-size: 50px;
    text-align: center;
  }
  .hh-ctas{
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin: 31px 0 0;
  }
}

.homepage-servizi{
    background: linear-gradient(0deg, var(--o2), var(--o1));
    color: #fff;
}
.hs-container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
}
.hs-heading{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.hs-title{
    font-family: LilitaOne;
    font-size: 54px;
    text-shadow: 1px 1px 4px var(--b2);
}
.hs-subtitle{
    font-family: 'Nunito';
    font-family: 'Poppins';
    font-size: 18px;
    margin-top: -10px;
    letter-spacing: 0.5px;
}
.special-text{
  font-size: 22px;
  font-weight: 700;
}
.blue{
  color: var(--b1);
  text-shadow: 0px 0px 2px #fff;
}
.hs-body{
    display: flex;
    padding: 50px 0 25px;
}
.hs-menu{
  min-width: 400px;
}
.hs-menu-item{
    font-size: 25px;
    font-weight: 700;
    font-family: 'Nunito';
    padding: 15px 0;
    border-bottom: 1px solid #fff;
    cursor: pointer;
    width: 351px;
    color: #fff;
    transition: all 0.3s ease;
}
.hs-menu-item.active{
    color: var(--b1);
    font-weight: 900;
}
.hs-displayer{
  max-width: 830px;
/*   -webkit-mask-image: linear-gradient(to right, transparent 10%, black 25%, black 75%, transparent 90%);
  mask-image: linear-gradient(to right, transparent 10%, black 25%, black 75%, transparent 90%); */
}
.hs-displayer .slick-slide{
  margin: 0 6px;
}
.hs-slide-item{
    position: relative;
    height: 336px;
    overflow: hidden;
    border: 5px solid;
    border-radius: 12px;
}
.hs-slide-item-inner{
    display: flex;
    background: linear-gradient(90deg, var(--b2), var(--b1));
}
.hssi-text-container{
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 15px;
  margin: auto 0;
}
.hssi-title{
  font-size: 32px;
    font-weight: 600;
    border-bottom: 1px solid;
    padding-bottom: 2px;
    margin-bottom: 2px;
}
.hssi-img{
  position: relative;
  z-index: 1;
}
.hssi-img img{
  z-index: 1;
  position: relative;
  width: 100%;
}
.hssi-text{
  font-size: 22px;
  line-height: 135%;
}
.hs-footer{
  text-align: center;
}
.hssi-overlay{
  display: none;
}

@media (max-width: 992px){
  .hs-slide-item{
    position: relative;
    height: unset;
  }
  .hs-slide-item-inner{
    flex-direction: column;
  }
  .hssi-text-container{
    height: 510px;
    justify-content: flex-start;
  }
  .hs-heading{
    text-align: center;
    padding: 0 20px;
  }
  .hs-title{
    margin: 0 auto;
  }
  .hs-body{
    flex-direction: column;
  }
  .hs-menu{
    display: none;
  }
  .hs-displayer{
    -webkit-mask-image: none;
    mask-image: none;
  }
  .hssi-text-container{
    justify-content: flex-end;
    position: absolute;
    height: 100%;
  }
  .hssi-title{
    font-size: 20px;
  }
  .hssi-text{
    font-size: 13px;
  }
  .hssi-overlay{
    background: linear-gradient(0deg, #00000080, transparent);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
  }
  .hs-title{
    font-size: 48px;
  }
}

.homepage-instagram-feed{
    padding: 100px 0 80px;
    background: #eee;
}
.hif-container{
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
.hif-header{
  margin-top: -30px;
}
.hif-title{
    font-family: 'LilitaOne';
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--o1);
    font-size: 48px;
}
.hif-subtitle{
    font-family: 'Nunito';
    font-size: 18px;
    font-weight: 500;
}
.hif-feed{
  position: relative
}
#sbi_images{
  display: flex!important;
  overflow-x: auto;              /* or overflow-y */
  scroll-snap-type: x mandatory; /* direction + strictness */
  max-width: 820px;
  mask-image: linear-gradient(to right, transparent 00%, black 0%, black 75%, transparent 98%);
  user-select: none;
  scroll-behavior: smooth;
  margin-bottom: 20px;
}
#sbi_images::-webkit-scrollbar {
  height: 10px;
}
#sbi_images::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--o1), var(--o2));
  border-radius: 20px;
}
#sbi_images::-webkit-scrollbar-track {
  background: #eee;
}
.sbi_item{
  scroll-snap-align: start;
}
#sb_instagram #sbi_images .sbi_item {
    min-width: 200px;
    border-radius: 12px;
}
.hif-btn{
    background: #00000060;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    border-radius: 100%;
    justify-content: center;
    color: var(--o1);
    font-size: 36px;
    cursor: pointer;
    position: absolute;
    z-index: 1;
    top: 80px;
}
.hif-btn#prev-slide{
  left: -35px;
  display: none;
}
.hif-btn#next-slide{
  right: -10px;
}
.hif-cta{
  display: flex;
  justify-content: center;
  background: linear-gradient(90deg, var(--o2), var(--o1));
  width: fit-content;
  padding: 8px 18px;
  border-radius: 6px;
  margin: 25px auto 0;
  transition: all .3s ease;
}
.hif-cta:hover{
  border-radius: 50px;
}
.hif-cta a{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.hif-cta svg {
  width: 20px;
}
.hif-cta span{
  color: #fff;
  font-weight: 500;
}

@media (max-width: 992px){
  .hif-container{
    flex-direction: column;
    padding: 0 20px;
  }
  .hif-title{
    text-align: center;
  }
  .hif-subtitle{
    text-align: center;
  }
  #sbi_images{
    display: flex!important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    max-width: 100vw;
    mask-image: none;
    user-select: none;
    scroll-behavior: smooth;
    margin-bottom: 20px;
    padding: 12px!important;
    scroll-padding: 0 20px;
  }
  .sbi_item{
    scroll-snap-align: center;
  }
  #sb_instagram #sbi_images .sbi_item {
      min-width: 250px;
      border-radius: 12px;
  }
  .hif-btn{
    display: none;
  }
}

.homepage-trustpilot{
  background-color: #eee;
}
.ht-heading{
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0 30px;
}
.ht-container{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 1fr;
  padding: 0 0 110px;
}
.ht-title{
  font-family: 'LilitaOne';
  text-transform: uppercase;
  color: var(--o1);
  font-size: 48px;
}
.ht-subtitle{
  font-family: 'Nunito';
  font-size: 18px;
  font-weight: 500;
}
.ht-container-inner{
  display: block;
  max-width: 900px;
  position: relative;
}
.ht-carousel .slick-slide{
  margin: 0 5px;
}
.ht-item{
  border: 1px solid #ddd;
  box-shadow: 4px 4px 8px #ddd;
  border-radius: 8px;
  padding: 20px;
  background-color: #fff;
}
.hti-stars{
  display: flex;
  gap: 1px;
}
.hti-stars svg{
  width: 20px;
}
.hti-nome{
  opacity: .7;
  font-size: 16px;
  font-weight: 500;
  text-align: right;
}
.hti-testo{
  opacity: .7;
  font-size: 14px;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  line-clamp: 6;
  -webkit-box-orient: vertical;  
  overflow: hidden;
  margin: 15px 0 30px;
}
.ht-trustbox{
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 50px;
  width: 290px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 3px 3px 6px transparent;
  transition: all .3s ease;
  background: linear-gradient(45deg, #00000020, transparent, #00000010);
}
.ht-trustbox:hover{
  box-shadow: 2px 2px 6px #00B67B;
  background: linear-gradient(45deg, #00000010 20%, transparent 50%, #00000010);
}
.htt-title{
  width: 140px;
}
.htt-trustscore, .htt-trustscore:hover{
  border-bottom: 1px solid #ddd;
  margin-bottom: -8px;
  padding-bottom: 5px;
  font-weight: 500;
  font-size: 18px;
  color: #000;
}
.htt-recensioni, .htt-recensioni:hover{
  font-weight: 500;
  font-size: 15px;
  color: #000;
}

@media (max-width: 992px){
  .ht-container{
    display: flex;
    flex-direction: column-reverse;
  }
  .ht-heading{
    padding: 60px 12px 30px;
  }
  .ht-title{
    max-width: 336px;
    text-align: center;
    line-height: 100%;
    margin: 0 auto 10px;
  }
  .ht-subtitle{
    text-align: center;
  }
  .ht-trustbox{
    width: 92vw;
    margin: 0 auto 30px;
    height: 92vw;
  }
}
.ho-above{
height: 150px;
border-bottom: 5px solid var(--b1);
}
.ho-ovale{
    max-width: 1000px;
    margin: -150px auto;
    display: flex;
    border: 5px solid var(--b1);
    max-height: 300px;
    border-radius: 300px;
    overflow: hidden;
    background: linear-gradient(45deg, var(--b2), var(--b1));
    z-index: 10;
    position: relative;
}
.hoo-video{
  min-width: 400px;
  height: 320px;
  width: 400px;
}
.hoo-video video{
    width: 100%;
    position: relative;
    object-fit: cover;
    height: 100%;
    top: -31px;
}
.hoo-info{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Nunito';
}
.hoo-title,
.hoo-title h2{
    color: var(--o1);
}
.hoo-title h2{
  font-size: 28px;
  font-weight: 700;
}
.hoo-text{
    font-size: 18px;
    font-weight: 500;
    margin: -6px auto 30px;
    max-width: 400px;
    text-align: center;
}
.hoo-cta a{
  background: #fff;
  color: var(--b1);
  font-weight: 600;
}
.ho-below{
    height: 150px;
    margin: -150px 0 -1px;
}

@media (max-width: 992px){
  .ho-ovale {
      margin: -285px 15px;
      max-height: unset;
      border-radius: 30px;
      flex-direction: column;
  }
  .hoo-info {
    height: 240px;
    padding: 0 30px;
  }
  .ho-above {
    margin-top: -1px;
    height: 320px;
    border-bottom: none;
  }
  .ho-below {
      height: 350px;
  }
  .hoo-title{
      max-width: 250px;
      text-align: center;
  }
  .hoo-title h2{
    font-size: 32px;
  }
}

.homepage-banner{
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hb-overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 5;
    background: linear-gradient(90deg, #00000090, #00000010);
}
.hb-container{
  font-family: 'Nunito';
  height: 420px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  position: relative;
  max-width: 1100px;
    margin: 0 auto;
}
.hb-title h2{
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
}
.hb-subtitle{
  font-size: 24px;
  font-weight: 500;
  margin: -10px auto 0;
  text-align: center;
  max-width: 800px;
}
.hb-cta{
  margin-top: 30px;
}
.hb-cta a {
  background: #fff;
  color: var(--b2);
  font-weight: 600;
  border-radius: 12px;
  font-size: 26px;
  padding: 15px 30px;
  transition: all .3s ease;
}
.hb-cta a:hover {
  background: #fff;
  color: var(--b2);
  font-weight: 600;
  border-radius: 50px;
  font-size: 26px;
  padding: 15px 30px;
}

@media (max-width: 992px){
  .hb-container{
    height: 600px;
    padding: 0 15px;
    text-align: center;
  }
  .hb-title h2{
    font-size: 2.5rem;
  }
  .hb-subtitle{
    font-size: 20px;
  }
  .hb-cta a {
    font-size: 18px;
    padding: 10px 20px;
  }
}

/* HANDLE WOOCOMMERCE ACCOUNT PHONE NUMBER SITUATION */

.woocommerce .woocommerce-address-fields #billing_phone_field{
    display: none;
}

/* WELCOME */

#welcome-app{
    max-width: 1200px;
    margin: 60px auto;
    padding: 30px 10px 60px;
    border: 5px solid var(--o1);
    border-radius: 12px;
    box-shadow: 6px 6px 12px #ccc;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: min(96vw, 1200px);
}
.welcome-icon{
    color: #fff;
    font-size: 2.5rem;
    background: linear-gradient(45deg, var(--o2), var(--o1));
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    border: 5px solid #fff;
    box-shadow: 2px 3px 8px var(--o2);
}
#welcome-app h1{
  margin-bottom: 5px;
  text-align: center;
}
#welcome-app p{
  text-align: center;
}
#welcome-app ul{
    list-style: nu;
    font-weight: 600;
    font-size: 20px;
    margin: 20px 0 40px;
}
#welcome-app li{
    padding: 5px 0;
}
#welcome-step1-next,
#verifyOtp,
#sendOtp,
#accept-tos,
#signWithOtp{
    background: linear-gradient(90deg, var(--o2), var(--o1));
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 12px 30px;
    font-size: 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all .3s ease;
}
#welcome-step1-next:hover,
#verifyOtp:hover,
#sendOtp:hover,
#accept-tos:hover,
#signWithOtp:hover{
    border-radius: 30px;
}
#accept-tos.btn.button-disabled{
    background: #aaa !important;
    pointer-events: none;
}
#phone,
#otp,
#sign{
    height: 52px;
    border-radius: 6px;
    border: 2px solid #aaa;
    padding: 0 20px;
    margin-right: 10px;
}
#phone-form,
#otp-form,
#sign-form{
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.tos-box{
  height:300px; 
  overflow:auto; 
  border:1px solid #ccc; 
  padding:15px; 
  width: min(400px, 90vw);
}
.tos-box::-webkit-scrollbar {
  width: 8px;
}
.tos-box::-webkit-scrollbar-thumb {
  background: linear-gradient(0deg, var(--o2), var(--o1));
  border-radius: 4px;
}
.tos-box::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.tos-rows{
  margin: 20px 0;
}
.tos-rows.disabled{
    pointer-events: none;
    opacity: .3;
    user-select: none;
}
.tos-row{
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    margin: 10px 0;
    gap: 4px;
}
.tos-row input{
  width: 18px;
  height: 18px;
}

/* FAQS COMPONENT */

/* GLOBAL COMPONENT - FAQS */

.faqs-component{
    background: #eeeeee;
    padding: 100px 0;
    display: none;
}
.faqs-component-container{
    max-width: 1000px;
    padding: 0 20px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}
.faqs-component-title{
    font-family: 'LilitaOne';
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--o1);
    font-size: 48px;
}
.faqs-component-subtitle{
  text-align: center;
}
.faqs-list{
    width: 100%;
    margin-top: 20px;
}
.faq-item-question{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px 0 0;
    background: #fff;
    padding: 17px 20px 17px 30px;
    border-radius: 24px;
    cursor: pointer;
    margin-top: 8px;
}
.faq-item-question.active{
    border-radius: 24px 24px 0 0;
}
.faq-item-question-text{
    font-size: 16px;
    font-weight: 500;
    line-height: 23.94px;
    letter-spacing: -0.01em;
    text-align: left;
    max-width: calc(100% - 160px);
    color: #000;
}
.faq-item-arrow{
    background: #fff;
    padding: 7px;
    border-radius: 100%;
    width: 38px;
    text-align: center;
    color: var(--o1);
    height: 38px;
    display: flex;
    align-items: center;
    border: 2px solid var(--o1);
    justify-content: center;
}
.faq-item-arrow svg{
    transition: transform .3s;
}
.faq-item-arrow:hover{
    color: #fff;
    background: var(--blue);
}
.faq-item-question.active .faq-item-arrow svg{
    transform: rotate(180deg);
}
.faq-item-answer{
    font-size: 16px;
    font-weight: 300;
    line-height: 23.94px;
    letter-spacing: -0.01em;
    text-align: left;
    background: #f0f3ff;
    padding: 0px 200px 0px 80px;
    margin-top: -1px;
}
.faq-item-answer p{
    margin-bottom: 12px;
    font-size: 16px;
}
.faq-item-answer p span {
  font-weight: 300 !important;
}
.faq-item-answer ul{
    list-style-type: none;
}
.faq-item-answer li{
    position:relative;
    margin: 10px 0;
}
.faq-item-answer li a{
    color: unset;
}
.faq-item-answer li::before{
    content: '';
    width: 4px;
    height: 4px;
    position: absolute;
    top: 10px;
    left: -18px;
    background: #000000;
    border-radius: 50px;
}
.faq-item-answer li a:hover{
    text-decoration: underline;
}
.faq-item-answer.active{
    border-radius: 0 0 24px 24px;
    padding-bottom: 30px;
}
.faq-accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background: white;
    color: #000;
    font-weight: 300;
  }

@media (max-width: 992px){
    .faqs-component{
        padding: 90px 20px 80px;
    }
    .faqs-component-container{
        flex-direction: column;
    }
    .faqs-component-title h2{
        font-size: 32px;
    }
    .faqs-list{
        width: 100%;
        padding-top: 0;
    }
    .faq-item-question{
        padding: 11px 12px 11px 20px;
        border-radius: 16px;
        background-color: #fff
    }
    .faq-item-question-text{
        font-size: 16px;
        line-height: 133%;
        letter-spacing: -1%;        
    }
    .faq-item-arrow{
        display: flex;
        justify-content: center;
        align-items: center;
        height: 38px;
        background: none;
    }
    .faq-item-answer.faq-accordion-panel{
        padding: 0px 20px 0px 30px;
        margin-top: -1px;
        border-radius: 0 0 16px 16px;
        background: #fff;
        color: #000;
    }
    .faq-item-question-text {
        max-width: unset;
    }
    .faq-item-arrow svg {
        width: 38px;
    }
    .faq-item-question.active {
        border-radius: 16px 16px 0 0;
    }
    .faqs-component-container {
      padding: 0;
    }
    .faqs-component-subtitle{
      margin: 0;
      max-width: 250px;
    }
}

/* PAGINA INSERIMENTO */

.inserimento{
    background: #fab300;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 50px;
    padding: 0 0 60px;
}
.inserimento_inner{
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.inserimento a{
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    border: 2px solid;
    border-radius: 8px;
    padding: 8px 24px;
}
.inserimento h1{
    font-family: LilitaOne;
    font-weight: 400;
    color: #fff;
    font-size: 60px;
    margin-top: 20px;
    text-transform: uppercase;
}
.inserimento img{
  width: 1400px;
}

@media (max-width: 992px){
  .inserimento_inner {
    flex-direction: column-reverse;
  }
  .inserimento-left{
    text-align: center;
    padding: 20px 20px 0;
  }
  .inserimento{
    margin-top: -50px;
  }
}

/* RESTYLING SECTION ORDINI */
.woocommerce-js .woocommerce table.shop_table tbody tr td a{
  background-color: var(--b1);
}
.woocommerce-page table.shop_table_responsive tbody th a{
  color: var(--b1);
}

@media (max-width: 992px){
  .woocommerce-js .woocommerce table.shop_table{
    border: none;
  }
  .woocommerce-js .woocommerce table.shop_table tbody tr td{
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 22px;
    font-weight: 600;
    padding: 7px 20px;
  }
  .woocommerce-js .woocommerce table.shop_table tbody tr td::before{
    font-size: 16px;
  }
  .woocommerce-js .woocommerce table.shop_table tbody tr{
      border: 1px solid #ddd;
      border-radius: 8px;
      box-shadow: 1px 5px 8px #ddd;
      margin-bottom: 20px;
      padding: 10px;
  }
  .woocommerce table.shop_table_responsive tbody th, .woocommerce-page table.shop_table_responsive tbody th {
        display: block;
        border: none;
    }
  .woocommerce-page table.shop_table_responsive tbody th a{
        font-size: 22px;
        font-weight: 600;
        border: 1px solid #ddd;
        padding: 4px 12px;
        border-radius: 8px;
        box-shadow: 2px 2px 4px #ddd;
    }
    .woocommerce-orders h3{
      padding-left: 25px;
      margin-bottom: -10px;
    }
}
