@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Tenor+Sans&display=swap');

:root {
    --primary-bordo: #32081A;
    --primary-bordo-80: rgba(50, 8, 26, 0.8);
    --primary-bordo-70: rgba(50, 8, 26, 0.7);
    --primary-bordo-60: rgba(50, 8, 26, 0.6);
    --primary-black: #000000;
    --primary-black-80: rgba(0, 0, 0, 0.8);
    --primary-black-70: rgba(0, 0, 0, 0.7);
    --primary-black-60: rgba(0, 0, 0, 0.6);
    --primary-black-10: rgba(0, 0, 0, 0.1);
    --primary-beige: #FDF8F9;
    --primary-beige-10: rgba(253, 248, 249, 0.1);
    --secondary-duty-rose: #EFCDC3;
    --secondary-white: #FFFFFF;
    --button-shadow: 0px 10px 10px 0px #0000001A;
    --product-card-border: 1px solid #D0D5DD;
    --product-card-shadow: 2px 2px 10px 0px #0000001A;
    --font-regular: 400;
    --font-medium: 500;
    --font-semi-bold: 600;
    --h1-size: 24px;
    --h1-lineheight: 28px;
    --h2-size: 20px;
    --h2-lineheight: 24px;
    --h3-size: 16px;
    --h3-lineheight: 24px;
    --p-size: 14px;
    --p-lineheight: 20px;
    --p-small-size: 12px;
    --p-small-lineheight: 16px;
}

body {
    background-color: var(--primary-beige);
}

/* X-Small devices (portrait phones, less than 576px) */
.btn {
    border-radius: 6px;

}
header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 100;
}
.desktop-nav {
    background-color: var(--primary-black-80);
    height: 53px;
    border-radius: 6px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(60px);
    box-shadow: 0 12px 16px -4px #10182814, 0 4px 4px 0 #00000040;

}
.desktop-nav .menu {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}
.desktop-nav .mir-nav-link {
    color: white;
    font-weight: var(--font-regular);
    padding: 1px;
    border-radius: 4px;
    background-color: transparent;
    position: relative;
    text-decoration: none;
    display: inline-block;
}
.desktop-nav .mir-nav-link > span {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 4px;
}
.desktop-nav .mir-nav-link > .star {
    display: none;
    position: absolute;
    bottom: -9px;
    left: 50%; /* Posizione orizzontale al 50% */
    transform: translateX(-50%);
}
.desktop-nav .mir-nav-link.active > .star {
    display: block;
}
.desktop-nav .mir-nav-link.active {
    font-weight: var(--font-semi-bold);
}
.desktop-nav .mir-nav-link.active,
.desktop-nav .mir-nav-link:hover {
    background: rgb(255,255,255);
    background: linear-gradient(52deg, rgba(255,255,255,0) 60%, rgba(255,255,255,0.33) 100%);
}
.desktop-nav .mir-nav-link:hover > span {
    background-color: var(--primary-black);
}
.desktop-nav .mir-nav-link.active > span {
    background-color: var(--primary-black);
}

.mobile-nav {
    background-color: var(--primary-black);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 48px;
    z-index: 100;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
    backdrop-filter: blur(60px);
    box-shadow: 0px 12px 16px -4px #10182814;
    box-shadow: 0px 4px 4px 0px #00000040;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}
.mobile-nav .mob-nav-icon {
    width: 30px;
}
.mobile-nav .mob-nav-icon.mob-search {
    text-align: right;
}
aside.mir-nav-aside {
    position: fixed;
    opacity: 0;
    left: -101vw;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99;
    background: rgb(74,42,64);
    background: linear-gradient(135deg, rgba(74,42,64,1) 0%, rgba(47,18,39,1) 100%);
    padding: 72px 20px 32px 20px;
    color: white;
    transition: all 0.2s ease-in-out;
    backdrop-filter: blur(200px);
}
aside.mir-nav-aside .menu a {
    text-decoration: none;
    color: white;
    font-size: 14px;
    font-weight: var(--font-regular);
    display: flex;
    padding: 10px 0;
    align-items: center;
    gap: 10px;
    justify-content: start;
}
aside.mir-nav-aside .menu a.m-button {
    justify-content: center;
}
aside.mir-nav-aside .menu a .star {
    display: none;
}
aside.mir-nav-aside .menu a.active {
    font-weight: var(--font-semi-bold);
}
aside.mir-nav-aside .menu a.active .star {
    display: block;
}
header.open-mobile-nav .mir-nav-aside {
    left: 0;
    opacity: 1;
}
header.open-mobile-nav .mob-hamburger {
    display: none;
}
.mob-nav-close {
    display: none;
}
header.open-mobile-nav .mob-nav-close {
    display: block;
}
header.open-mobile-nav .mob-search {
    display: none;
}
.flex-center-all {
    display: flex;
    align-items: center;
    justify-content: center;
}

footer.main {
    background-color: var(--primary-bordo);
    padding: 40px 24px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    color: #F3F3F3;
    font-size: 16px;
}

footer.main .logo {
    margin-bottom: 48px;
}
footer.main .logo img {
    width: 100%;
    height: auto;
}
footer.main .strong-label {
    font-weight: 700;
}
footer.main .contact-us {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}
footer.main .contact-us a {
    font-size: 14px;
    text-decoration: none;
    color: #F3F3F3;
}
footer.main .menu-row {
    display: flex;
    gap: 16px;
    row-gap: 8px;
    flex-wrap: wrap;
    align-items: flex-start;
}
footer.main .menu-row a {
    color: #F3F3F3;
}
footer.main .sub-menu {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
footer.main .nwl .strong-label {
    font-size: 12px;
    line-height: 16px;
    color: #FDF8F9;
}
footer.main .newsletter {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
footer.main .newsletter > input {
    order: 1;
}
footer.main .newsletter > .disclaimer {
    color: #BCBCBC;
    font-size: 12px;
    line-height: 16px;
    order: 2;
    margin-bottom: 12px;
}
footer.main .newsletter > a {
    order: 3;
}
footer.main .credits-nwl {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-bottom: 48px;
}
footer.main .credits-nwl .credits {
    order: 2;
}
footer.main .credits-nwl .nwl {
    order: 1;
}
footer.main .copyright-social {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 14px;
    color: #D3D3D3;
}
footer.main .copyright-social .copyright .compliant {
    display: flex;
    flex-direction: row;
    gap: 16px;
}
footer.main .copyright-social a {
    color: #D3D3D3;
    font-size: 12px;
}
footer.main .copyright-social .social a {
    text-decoration: none;
}

section.hero {

    width: 100%;
    height: auto;
}
section.hero.gallery {
    position: relative;
}
.icon-mode {
    display: inline-block;
    width: 22px;
    height: 26px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}
.icon-mode.m-block {
    background-image: url('../images/mode-block-off.svg');
}
.icon-mode.m-card {
    background-image: url('../images/mode-card-off.svg');
}
.mode-block .icon-mode.m-block {
    background-image: url('../images/mode-block-on.svg');
}
.mode-card .icon-mode.m-card {
    background-image: url('../images/mode-card-on.svg');
}

.icon-mode.m-block-white {
    background-image: url('../images/mode-block-white.svg');
}
.icon-mode.m-card-white {
    background-image: url('../images/mode-card-white.svg');
}

.m-for-block .icon-mode.m-block-white {
    background-image: url('../images/mode-block-white-on.svg');
}
.m-for-cards .icon-mode.m-card-white {
    background-image: url('../images/mode-card-white-on.svg');
}

.m-card .m-card-body {
    display: flex;
    width: 100%;
    height: 58px;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    position: relative;
}
.m-card .m-card-body .product-title {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    flex: none;
}
.m-card .m-card-body .product-title .brand {
    font-size: 14px;
    line-height: 14px;
}
.m-card .m-card-body .product-title .name {
    font-size: 12px;
    line-height: 24px;
}
.m-card .m-card-body .m-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    cursor: pointer;
}
.m-card .m-card-body .m-card-icon.action-favorite.active {
    border-radius: 4px;
    background-color: var(--primary-bordo-60);
}
.m-card .m-card-body .product-info {
    display: none;
}
.m-card .m-card-body .product-info a {
    text-decoration: none;
    color: inherit;
}
.m-card .m-card-body .product-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: none;
}

.mode.floating-mode {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 98;
}

.mode.floating-mode a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
    background-color: var(--primary-black-80);
    cursor: pointer;
    margin-bottom: 2px;
}
.mode-card .floating-mode a:last-of-type {
    background-color: black;
}
.mode-block .floating-mode a:first-of-type {
    background-color: black;
}

.mir-btn-link {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    background-color: transparent;
    color: black;
    text-decoration: none;
    font-size: 12px;
    line-height: 18px;
    font-weight: var(--font-semi-bold);
    border: 1px solid transparent;
}

.cursors .m-button.bordo {
    width: 88px;
}

.mir-btn-link.bordo:hover svg g rect {
    fill: white;
}

.gallery .filtering {
    position: fixed;
    margin: 0 15px;
    display: flex;
    top: 64px;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
    width: calc(100% - 30px);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.gallery .filtering::-webkit-scrollbar {
    display: none;
}

.gallery .filtering .settings {
    padding-left: 0;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 0;
    width: auto;
}
.gallery .filtering .settings .menu-backdrop {
    width: max-content;
    backdrop-filter: blur(10px);
}
.gallery .filtering .settings .menu-backdrop .miranda-dropdown {
    font-size: 12px;
}
.gallery .filtering .settings a {
    text-align: center;
}

.gallery .filtering .settings .m-button,
.gallery .filtering .settings .m-button.small {
    padding: 4px 11px
}

.menu-backdrop {
    display: flex;
    background-color: rgba(253, 248, 249, 0.4);
    border-radius: 6px;
    padding: 4px;
    /*backdrop-filter: blur(30px);*/
}
.menu-backdrop.mode {
    background: none;
}

.gallery-cards {
    display: inline-block;
    height: auto;
}
.gallery-cards .m-cards-strip {
    display: inline-block;
    height: auto;
}
.gallery-cards .m-cards-strip .m-cards-container {
    display: inline-block;
    height: fit-content;
}
.m-card.product img.product-image.landscape,
.m-card.product img.product-image.portrait,
.m-card.product img.product-image.square {
    width: 100%;
    height: auto;
}

.hero.gallery .cursors {
    display: none;
}
.hero.gallery .cursors .card-counting {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
}

.hero.gallery.m-for-cards .swiper {
    display: block;
    height: auto;
}

.hero.gallery.m-for-cards .swiper-wrapper {
    display: block;
    width: 100%;
    height: auto;
}

.hero.gallery.m-for-cards .swiper-slide {
    width: 100%;
    display: block;
    height: auto;
}

html {
    scroll-behavior: smooth;
    height: 100%;
    overflow-y: scroll;
}

.hero.homepage {
    padding-top: 0;
}
.hero.homepage h1,
.hero.homepage h2,
.hero.homepage h3 {
    text-align: center;
    font-family: 'Tenor Sans', sans-serif;
    /*backdrop-filter: blur(10px);*/
}
.hero.homepage h1,
.hero.homepage h2 {
    font-size: 20px;
    font-weight: 400;
}
.hero.homepage h3 {
    font-size: 16px;
    font-weight: 400;
}
.hero.homepage .swiper {
    width: 100%;
    height: auto;
}
.hero.homepage .swiper .cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.hero.homepage .swiper .swiper-wrapper {
    display: block;
    width: 100vw;
    height: max-content;
}
.hero.homepage .swiper .swiper-slide {
    width: 100%;
    height: 100svh;
    position: relative;
}

html, body {
    scrollbar-width: none;
    /* Per Chrome, Safari e Opera */
    &::-webkit-scrollbar {
        display: none;
    }
    /* Per IE e Edge */
    -ms-overflow-style: none;
}

.hero.homepage .swiper .slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}
.hero.homepage .swiper .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding-left: 25px;
    padding-right: 25px;
}
.hero.homepage .swiper .swiper-button-next,
.hero.homepage .swiper .swiper-button-prev {
    width: fit-content;
    top: auto;
    transform: none;
    bottom: 16px;
}
.hero.homepage .swiper .swiper-button-next.m-button.bordo,
.hero.homepage .swiper .swiper-button-prev.m-button.bordo {
    background-color: transparent;
}
.hero.homepage .swiper .swiper-button-next.m-button.bordo::before,
.hero.homepage .swiper .swiper-button-prev.m-button.bordo::before {
    display: none;
}
.hero.homepage .swiper .swiper-horizontal>.swiper-pagination-bullets,
.hero.homepage .swiper .swiper-pagination-bullets.swiper-pagination-horizontal,
.hero.homepage .swiper .swiper-pagination-custom,
.hero.homepage .swiper .swiper-pagination-fraction {
    bottom: 26px;
}
.hero.homepage .swiper .swiper-button-next:after,
.hero.homepage .swiper .swiper-rtl .swiper-button-prev:after,
.hero.homepage .swiper .swiper-button-prev:after,
.hero.homepage .swiper .swiper-rtl .swiper-button-next:after{
    content: '';
    display: none;
}
.hero.homepage .swiper .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-image: url('../images/slide-bullet.svg');
    opacity: 1;
}
.hero.homepage .swiper .swiper-pagination-bullet-active {
    background-image: url('../images/slide-bullet-active.svg');
}

.ba-left-top {
    background-position: left top;
}
.ba-left-center {
    background-position: left center;
}
.ba-left-bottom {
    background-position: left bottom;
}
.ba-center-top {
    background-position: center top;
}
.ba-center {
    background-position: center center;
}
.ba-center-bottom {
    background-position: center bottom;
}
.ba-right-top {
    background-position: right top;
}
.ba-right-center {
    background-position: right center;
}
.ba-right-bottom {
    background-position: right bottom;
}

/* .streets-of-fashion.shop .m-block-details */

.m-block-details a img {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.m-block-actions .m-block-details,
.m-card.product .m-block-details,
.streets-of-fashion.shop .m-block-details {
    position: absolute;
    bottom: 40px;
    width: 100%;
    height: auto;
    /*overflow: hidden;*/
    padding: 16px;
    display: none;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 16px;
    background: rgba(0, 0, 0, 0.60);
    border-radius: 4px;
    color: white;
}
.streets-of-fashion.shop .m-block-details {
    width: auto;
    min-width: 260px;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(100% + 10px);
}
.product-info.in-card {
    position: relative;
}

.m-card.product .m-block-details.in-card,
.streets-of-fashion.shop .m-block-details.in-card {
    width: 260px;
    top: auto;
    bottom: 0;
    min-height: 180px;
    height: fit-content;
    transform: translateY(-64px) translateX(-50%);
    left: 50%;
}

.m-block-actions .m-block-details.active,
.m-card.product .m-block-details.active,
.streets-of-fashion.shop .m-block-details.active {
    display: flex;
}

.m-block-actions .m-block-details::before,
.m-card.product .m-block-details::before,
.streets-of-fashion.shop .m-block-details::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0, rgba(255,255,255,0.8) 100%); /* Gradiente di 45° */
    z-index: 1;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); /* "Buco" al centro */
    mask-composite: exclude; /* Combina la maschera per creare il buco */
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: destination-out;
    border-radius: 4px; /* Bordi arrotondati */
    padding: 1px; /* Spessore del bordo */
    box-sizing: border-box; /* Assicura che il padding non sballi la dimensione totale */
}
.m-block-actions .m-block-details .full-width,
.m-card.product .m-block-details .full-width,
.streets-of-fashion.shop .m-block-details .full-width {
    width: 100%;
}
.m-block-actions .m-block-details .m-block-brand,
.m-card.product .m-block-details .m-block-brand,
.streets-of-fashion.shop .m-block-details .m-block-brand {
    font-size: 14px;
    line-height: 20px;
    font-weight: var(--font-semi-bold);
}
.m-block-actions .m-block-details .m-block-title-price,
.m-card.product .m-block-details .m-block-title-price,
.streets-of-fashion.shop .m-block-details .m-block-title-price {
    font-size: 12px;
    line-height: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.m-block-actions .m-block-details .m-block-title-price .price,
.m-card.product .m-block-details .m-block-title-price .price,
.streets-of-fashion.shop .m-block-details .m-block-title-price .price{
    font-weight: var(--font-semi-bold);
}
.m-block-actions .m-block-details .m-block-composition,
.m-card.product .m-block-details .m-block-composition,
.streets-of-fashion.shop .m-block-details .m-block-composition {
    font-size: 12px;
    line-height: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.m-block-actions .m-block-details .m-block-buttons,
.m-card.product .m-block-details .m-block-buttons,
.m-block-actions .m-block-details .m-block-buttons .m-button,
.m-card.product .m-block-details .m-block-buttons .m-button,
.streets-of-fashion.shop .m-block-details .m-block-buttons .m-button {
    width: 100%;
}

.color-bullet {
    position: relative;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: black;
    display: inline-block;
    margin-right: 8px;
}
.color-bullet::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0, rgba(255,255,255,0.6) 100%); /* Gradiente di 45° */
    z-index: 1;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); /* "Buco" al centro */
    mask-composite: exclude; /* Combina la maschera per creare il buco */
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: destination-out;
    border-radius: 50%; /* Bordi arrotondati */
    padding: 1px; /* Spessore del bordo */
    box-sizing: border-box; /* Assicura che il padding non sballi la dimensione totale */
}
.swiper.main {
    /*position: relative;*/
    width: 100%;
    height: 100vh;
    z-index: 0;
}
.swiper.main .swiper-slide {
    width: 100%;
    height: 100%;
}
.m-block-big.product {
    width: 100%;
    height: 100%;
    padding: 0;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.m-for-block .m-block-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 76px;
    flex-direction: row;
    z-index: 1;
}

input[type="checkbox"] {
    appearance: none; /* Rimuove lo stile predefinito */
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid #32081A;
    border-radius: 2px;
    background-color: transparent;
    cursor: pointer;
    position: relative;
    display: inline-block;
    margin-right: 8px;
}

/* Hover: Aggiunge l'ombra */
input[type="checkbox"]:hover {
    box-shadow: none;
}

/* Stato "checked" */
input[type="checkbox"]:checked {
    background-color: #32081A;
    border-color: #32081A;
}

input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 1px;
    width: 12px;
    height: 12px;
    border-radius: 2px;
    background-image: url('../images/check-light.svg');
    background-position: center;
    background-repeat: no-repeat;
}

input[type="checkbox"].white.light:checked::after {
    top: 3px;
    left: 1px;
    width: 17px;
    height: 16px;
}

input[type="checkbox"].white,
input[type="checkbox"].beige {
    border: 1px solid #ffffff;
}
input[type="checkbox"].white.light,
input[type="checkbox"].beige.light {
    background-color: rgba(255, 255, 255, 0.1);
    width: 20px;
    height: 20px;
}
/*
input[type="checkbox"].beige {
    border: 1px solid #EFCDC3;
}
*/
/* Hover: Aggiunge l'ombra */
input[type="checkbox"].white:hover,
input[type="checkbox"].beige:hover {
    box-shadow: none;
}

/* Stato "checked" */
input[type="checkbox"].white:checked {
    background-color: #ffffff;
    border-color: #ffffff;
}
input[type="checkbox"].beige:checked {
    background-color: #EFCDC3;
    border-color: #ffffff;
}

input[type="checkbox"].white:checked::after,
input[type="checkbox"].beige:checked::after {
    background-image: url('../images/check-dark.svg');
}

.flex-left-center {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.filter-box label {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
    color: white;
}

.filter-box {
    position: fixed;
    left: 101vw;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.60);
    z-index: 100;
    transition: left 0.3s ease-in-out;
}
.filter-box.active {
    left: 0;
}
.filter-box .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background-color: black;
    color: white;
}
.filter-box .content-mobile {
    height: calc(100% - 62px);
    background-color: #32081ACC;
    backdrop-filter: blur(60px);
}
/*.filter-box .content-mobile*/ .m-accordion {
    height: calc(100% - 58px);
    overflow-x: hidden;
    overflow-y: auto;
    padding: 36px 20px;
}
/*.filter-box.editable .content-mobile*/ .m-accordion {
    padding: 0 20px 36px 20px;
}
.filter-box.editable .saved-search-name {
    padding: 0 20px;
}
/*.filter-box .content-mobile*/ .m-accordion .m-accordion-item .m-accordion-item-header {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 0;
    min-height: 40px;
}
/*.filter-box .content-mobile*/ .m-accordion .m-accordion-item img.arrow {
    transition: all 0.3s ease-in-out;
}
/*.filter-box .content-mobile*/ .m-accordion .m-accordion-item.open img.arrow {
    transform: rotate(-180deg);
}
/*.filter-box .content-mobile*/ .m-accordion .m-accordion-item .m-accordion-item-content {
    height: 0;
    overflow: hidden;
}
/*.filter-box .content-mobile*/ .m-accordion .m-accordion-item.open .m-accordion-item-content {
    height: auto;
}
/*.filter-box .content-mobile*/ .m-accordion .m-accordion-item.open .m-accordion-item-label {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;
    color: #A6A6A6;
    padding-bottom: 16px;
}
/*.filter-box .content-mobile*/ .m-accordion .m-accordion-item label {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;
    color: white;
}

.filter-box .footer {
    height: 62px;
    background-color: #32081ACC;
    backdrop-filter: blur(100px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}
.filter-box .footer > div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.filter-box .save-alert {
    text-decoration: none;
    color: #999;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    display: flex;
    padding: 4px 16px;
    align-items: center;
    gap: 8px;
    border-radius: 6px;
    border: 1px solid #999;
    box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.05), 0px 4px 4px 0px rgba(0, 0, 0, 0.05), 0px 10px 10px 0px rgba(0, 0, 0, 0.10);
    background-color: transparent;
}
.filter-box .save-alert svg {
    width: 16px;
    height: 16px;
}
.filter-box .apply {
    text-decoration: none;
    color: var(--primary-bordo);
    font-size: 12px;
    background-color: white;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    display: flex;
    padding: 4px 16px;
    align-items: center;
    gap: 8px;
    border-radius: 6px;
    border: 1px solid #999;
    box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.05), 0px 4px 4px 0px rgba(0, 0, 0, 0.05), 0px 10px 10px 0px rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(10px);
}
.filter-box .apply svg {
    width: 16px;
    height: 16px;
}
.filter-box .clear-filter {
    text-decoration: none;
    color: #999;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    display: flex;
    ppadding: 4px 16px;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    background-color: transparent;
}
.filter-box .apply, .filter-box .clear-filter {
    backdrop-filter: none;
}
.filter-box .clear-filter svg {
    width: 16px;
    height: 16px;
}

.color-box {
    width: 24px;
    height: 24px;
    display: inline-block;
    border-radius: 4px;
    position: relative;
}
.color-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.1) 30%, rgba(255,255,255, .8) 90%); /* Gradiente di 45° */
    z-index: 1;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); /* "Buco" al centro */
    mask-composite: exclude; /* Combina la maschera per creare il buco */
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: destination-out;
    border-radius: 4px; /* Bordi arrotondati */
    padding: 1px; /* Spessore del bordo */
    box-sizing: border-box;
}

.flex-left-top-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
}

.filtering .m-button.bordo.link,
.filtering .m-button.bordo.link span {
    mix-blend-mode: normal;
}
.filtering .m-button.bordo.link.active svg rect {
    fill: white;
}
section.hero.product {
    padding: 0;
    height: 100vh;
    width: 100%;
    position: relative;
}
section.hero.product .swiper.product-images {
    height: 100vh;
    width: 100%;
}
section.hero.product .swiper.product-images .swiper-slide {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.swiper.product-images .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    border-radius: 0;
    background-color: transparent;
    background-image: url('../images/bullet-off.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.swiper.product-images .swiper-pagination-bullet-active {
    background-image: url('../images/bullet-on.svg');
}
.fake-border {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.9));
    mix-blend-mode: overlay;
}
.m-container {
    width: 100%;
}
.vertical-between {
    display: flex;
    flex-flow: column;
    align-items: start;
    justify-content: space-between;
}

section.product-info{
    position: relative;
    width: 100%;
    height: auto;
    min-height: 900px;
    margin-top: -60px;
    background-color: #32081A99;
    backdrop-filter: blur(200px);
    z-index: 1;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0;
    color: #909090;
}

section.product-info .m-container {
    padding: 16px 15px;
}
section.product-info .actions .m-button.black.tool {
    width: 32px
}


section.product-info .info-header.product-title {
    display: flex;
    align-items: start;
    justify-content: flex-start;
    gap: 8px;
}
section.product-info .info-header.product-title .brand-logo {
    width: 36px;
    height: 28px;
}
section.product-info .info-header.product-title .brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
section.product-info .info-header.product-title .brand-name {
    font-size: 14px;
    line-height: 14px;
    color: white;
    font-weight: var(--font-semi-bold);
}
section.product-info .features {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 32px 0 16px 0;
    color: white;
}
section.product-info .features .semi-label {
    font-weight: var(--font-semi-bold);
    color: rgb(220, 220, 220);
}
section.product-info .go-down {
    display: flex;
    align-items: center;
    justify-content: center;
}
section.hero.product .swiper.product-images .swiper-horizontal>.swiper-pagination-bullets,
section.hero.product .swiper.product-images .swiper-pagination-bullets.swiper-pagination-horizontal,
section.hero.product .swiper.product-images .swiper-pagination-custom,
section.hero.product .swiper.product-images .swiper-pagination-fraction {
    bottom: 206px;
}
section.hero .back-to-gallery {
    position: absolute;
    left: 15px;
    bottom: 90px;
    z-index: 1;
}
section.product-info .info {
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0;
    color: #909090;
}
section.product-info .info .gray-label {
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    letter-spacing: 0;
    color: #E9E9E9;
}

section.product-info .product-related h2 {
    font-family: "Tenor Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 18.72px;
    letter-spacing: 0;
    color: white;
    margin-bottom: 16px;
    padding-left: 15px;
    padding-right: 15px;
}

section.product-info .product-related .swiper {
    background-color: transparent;
}

section.product-info .product-related .swiper-wrapper {
    display: block;
    height: auto;
    width: 100%;
}

section.product-info .product-related .swiper-slide {
    width: 100%;
    height: auto;
    background-color: transparent;
}

section.product-info .product-related .product-card .portrait img,
section.product-info .product-related .product-card .landscape img,
section.product-info .product-related .product-card .square img{
    width: 100%;
    height: auto;
    object-fit: contain;
}

section.product-info .product-related .m-container {
    padding-left: 0;
    padding-right: 0;
}

section.product-info .product-related .product-card .product-data {
    height: 48px;
    background-color: #FDF8F9;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

section.product-info .product-related .product-card .product-data > div:first-of-type {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
}
section.product-info .product-related .product-card .product-data > div:last-of-type {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}
section.product-info .product-related .product-card .product-data .product-price {}
section.product-info .product-related .product-card .product-data.product-title {
    font-weight: 400;
    letter-spacing: 0;
}
section.product-info .product-related .product-card .product-data .product-brand {
    font-size: 12px;
    line-height: 14px;
    color: #000000;
}
section.product-info .product-related .product-card .product-data .product-name {
    font-size: 10px;
    line-height: 12px;
    display: inline-block;
    border-bottom: 1px solid #000000;
    color: #000000;
}
section.product-info .product-related .product-card .product-data .product-actions a {
    display: inline-block;
    padding: 4px;
}
section.product-info .product-related .product-card .product-data .product-actions svg rect {
    fill: black;
}
section.product-info .product-related .product-card .product-data .product-actions svg path {
    stroke: black;
}
a.bordo {
    text-decoration: none;
    color: var(--primary-bordo);
}
a.remove-all.bordo {
    font-weight: 400;
    font-size: 12px;
    line-height: 24px;
    letter-spacing: 0;
    display: flex;
    border-radius: 4px;
    /* background-color: rgba(255, 255, 255, 0.2); */
    /*backdrop-filter: blur(60px);*/
    height: 26px;
    padding: 0 12px;
    gap: 8px;
    align-items: center;
}
a.remove-all.bordo img {
    width: 16px;
    height: 16px;
}

.gallery-current-filter-settings {
    position: fixed;
    top: 120px;
    left: 0;
    width: 100%;
    z-index: 2;
    padding: 0 15px;
}
.gallery-current-filter-settings .m-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
}
.gallery-current-filter-settings .m-container::-webkit-scrollbar {
    display: none;
}
.gallery-current-filter-settings .m-container > * {
    flex-shrink: 0;
}

.gallery-current-filter-settings .filter-setting-item {
    display: inline-flex;
    height: 26px;
    width: auto;
    background-color: #000000;
    border-radius: 4px;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    line-height: 10px;
    letter-spacing: 0;
    color: #FFFFFF;
    gap: 8px;
    padding: 4px 12px;
}
.gallery-current-filter-settings .filter-type-label {
    font-size: 12px;
    font-weight: var(--font-semi-bold);
}
.gallery-current-filter-settings .filter-values {
    font-size: 10px;
}

.component-page.gallery-component > footer,
.component-page.gallery-component > .eu-min {
    display: none;
}

.compare-band {
    position: fixed;
    border: none;
    width: 100%;
    height: auto;
    left: 0;
    bottom: 0;
    transition: all 0.3s ease-in-out;
    transform: translateY(100%);
    background-color: #5b3847; /*var(--primary-bordo-80);*/
    z-index: 3;
    font-size: 12px;
    font-weight: 400;
    line-height: 24px;
    color: white;
}
.compare-band .compare-band-header {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.compare-band .compare-band-header > div .fa-chevron-up {
    /*transition: all 0.3s ease-in-out;*/
}
.compare-band.expanded .compare-band-header > div .fa-chevron-up {
    transform: rotate(-180deg);
}
.compare-band .compare-band-content {
    display: none;
    width: 100%;
    height: auto;
    padding: 0 20px;
}
.compare-band.expanded .compare-band-content {
    display: inline-block;
    padding-bottom: 8px;
}
.compare-band .compare-band-content > div {
    flex: 1;
}
.compare-band .compare-band-content .compare-item-pane {
    height: 64px;
    border: 1px dashed #FDF8F9;
    border-radius: 6px;
    margin-bottom: 8px;
    color: #A6A6A6;
    padding: 8px 16px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.compare-band .compare-band-content .compare-item-pane.filled {
    border: none;
    background-color: black;
    color: white;
    justify-content: space-between;
    gap: 16px;
}
.compare-band .compare-band-content .compare-item-pane.filled .brand-logo {
    width: 64px;
    height: 48px;
}
.compare-band .compare-band-content .compare-item-pane.filled .brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.compare-band .compare-band-content .compare-item-pane.filled .product-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex: 1;
    gap: 2px;
}
.compare-band .compare-band-content .compare-item-pane.filled .product-title span:first-of-type {
    font-weight: 400;
    font-size: 12px;
    line-height: 12px;
    letter-spacing: 0;
    color: #FDF8F9;
}
.compare-band .compare-band-content .compare-item-pane.filled .product-title span:last-of-type {
    font-weight: 400;
    font-size: 10px;
    line-height: 10px;
    letter-spacing: 0;
    color: #71717A;
}
.compare-band.p1,
.compare-band.p2,
.compare-band.p3,
.compare-band.p4 {
    transform: translateY(0);
}

.m-link,
.m-link.small {
    font-weight: 400;
    text-decoration: none;
    background-color: transparent;
    color: var(--primary-bordo);
    display: inline-flex;
    cursor: pointer;
    gap: 8px;
    align-items: center;
    justify-content: center;
    padding: 4px 16px;
    font-size: 12px;
    line-height: 24px;
    border-radius: 6px;
    min-height: 32px;
}
.m-link.beige,
.m-link.beige.small {
    color: var(--primary-beige);
}

.m-link.small > img {
    width: 16px;
    height: 16px;
}
.m-link.md {
    font-size: 14px;
    line-height: 24px;
    padding: 4px 16px;
    min-height: 40px;
}
.m-link.md > img {
    width: 20px;
    height: 20px;
}
.m-link.lg {
    font-size: 16px;
    line-height: 24px;
    padding: 10px 20px;
    min-height: 44px;
}
.m-link.lg > img {
    width: 24px;
    height: 24px;
}

.m-link:hover {
    background-color: var(--primary-black-60);
    color: white;
}
.m-link.white {
    color: white;
}
.m-link.black {
    color: black;
}

div.popup-info {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    height: auto;
    background-color: var(--primary-bordo-80);
    color: white;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0;
    z-index: 150;
    padding: 52px 30px 32px 30px;
    backdrop-filter: blur(60px);
    box-shadow: 0 12px 16px -4px #10182814, 0 4px 4px 0 #00000040;
    border-radius: 4px;
}
div.popup-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #40192a 30%, #803254 90%);
    z-index: -1;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: destination-out;
    border-radius: 6px;
    padding: 1px;
}
div.popup-info .popup-info-close img {
    position: absolute;
    top: 10px;
    right: 10px;
}

div.popup-info h2 {
    font-family: "Tenor Sans", sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0;
    color: #FDF8F9;
}
div.popup-info input[type="text"],
div.popup-info input[type="password"],
div.popup-info input[type="email"] {
    height: 40px;
}

div.popup-info p {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0;
    color: #BCBCBC;
    margin-top: 8px;
}
div.popup-info .actions {
    padding-top: 32px;
    text-align: center;
}
div.popup-info .m-button {
    min-width: 160px;
}

a.checkbox {
    display: inline-flex;
    padding-left: 28px;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-image: url(../images/checkbox-20-bordo.svg);
    text-decoration: none;
    color: var(--primary-bordo);
    font-weight: var(--font-semi-bold);
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
    align-items: center;
}
a.checkbox.checked {
    /*display: inline-block;*/
    padding-left: 28px;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-image: url(../images/checkbox-20-bordo-checked.svg);
}
a.checkbox.normal {
    font-weight: 300;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0;
}

a.checkbox.beige {
    background-image: url(../images/checkbox-20-beige.svg);
    color: var(--primary-beige);
}
a.checkbox.beige.checked {
    background-image: url(../images/checkbox-20-beige-checked.svg);
}

section.hero.compare {
    padding-top: calc(40px + 24px);
    padding-bottom: 24px;
}
section.hero.compare h1 {
    font-family: "Tenor Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: 0;
    text-align: center;
    color: black;
    margin-bottom: 24px;
}

section.hero.compare .gallery-current-filter-settings {
    position: static;
}

.compare-items-list .m-container {
    padding: 0 20px;
    display: flex;
    align-items: stretch;
    gap: 7px;
    flex-wrap: wrap;
}

.compare-items-list.p1 .compare-item {
    flex: 1;
}
.compare-items-list.p2 .compare-item,
.compare-items-list.p4 .compare-item {
    flex: 1 1 calc(50% - 7px);
}
.compare-items-list.p3 .compare-item:nth-child(1),
.compare-items-list.p3 .compare-item:nth-child(2)
{
    flex: 1 1 calc(50% - 7px);
}
.compare-items-list.p3 .compare-item:nth-child(3) {
    flex: 1;
}
/*
.compare-items-list .compare-item {
    flex: 1 1 100%;
}
.compare-items-list .m-container:has(.compare-item:nth-child(2)) > .compare-item {
    flex: 1 1 calc(50% - 7px);
}

.compare-items-list .m-container:has(.compare-item:nth-child(3)) > .compare-item:nth-child(-n+2) {
    flex: 1 1 calc(50% - 7px);
}
.compare-items-list .m-container:has(.compare-item:nth-child(3)) > .compare-item:nth-child(3) {
    flex: 1 1 100%;
}

.compare-items-list .m-container:has(.compare-item:nth-child(4)) > .compare-item {
    flex: 1 1 calc(50% - 7px);
}
 */

.compare-items-list .compare-item {
    width: 100%;
    padding: 8px;
    background-color: var(--primary-beige);
    border: 1px solid #F3F3F3;
}
.compare-items-list .compare-item .compare-item-image {
    width: 100%;
    height: 164px;
    margin-bottom: 16px;
    position: relative;
}
.compare-items-list .compare-item .compare-item-image .close.m-button {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px;
}
.compare-items-list .compare-item .compare-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.compare-items-list .compare-item .brand-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    letter-spacing: 0;
    color: #373737;
}
.compare-items-list .compare-item .brand-title > div {
    margin-bottom: 24px;
}
.compare-items-list .compare-item .brand-title .brand-logo {
    width: 64px;
    height: 48px;
}
.compare-items-list .compare-item .brand-title .brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.compare-items-list .compare-item .brand-title .product-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
}
.compare-items-list .compare-item .brand-title .brand {
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
}
.compare-items-list .compare-item .brand-title .title {
    font-weight: 400;
    font-size: 10px;
    line-height: 10px;
}
.compare-items-list .compare-item .brand-title .price {
    font-weight: 600;
    font-size: 10px;
    line-height: 12px;
}
.compare-items-list .compare-item .info-label {
    font-weight: 600;
    font-size: 12px;
    line-height: 12px;
    letter-spacing: 0;
    color: #373737;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin-bottom: 8px;
}

.compare-items-list .compare-item .info-value {
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
    letter-spacing: 0;
    color: #373737;
    word-break: break-word;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin-bottom: 24px;
}

.flex-start-start {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}

ul.compare-bullets {
    padding: 0 0 0 15px;
    font-weight: 400;
    font-size: 10px;
    line-height: 20px;
    letter-spacing: 0;
    color: #373737;
    list-style-position: inside;
}
ul.compare-bullets li {
    margin-left: -10px;
}

.hidden {
    display: none!important;
}

.compare-buttons .m-container {
    display: block;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 34px 20px;
    flex-direction: column;
}
.compare-buttons .m-container .m-button {
    width: 100%;
}

.login-register .hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('../images/login-background.jpeg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.dialog-box .fields a.checkbox {
    font-size: 12px;
    font-weight: normal;
}
.dialog-box .social-login {
    text-align: center;
    line-height: 12px;
}
.dialog-box .social-login .social-login-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 15px 0 24px;
}

.password-box {
    position: relative;
}
.password-box .eye-icon {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url('../images/icon-eye.svg') no-repeat center;
    background-size: contain;
    z-index: 2;
    display: inline-block;
}
.password-box .eye-icon.off {
    background-image: url('../images/icon-eye-off.svg');
}

.lr-16 {
    padding-left: 16px;
    padding-right: 16px;
}

.m-button.black.small.user-icon {
    width: 32px;
    height: 32px;
}
.m-button.black.small.user-icon img {
    width: 20px;
    height: 20px;
}
.user-avatar {
    width: 40px;
    height: 40px;
    position: relative;
    border-radius: 2px;
    background-color: white;
}
.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.user-avatar .avatar-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}
.user-menu .user-avatar .avatar-border {
    box-shadow: 0 0 15px 0 #00000012, 0 25px 50px -12px #00000040;
    backdrop-filter: blur(50px);
    mix-blend-mode: overlay;
}
div.user-menu-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}
.user-dropdown-icon {
    position: relative;
}
.user-dropdown-icon .user-dropdown-menu {
    position: absolute;
    top: 44px;
    right: -10px;
    width: fit-content;
    min-width: 200px;
    height: fit-content;
    padding: 10px 16px;
    display: none;
    background-color: var(--primary-black-80);
    color: var(--primary-beige);
    border-radius: 4px;
    box-shadow: 0 4px 6px -2px #10182808, 0 12px 16px -4px #10182814;
    /*backdrop-filter: blur(30px);*/
    /*mix-blend-mode: overlay;*/
    z-index: 100;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}
.user-dropdown-icon.mobile .user-dropdown-menu {
    top: 4px;
}
.user-dropdown-icon.open .user-dropdown-menu {
    display: inline-flex;
}

.user-dropdown-icon .user-dropdown-menu a {
    display: inline-flex;
    color: var(--primary-beige);
    text-decoration: none;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
    height: 40px;
    width: 100%;
}
.user-dropdown-icon .user-dropdown-menu a:hover {
    color: white;
}
.user-dropdown-icon .user-dropdown-menu a.separator {
    height: 3px;
}
.user-dropdown-icon .user-dropdown-menu a.separator hr {
    height: 1px;
    width: 100%;
    color: #4D4D4D;
    border-color: #4D4D4D;
}

div.spec-item {
    color: #BCBCBC;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;
    padding-left: 24px;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 16px 16px;
    background-image: url(../images/icon-spec-no.svg);
}
div.spec-item.yes {
    background-image: url(../images/icon-spec-yes.svg);
    color: #63ECB7;
}
.gap-8 {
    gap: 8px;
}

.close-btn {
    position: absolute;
    top: 8px;
    right: 16px;
    padding: 4px;
    display: inline-block;
    width: 16px;
    height: 16px;
}

section.hero.my-account {
    position: relative;
    padding-top: 48px;
    border-bottom: 1px solid #F3F3F3;
}
section.hero.my-account .m-container {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

section.hero.my-account.unloaded {
    height: 100svh;
}
section.hero.my-account.unloaded .m-container {
    height: 100%;
}

section.hero.my-account .info {
    flex: 1;
}
section.hero.my-account .avatar {
    width: 40px;
    height: 40px;
    position: relative;
    border-radius: 4px;
    background-color: white;
}
section.hero.my-account .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}
section.hero.my-account .avatar .avatar-border {
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}
section.hero.my-account .info {
    display: flex;
    flex-direction: column;
}
section.hero.my-account .info .nickname {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    vertical-align: middle;
    color: black;
}
section.hero.my-account .info .full_name {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;
    vertical-align: middle;
    color: #373737;
}
body.my-account {
    background-color: #ffffff;
}
section.hero.my-account .profile-edit .avatar {
    width: 88px;
    height: 88px;
}

section.hero.my-account .profile-edit .avatar a.m-button.small {
    position: absolute;
    width: 32px;
    height: 32px;
    right: -5px;
    bottom: -5px;
    padding: 8px;
}
.form-disclaimer {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;
    text-align: center;
    color: var(--primary-beige);
}
.city-search {
    position: relative;
}
.city-search > .search-icon {
    position: absolute;
    top: 70%;
    right: 12px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    z-index: 2;
}

.profile-edit {
    position: fixed;
    display: none;
    padding: 0;
    width: 100%;
    left: 0;
    top: 0;
    height: 100svh;
    z-index: 101;
    backdrop-filter: blur(60px);
    background-color: var(--primary-bordo-80);
}
.profile-edit form {
    flex: 1;
    overflow-y: auto;
}
.edit .profile-edit {
    display: flex;
    flex-direction: column;
}
.edit .profile-edit .m-container.field-list {
    flex: 1;
    overflow-y: auto;
    gap: 0;
}
.profile-edit .profile-edit-bar {
    background-color: var(--primary-black-80);
    color: white;
    padding: 16px 20px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.profile-edit .profile-edit-bar a img {
    width: 24px;
    height: 24px;
}

.profile-edit .m-container {
    display: flex;
    flex-direction: column;
}
.profile-edit .m-container .edit-row.first {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    gap: 16px;
}

.profile-edit .m-container .edit-row.first .avatar {
    width: 88px;
    height: 88px;
    position: relative;
}
.profile-edit .m-container .edit-row.first > .mb-3 {
    flex: 1;
}
.profile-edit .m-container .edit-row label {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;
    color: #FDF8F9;
    margin-bottom: 8px;
}
.profile-edit .m-container .edit-row,
.profile-edit .m-container .edit-row:not(.first) > .mb-3 {
    width: 100%;
}

.profile-edit .info-tip {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;
    vertical-align: middle;
    color: #A6A6A6;
    padding-top: 8px;
}
.profile-edit .info-tip svg rect {
    fill: #A6A6A6;
}
.profile-edit .m-container.edit-footer {
    background-color: var(--primary-bordo-80);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.profile-edit .buttons {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

section.hero.my-account .actions.d-md-none {
    position: relative;
}

.popup-info a {
    color: var(--primary-beige);
    text-decoration: none;
    font-weight: 600;
}
.popup-info a:hover {
    text-decoration: underline;
}
.popup-info label {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;
    color: var(--primary-beige);
    margin-bottom: 4px;
}

.my-account-content.menu {
    padding: 48px 0 32px 0;

}

.my-account-content .m-container {
    padding-left: 20px;
    padding-right: 20px;
}
.my-account-content.menu .m-container.tabs {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
    scrollbar-width: none;
    justify-content: flex-start;
}
.my-account-content.menu .m-container.tabs::-webkit-scrollbar {
    display: none; /* Nasconde la scrollbar in Chrome, Edge e Safari */
}
.my-account-content.menu .m-container.tabs .m-button {
    white-space: nowrap;
}
.my-account-content .m-container.tab-content {
    display: none;
}
.my-account-content .m-container.tab-content.active {
    display: block;
}

.favorite-item .m-button.link.tool {
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0;
}
.favorite-item .m-button.link.tool img {
    width: 16px;
    height: 16px;
}

.favorites-items {
    display: flex;
    width: 100%;
    gap: 10px;
}
.favorites-items .favorites-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.favorites-items .favorites-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 26px;
}
/* .favorites-items .favorites-column.column-2, */
.favorites-items .favorites-column.column-3,
.favorites-items .favorites-column.column-4 {
    display: none;
}

.favorites-items .favorites-column .favorite-item.product-card {
    border: 1px solid #F3F3F3;
    margin-bottom: 0;
    height: fit-content;
    position: relative;
}
.favorites-items .favorites-column .favorite-item.product-card .floating-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    border-radius: 4px;
    background-color: var(--primary-bordo);
    color: white;
}
.favorites-items .favorites-column .favorite-item.product-card .floating-remove img {
    width: 16px;
    height: 16px;
}
.favorites-items .favorites-column .favorite-item.product-card:hover {
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 10px 0 #0000001A, 0 4px 4px 0 #0000000D, 0 1px 0 0 #0000000D;
}

.favorites-items .favorites-column .favorite-item.product-card > a > img {
    width: 100%;
    height: auto;
}
.favorites-items .favorites-column .favorite-item.product-card .favorite-item-info {
    display: flex;
    padding: 8px 10px;
    align-items: center;
    justify-content: space-between;
    background-color: var(--primary-beige);
}
.favorites-items .favorites-column .favorite-item.product-card .favorite-item-info .brand-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.favorites-items .favorites-column .favorite-item.product-card .favorite-item-info .brand-name {
    color: black;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0;
    vertical-align: bottom;
}
.favorites-items .favorites-column .favorite-item.product-card .favorite-item-info .product-title {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;
    vertical-align: bottom;
    color: #4D4D4D;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;     /* Numero di righe da mostrare */
    overflow: hidden;
    text-overflow: ellipsis;

}
.profile-summary,
.notifications-summary {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;
    color: black;
}
.fav-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0 8px 0;
    flex-wrap: wrap;
}
.fav-toolbar .finder {
    flex-basis: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    margin-bottom: 16px;
}
.fav-toolbar .finder input {
    flex: 1;
    border: none;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0;
    border-left: 1px solid #646464;
    padding-left: 4px;
    outline: none;
}
.fav-toolbar div:not(.finder) {
    flex-basis: auto;
}
.my-account-content:not(.menu) {
    margin-bottom: 50px;
}

.miranda-dropdown {
    display: inline-flex;
    font-size: 16px;
    line-height: 20px;
    background-color: var(--primary-black);
    color: var(--primary-beige);
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 8px 8px 12px;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}
.miranda-dropdown img {
    width: 20px;
    height: 20px;
}
.miranda-dropdown .dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: fit-content;
    min-width: 100%;
    background-color: var(--primary-black);
    color: var(--primary-beige);
    border-radius: 4px;
    padding: 8px;
    display: none;
    z-index: 100;
    margin-top: 1px;
}
.miranda-dropdown.open .dropdown-content {
    display: block;
    z-index: 120;
}
.miranda-dropdown.open .dropdown-content a {
    text-decoration: none;
    display: inline-block;
    width: 100%;
    color: var(--primary-beige);
    text-align: left;
    padding: 4px 8px;
    border-radius: 4px;
}
.miranda-dropdown.open .dropdown-content a:hover {
    background-color: #343434;
}
.dialog-box.save-search {
    height: 90svh;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.dialog-box.save-search .filter-applied {
    flex: 1;
    overflow-y: auto;
}
.filter-applied {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 48px;
}
.filter-applied .section-title {
    color: #D3D3D3;
}

.tags-pane {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
}
.tags-pane .tag-item {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 12px;
    gap: 8px;
    font-weight: 600;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0;
    border-radius: 4px;
    color: white;
    background-color: var(--primary-black-60);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.tags-pane.light .tag-item {
    border-radius: 4px;
    background-color: var(--primary-beige);
    color: var(--primary-bordo);
}
.tags-pane.small .tag-item {
    height: 26px;
    padding: 4px 12px;
    font-weight: 600;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0;
}
.tags-pane .tag-item a {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url(../images/icon-close-white.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.color-circle {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid white;
}

.saved-search-item {
    border: 1px solid #E9E9E9;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}

.saved-search-item h2 {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0;
    vertical-align: bottom;
    color: black;
}

.saved-search-item .search-title {
    width: 100%;
}

.saved-search-item .search-image {
    margin-bottom: 16px;
}
.saved-search-item .search-image img {
    width: 100%;
    /*
    height: 100%;
    object-fit: contain;
    aspect-ratio: 303/200;

     */
    height: auto;
    box-shadow: 2px 2px 10px 0 #0000001A;
    border-radius: 4px;
}
.saved-search-item .search-data {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
}

.saved-search-item .search-data .tags-pane {
    margin-bottom: 16px;
}
.saved-search-item .search-data .tags-pane .color-circle {
    box-shadow: 0 10px 10px 0 #0000001A, 0 1px 0 0 #0000000D;
}
.saved-search-item .search-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
    width: 100%;
}
.saved-search-item .search-buttons .alert-pane {
    flex-basis: auto;
}
.gray-small-heading {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;
    color: #4D4D4D;
}

.main-loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    backdrop-filter: blur(5px);
    font-size: 18px;
    color: white;
    padding: 12px 18px;
    gap: 8px;
}

.hero.about-us .m-container {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 96px;
}
.hero.about-us .hero-content {
    margin-bottom: 48px;
}
.hero.about-us .hero-content .image {
    margin-bottom: 40px;
}
.hero.about-us .hero-content .image img {
    width: 100%;
    height: auto;
}
.hero.about-us .hero-content .text svg {
    height: 22px;
    width: auto;
}
.hero.about-us .hero-content .text h1 {
    font-family: "Tenor Sans", sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0;
    color: var(--primary-bordo);
    padding: 10px 0 16px 0;
}
.hero.about-us .hero-content .text p {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;
    color: #97918B;
}
section.values.m-container {
    margin: 0;
}
section.values .value {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
    padding: 16px;
    background-color: var(--primary-beige);
    border-radius: 4px;
    height: 230px;
    max-height: 230px;
}
section.values .value > div {
    order: 2;
}
section.values .value > img {
    order: 1;
    width: 72px;
    height: 72px;
    object-fit: cover;
    aspect-ratio: 1/1;
    border-radius: 4px;
}
section.values .value .title-text {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
section.values .value .title-text span:first-of-type {
    font-weight: 500;
    font-size: 14px;
    line-height: 38px;
    letter-spacing: 0;
    color: var(--primary-bordo);
}
section.values .value .title-text span:last-of-type {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;
    color: #909090;
}
body.page-about-us {
    background-color: white;
}
section.values {
    margin-bottom: 42px;
}

.double-visuals {
    margin-bottom: 60px;
}

.double-visuals .double-visuals-item {
    width: 100%;
    height: auto;
    position: relative;
}
.double-visuals .double-visuals-item img {
    width: 100%;
    height: auto;
}

.double-visuals .double-visuals-item .text {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(80px);
    color: #E9E9E9;
}
.double-visuals .double-visuals-item .text h2 {
    font-family: "Tenor Sans", sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0;
    color: var(--primary-beige);
}
.double-visuals .double-visuals-item .text p {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;
}

.people-say {
    margin-bottom: 48px;
}

.people-say .m-container {
    padding-left: 20px;
    padding-right: 20px;
}

.people-say h2 {
    font-family: "Tenor Sans", sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0;
    color: var(--primary-bordo);
    margin-bottom: 24px;
}

.people-say .swiper {
    display: block;
    width: 100%;
    height: 100%;
}

.people-say .swiper .swiper-wrapper {
    display: block;
    width: 100%;
    height: auto;
}
.people-say .swiper .swiper-wrapper .swiper-slide {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 16px;
    position: relative;
}

.people-say .swiper .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: auto;
}
.people-say .swiper .swiper-wrapper .swiper-slide .people-say-text {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    padding: 40px 20px;
    backdrop-filter: blur(90px);
    background-color: rgba(0, 0, 0, 0.1);
    color: #E9E9E9;
}

.people-say .swiper .swiper-wrapper .swiper-slide .people-say-text p {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;
}
.people-say .swiper .swiper-wrapper .swiper-slide .people-say-text span {
    display: inline-block;
    width: 100%;
    color: var(--primary-beige);
    letter-spacing: 0;
    font-weight: 500;
}
.people-say .swiper .swiper-wrapper .swiper-slide .people-say-text span.name {
    font-size: 20px;
    line-height: 38px;
}
.people-say .swiper .swiper-wrapper .swiper-slide .people-say-text span.title {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

section.team {
    margin-bottom: 64px;
}

section.team .m-container {
    padding-left: 20px;
    padding-right: 20px;
}
section.team .member-overlay {
    width: 100%;
    height: 260px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    position: relative;
    margin-bottom: 16px;
    overflow: hidden;
}
section.team .member-overlay .member-info {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    padding: 16px;
    background-color: #FDF8F966;
    backdrop-filter: blur(40px);
    color: var(--primary-beige);
    font-weight: 500;
    font-size: 12px;
    line-height: 12px;
    letter-spacing: 0;
}
section.team .member-overlay .member-info span {
    display: inline-block;
    width: 100%;
}
section.team .member-overlay .member-info span.title {
    font-size: 10px;
    line-height: 20px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
section.team h2 {
    font-family: "Tenor Sans", sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0;
    color: var(--primary-bordo);
    margin-bottom: 16px;
}
section.team p {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0;
    color: #97918B;
    margin-bottom: 32px;
}

section.faq {
    margin-bottom: 48px;
}
section.hero.faq .m-container {
    padding-top: 80px
}
section.hero.faq p {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;
    text-align: center;
    color: #646464;
}
section.faq .m-container {
    padding-left: 20px;
    padding-right: 20px;
}
.about-us-buttons {
    text-align: center;
    padding: 20px 0 68px 0;
}
section.faq.preview h2 {
    display: inline-block;
    width: 100%;
    text-align: center;
}
.faq h1,
.faq h2 {
    font-family: "Tenor Sans", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    color: var(--primary-bordo);
    margin-bottom: 16px;
    text-align: center;
}

.search-wrapper {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background-color: #000000CC;
    backdrop-filter: blur(100px);
    padding: 8px;
    border-radius: 4px;
}
.search-wrapper input {
    flex: 1;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0;
    background-color: transparent;
    border: none;
    outline: none;
    color: #F3F3F3;
}
.search-wrapper a {
    display: none;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0;
    vertical-align: middle;
    text-decoration: none;
    color: var(--primary-beige);
}
.search-wrapper.filled a {
    display: inline-flex;
}

body.faq {
    background-color: white;
}

.faq .faq-sections {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-bottom: 16px;
}
.faq .faq-sections .strip {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding: 16px;
    width: max-content;
}
.faq-contents {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 8px;
}
.faq-contents .faq-content {
    width: 100%;
    padding: 16px;
    border-radius: 4px;
    border: 1px solid #D3D3D3;
    display: none;
}
.faq-contents .faq-content h3 {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
    color: var(--primary-bordo);
    margin: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
}
.faq-contents .faq-content h3 img {
    transition: all 0.2s ease-in-out;
}
.faq-contents .faq-content.open {
    border-color: #EFCDC3;
    background-color: #FDF8F9;
}
.faq-contents .faq-content.open h3 img {
    transform: rotate(180deg);
}
.faq-contents .faq-content p {
    display: none;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;
    color: #646464;
    padding: 8px 0 0 0;
}
.faq-contents .faq-content.open p {
    display: block;
}

section.faq .faq-content p,
section.hero.faq .faq-content p {
    text-align: left;
    width: 100%;
}

.filter-box .content.title {
    height: auto;
    min-width: auto;
}
.filter-box .content.title label {
    font-size: 16px;
    display: inline-block;
    width: 100%;
}
.filter-box .content.title input[type="text"] {
    background-color: black;
    color: white;
    border: none;
    outline: none;
    padding: 16px;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0;
}

.save-alert-popup {
    position: fixed;
    display: none;
    width: 90svw;
    height: 80svh;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background-color: rgba(50, 8, 26, 0.9);
    border-radius: 4px;
    padding: 0;
    backdrop-filter: blur(90px);
    font-size: 12px;
    line-height: 16px;
    color: #ffffff;
    box-shadow: 0 12px 16px -4px #10182814, 0 4px 4px 0 #00000040;
    flex-direction: column;
}
.save-alert-popup.active {
    display: flex;
}
.save-alert-popup header {
    position: relative;
    padding: 48px 16px 0 16px;
}
.save-alert-popup header .close-popup {
    position: absolute;
    right: 10px;
    top: 10px;
}
.save-alert-popup header h2 {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0;
    padding: 0 0 8px 0;
    margin: 0;
}
.save-alert-popup header p {
    color: #BCBCBC;
    padding: 0;
    margin: 0;
}
.save-alert-popup .popup-content {
    flex: 1;
    overflow-y: auto;
    padding: 0 0 16px 16px;
}
.save-alert-popup .popup-content .alert-name-label {
    display: inline-block;
    width: 100%;
    margin-bottom: 4px;
}
.save-alert-popup .popup-content input[type="text"].m-form-control {
    width: calc(100% - 16px);
}
.save-alert-popup .popup-content .m-accordion {
    padding: 0 16px 0 4px;
    overflow-y: hidden;
    height: fit-content;
}
.save-alert-popup .popup-content .m-accordion .m-accordion-item {
    padding: 16px 0;
    position: relative;
    overflow-y: visible;
    height: fit-content;
}
.save-alert-popup .popup-content .m-accordion .m-accordion-item .separator {
    position: absolute;
    height: 1px;
    width: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, .9), rgba(255, 255, 255, .2));
    mix-blend-mode: overlay;
}
.save-alert-popup .m-accordion a {
    text-decoration: none;
    color: #ffffff;
}
.save-alert-popup .m-accordion .m-accordion-item .m-accordion-item-content .titles {
    display: flex;
    height: 32px;
    align-items: center;
    justify-content: space-between;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;
}
.save-alert-popup .m-accordion .m-accordion-item .m-accordion-item-content .option-item {
    margin-bottom: 32px;
}
.save-alert-popup .m-accordion .m-accordion-item .m-accordion-item-content .option-item.for-colors {
    display: inline-flex;
    height: auto;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
    padding-top: 16px;
}
.save-alert-popup .m-accordion .m-accordion-item .m-accordion-item-content .options .option-name {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;
    margin-bottom: 16px;
    color: #A6A6A6;
}
.save-alert-popup .m-accordion .m-accordion-item .m-accordion-item-content .option-value {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 16px;
}
.save-alert-popup .m-accordion .m-accordion-item .m-accordion-item-content .option-value label {
    color: #D3D3D3;
}

.save-alert-popup .tags {
    display: inline-flex;
    width: 100%;
    height: min-content;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 6px;
}
.save-alert-popup .tags:empty {
    display: none;
}
.save-alert-popup .tags .tag {
    position: relative;
    border-radius: 4px;
    z-index: 1;
    font-weight: 600;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0;
    color: var(--primary-beige);
    padding: 4px 10px;
    background-color: #00000099;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 10px 0 #0000001A, 0 4px 4px 0 #0000000D, 0 1px 0 0 #0000000D;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;

}
.save-alert-popup .tags .tag::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 4px;
    border: 1px solid transparent;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%) border-box;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
    mix-blend-mode: overlay;
}

.save-alert-popup .popup-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px;
}

.no-scroll {
    overflow: hidden;
    padding-right: 16px;
    height: 100svh;
}

.hero.blog.article {
    height: 100svh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0.011em;
}

.hero.blog.article .overlay {
    position: absolute;
    bottom: 0;
    height: auto;
    left: 0;
    width: 100%;
    padding: 32px 20px 16px 20px;
    background-color: #00000099;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--primary-beige);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    z-index: 10;
    gap: 50px;
}

.hero.blog.article h1 {
    font-family: "Tenor Sans", sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #EFCDC3;
    margin: 40px 0 16px 0;
}
.hero.blog.article .overlay p {
    text-align: center;
    padding: 0 26px;
    line-height: 20px;
    letter-spacing: 0;
}

.hero.blog.article .overlay .m-button,
.hero.blog.article .overlay .m-button.tool {
    height: 32px;
}
.hero.blog.article .overlay .m-button.tool {
    width: 32px;
}

article.blog .m-container {
    padding: 40px 20px 24px 20px;
}
article.blog h1,
article.blog h2 {
    font-family: "Tenor Sans", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    color: var(--primary-bordo);
    margin-bottom: 16px;
}
article.blog p {
    color: #373737;
}
article.blog blockquote {
    font-weight: 700;
    color: black;
    padding-left: 24px;
    border-left: 2px solid #7A7A7A;
}
article.blog .corpo {
    padding-bottom: 24px;
}
article.blog .author-sharing {
    padding: 32px 0;
}
article.blog .author-sharing a {
    text-decoration: none;
    color: inherit;
}
article.blog .sharing {
    gap: 40px;
}
.gradient-separator {
    width: 100%;
    height: 1px;
    background: radial-gradient(50% 50% at 50% 50%, #71717A 0%, rgba(255, 255, 255, 0) 100%);
}

.author {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}
.author .image {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    padding: 2px;
    background-image: linear-gradient(
            to top right,
            rgba(255, 255, 255, 0.1),  /* 10% bianco in basso a sinistra */
            rgba(255, 255, 255, 1)     /* 100% bianco in alto a destra */
    );
    box-shadow: 2px 2px 10px 0px #0000001A;
    overflow: hidden;
}
.author .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
}
.author .name-date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
}
.author .name-date .name {
    font-weight: 600;
    font-size: 12px;
}
.author .name-date .date {
    font-size: 12px;
    line-height: 16px;
    color: #7A7A7A;
}
.no-account {
    padding-top: 20px;
}
.no-account span {
    display: inline-block;
    width: 100%;
    font-size: 20px;
    padding-bottom: 16px;
}
.no-account .m-link.beige {
    font-size: 20px;
    width: 100%;
    background: rgba(0,0,0,0.3);
    padding: 8px 0;
}
.no-account .m-link.beige:hover {
    background: rgba(0,0,0,0.5);
}

.hero.blog.listing {
    width: 100%;
    overflow-x: hidden;
    height: 80svh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.hero.blog.listing .overlay {
    background-color: var(--primary-black-70);
    border-width: 1px 1px 0 1px;
    border-style: solid;
    border-image-source: linear-gradient(0deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), linear-gradient(45deg, rgba(255, 255, 255, 0) 33.33%, #FFFFFF 95%);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 57%;
    padding: 32px 20px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    z-index: 10;
    backdrop-filter: blur(60px);
    box-shadow: 0 12px 16px -4px #10182814, 0 4px 4px 0 #00000040;
}
.hero.blog.listing .overlay .h1 {
    width: 100%;
}
.hero.blog.listing .overlay h1 {
    font-family: "Tenor Sans", sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #EFCDC3;
    width: 100%;
}
.hero.blog.listing .overlay p {
    padding: 24px 16px 0 16px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
    text-align: center;
    color: var(--primary-beige);
    width: 100%;
}
input.search-text {
    height: 34px;
    width: auto;
    border-radius: 4px;
    border: none;
    background-color: var(--primary-black-80);
    background-image: url('../images/icon-search-white.svg');
    background-position: left 8px center;
    background-repeat: no-repeat;
    padding-left: 32px;
    padding-right: 8px;
    font-size: 12px;
    line-height: 16px;
    color: #A6A6A6;
    outline: none;
}
.hero.blog.listing .overlay h2 {
    font-family: "Tenor Sans", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: var(--primary-beige);
}

.blog.listing .blog-row {
    display: block;
}
.blog.listing .blog-row .blog-item {
    position: relative;
}
.blog.listing .blog-row .blog-item .blog-item-image,
.blog.listing .blog-row .blog-item .blog-item-image img {
    width: 100%;
    height: auto;
}
.blog.listing .blog-row .blog-item .blog-item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px 20px;
    height: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(100px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;
    color: #D3D3D3;
}
.blog.listing .blog-row .blog-item .blog-item-content .blog-item-category {
    color: #EFCDC3;
}
.blog.listing .blog-row .blog-item .blog-item-content h2 {
    font-family: "Tenor Sans", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    color: var(--primary-beige);
}
.blog.listing .blog-row .blog-item .blog-item-content a {
    text-decoration: none;
    color: var(--primary-beige);
}
.blog.listing .blog-row .blog-item .blog-item-content .author .image {
    background-image: linear-gradient(to top right, rgba(255, 255, 255, .1), rgba(255, 255, 255, .5));
}

.share-box .buttons-labels {
    margin-bottom: 10px;
    padding-top: 20px;
}
.share-box .link-copy > div {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 8px;
}

.swipable-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch; /* Per uno scrolling fluido su iOS */
    scroll-behavior: smooth; /* Per uno scrolling più gradevole */
    scrollbar-width: none; /* Nasconde scrollbar su Firefox */
    -ms-overflow-style: none; /* Nasconde scrollbar su IE/Edge */
}
/* Nasconde scrollbar su Chrome, Safari e Opera */
.swipable-container::-webkit-scrollbar {
    display: none;
}

section.hero.streets-of-fashion {
    width: 100%;
    height: 100svh;
    /*
    display: flex;
    flex-direction: column;
    */
}
section.hero.streets-of-fashion > .navigator {
    position: fixed;
    background-color: #32081ACC;
    backdrop-filter: blur(60px);
    box-shadow: 0 12px 16px -4px #10182814, 0 4px 4px 0 #00000040;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    padding: 66px 20px 20px 20px;
}
section.hero.streets-of-fashion > .navigator h1 {
    font-family: "Tenor Sans", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    color: var(--primary-beige);
    text-align: left;
    margin-bottom: 18px;
}
section.hero.streets-of-fashion .hero-content {
    flex: 1;
    display: block;
}

section.hero.streets-of-fashion > .navigator .item {
    padding: 8px 16px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    background-color: var(--primary-black-80);
}
section.hero.streets-of-fashion > .navigator .items-band {

}
section.hero.streets-of-fashion > .navigator .items-strip {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: nowrap;

}
section.hero.streets-of-fashion > .navigator .item {
    flex: 0 0 auto;
    cursor: pointer;
}
section.hero.streets-of-fashion > .navigator .item:hover {
    background-color: var(--primary-bordo-80);
}
section.hero.streets-of-fashion > .navigator .item div {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 2px;
}
section.hero.streets-of-fashion > .navigator .item h2 {
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;
    color: #BCBCBC;
    margin: 0;
    padding: 0;
}
section.hero.streets-of-fashion > .navigator .item span {
    font-weight: 400;
    font-size: 10px;
    line-height: 16px;
    letter-spacing: 0;
    text-align: center;
    display: inline-block;
    width: 100%;
    color: #A6A6A6;
}

section.hero.streets-of-fashion .hero-content {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}


section.hero.streets-of-fashion > .navigator .street-card {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 1px;
}
section.hero.streets-of-fashion > .navigator .street-card .item {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    padding: 8px;
    background-color: var(--primary-bordo);
}
section.hero.streets-of-fashion > .navigator .street-card .item-button {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    background-color: var(--primary-bordo-80);
    padding: 0 4px;
    color: white;
}
.radius-left {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.radius-right {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}
.radius-all {
    border-radius: 4px;
}
.surround-bordo {
    padding: 1px;
    background: linear-gradient(45deg, #40192a 30%, #803254 100%);
}
.surround-black {
    padding: 1px;
    background: linear-gradient(45deg, #121212 0%, #242424 100%);
}

.surround-white {
    padding: 1px;
    background: linear-gradient(45deg, #FFFFFF 0%, #FFFFFF 90%);
}

.streets-of-fashion.streets .hero-content {
    display: flex;
    align-items: flex-end;
    padding-bottom: 0; /*50px;*/
    padding-left: 0; /*20px;*/
    padding-right: 0; /*20px;*/
    position: relative;
}
.streets-of-fashion.streets .hero-content .swiper.swiper-thumbs {
    height: 64px;
    width: 100%;
    position: absolute;
    bottom: 50px;
    left: 20px;
    right: 20px;
}
.streets-of-fashion.streets .hero-content .swiper.swiper-full {
    z-index: 0;
    gap: 0;
}
.streets-of-fashion.streets .hero-content .swiper.swiper-full .swiper-wrapper {
    gap: 0;
}
.streets-of-fashion.streets .hero-content .swiper.swiper-full .swiper-slide {
    height: 100%;
    width: 100%;
}
.streets-of-fashion.streets .hero-content .swiper .swiper-slide {
    width: 84px;
    height: 52px;
}
.streets-of-fashion.streets .hero-content .swiper.swiper-thumbs .swiper-wrapper {
    gap: 8px;
}
.streets-of-fashion.streets .hero-content .swiper .swiper-slide > div {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    border: 2px solid rgba(255,255,255,.8);
    box-shadow: 2px 2px 10px 0 #0000001A;
    cursor: pointer;
    position: relative;
}
.streets-of-fashion.streets .hero-content .swiper .swiper-slide > div:hover .shop-name {
    opacity: 1;
}
.streets-of-fashion.streets .hero-content .swiper .swiper-slide > div .shop-name {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    background-color: rgba(255,255,255, .8);
    color: var(--primary-bordo);
    font-size: 12px;
    padding: 4px 8px;
    transition: opacity .3s ease-in-out;
}
.streets-of-fashion.streets .hero-content .swiper .swiper-slide > div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

section.hero.streets-of-fashion .hero-content {
    overflow: hidden;
}

section.hero.streets-of-fashion.shop,
section.hero.streets-of-fashion.streets {
    padding-top: 0;
}

section.hero.streets-of-fashion.shop > .navigator {
    background-color: transparent;
    backdrop-filter: none;
    box-shadow: none;
    z-index: 2;
}
section.hero.streets-of-fashion .swiper.swiper-full {
    width: 100%;
    height: 100svh;
}
section.hero.streets-of-fashion .swiper.swiper-full .swiper-slide {
    width: 100%;
}
section.hero.streets-of-fashion .swiper.swiper-full .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
section.hero.streets-of-fashion.shop .image-map-container {
    position: relative;
    width: 100%;
    height: 100%;
}
section.hero.streets-of-fashion.shop .image-spot {
    background: var(--primary-beige);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position:absolute;
    outline: 4px solid rgba(255,255,255,.1);
    animation: pulsa-outline 1.5s ease-in-out infinite;
    cursor: pointer;
}
@keyframes pulsa-outline {
    0% {
        outline-color: rgba(255, 255, 255, 0.1); /* Opacità iniziale 20% */
    }
    50% {
        outline-color: rgba(255, 255, 255, 0.5); /* Opacità massima 60% */
    }
    100% {
        outline-color: rgba(255, 255, 255, 0.1); /* Ritorno all'opacità iniziale */
    }
}

section.hero.streets-of-fashion.shop .swiper.swiper-thumbs {
    position: absolute;
    height: 48px;
    left: 20px;
    right: 20px;
    bottom: 64px;
}
section.hero.streets-of-fashion.shop .swiper.swiper-thumbs .swiper-slide {
    width: auto;
    height: 52px;
    cursor: pointer;
    position: relative;
    padding: 0;
}
section.hero.streets-of-fashion.shop .swiper.swiper-thumbs .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border: 2px solid rgba(255,255,255,.2);
    border-radius: 1px;
}
section.hero.streets-of-fashion.shop .swiper.swiper-thumbs .swiper-slide.swiper-slide-active img {
    border: 2px solid rgba(255,255,255,.5);
}
.dialog-box.dialog-street-filter {
    padding: 10px 12px;
    height: 85svh;
}
.dialog-box.dialog-street-filter h2 {
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0;
}
.dialog-box.dialog-street-filter .subtitle {
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    color: #ffffff;
    margin-bottom: 8px;
    margin-top: 24px;
}
.dialog-box.dialog-street-filter label.greyed {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;
    color: #BCBCBC;
}
.dialog-box.dialog-street-filter input[type="text"].m-form-control.search-input {
    border: none;
    height: 36px;
    font-size: 12px;
    line-height: 18px;
    padding-left: 26px;
    background: url('../images/icon-search-white.svg') no-repeat left center;
}
.dialog-box.dialog-street-filter .surround-bordo {
    padding: 1px;
}
.dialog-box.dialog-street-filter .flex-left-center {
    background-color: var(--primary-bordo   );
    border-radius: 4px;
    padding: 6px 10px;
}
.dialog-box.dialog-street-filter .brands-list .surround-bordo {
    margin-bottom: 8px;
}
.dialog-box.dialog-street-filter .brands-list .flex-left-center {
    gap: 16px;
}
.dialog-box.dialog-street-filter .flex-left-center.brand-item img {
    width: 64px;
    height: 48px;
    object-fit: cover;
}
.dialog-box.dialog-street-filter .flex-left-center.brand-item span {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;
    vertical-align: middle;
}

.dialog-box.dialog-street-filter .flex-left-center label {
    margin: 0;
}
.dialog-box.dialog-street-filter .categories-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}
span.shot-date {
    display: inline-block;
    padding: 4px 8px;
    background: rgba(0,0,0,.6);
    color: var(--primary-beige);
    position: absolute;
    left: 20px;
    top: 160px;
    font-size: 12px;
    border-radius: 4px;
    z-index: 1;
}

.map-overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.2);
    /* backdrop-filter: blur(40px); */
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
}
.map-overlay.active {
    display: flex;
}
.map-overlay .map-overlay-content {
    width: 95%;
    height: 80svh;
    position: relative;
    border-radius: 4px;
    backdrop-filter: blur(60px);
    box-shadow: 0 12px 16px -4px #10182814, 0 4px 4px 0 #00000040;
}

.map-overlay .map-overlay-content .m-button {
    position: absolute;
    right: -16px;
    top: -16px;
    z-index: 100;
}
.map-overlay .map-overlay-content iframe {
    border-radius: 4px;
}

section.streets-of-fashion .swiper-button-prev,
section.streets-of-fashion .swiper-button-next {
    width: 48px;
    top: auto;
    bottom: 24px;
}
section.streets-of-fashion .next-shop {
    position: absolute;
    bottom: 24px;
    right: 24px;
    z-index: 100;
    display: none;
}
section.streets-of-fashion .next-shop.active {
    display: flex;
}
section.streets-of-fashion .swiper-button-prev:after,
section.streets-of-fashion .swiper-button-next:after {
    display: none;
}
.click-close-up {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    z-index: 100;
}
.click-close-up a {
    height: 44px;
}
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    background-color: rgba(0,0,0,.3);
    z-index: 100;
    align-items: center;
    justify-content: center;
    display: none;
}
.dialog-box.lightbox {
    width: 95svw;
    height: 80svh;
    padding: 0;
}
.dialog-box.lightbox a.m-button {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    z-index: 100;
}
.dialog-box.lightbox .swiper {
    width: 100%;
    height: 100%;
}
.dialog-box.lightbox .swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.swiper-lightbox {
    z-index: 2;
}
.swiper-lightbox .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--primary-bordo);
    border: 1px solid rgba(255,255,255,.3);
}
.swiper-lightbox .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    border: 1px solid rgba(255,255,255,1);
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    display: none;
}

.adv {
    position: fixed;
    z-index: 50;
    width: 250px;
    height: 500px;
    top: 50%;
    right: calc(-250px + 48px);
    transform: translateY(-50%);
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    transition: right .2s ease-in-out;
    overflow: hidden;
    backdrop-filter: blur(60px);
    box-shadow: 0 12px 16px -4px #10182814, 0 4px 4px 0 #00000040;
}
.my-account .adv {
    display: none!important;
}
.adv.expanded {
    right: 0;
}
.adv > a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.adv .adv-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.9);
    z-index: 50;
    writing-mode: vertical-lr;       /* Orienta il testo verticalmente */
    transform: rotate(180deg);       /* Ruota di 180 gradi per renderlo dal basso verso l'alto */
    transform-origin: center center;
    color: var(--primary-beige);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    vertical-align: top;
    padding: 14px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.adv.expanded .adv-overlay {
    display: none;

}
.adv .close-adv {
    position: absolute;
    width: 32px;
    height: 32px;
    top: 8px;
    left: 8px;
    display: none;
}
.adv.expanded .close-adv {
    display: flex;
}
.adv .expand-adv {
    position: absolute;
    width: 32px;
    height: 32px;
    top: 8px;
    left: 8px;
    display: flex;
}
.adv.expanded .expand-adv {
    display: none;
}
.adv .close-adv img,
.adv .expand-adv img {
    width: 16px;
    height: 16px;
    z-index: 51;
}

.board-item {
    border-radius: 4px;
    border: 1px solid #F3F3F3;
    box-shadow: 2px 2px 10px 0px #32081A0D;
    width: 100%;
    height: 348px;
    overflow: hidden;
}
.board-item .board-images {
    display: flex;
    gap: 8px;
    height: 288px;
}
.board-item .board-images .big-image {
    width: calc(100% - 8px - 140px);
    height: 100%;
}
.board-item .board-images .big-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.board-item .board-images .small-images {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.board-item .board-images .small-images img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    object-position: center;
}
.board-item .board-info {
    height: 60px;
    width: 100%;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    line-height: 16px;
}
.board-item .board-info .name {
    font-size: 16px;
    color: black;
    line-height: 20px;
    font-weight: 500;
}
.board-item .board-info .date {
    color: #A6A6A6;
}
.board-item .board-info .title {
    display: flex;
    gap: 16px;
    align-items: center;
}
.board-item .board-info .n-products {
    font-weight: 400;
    font-size: 12px;
    color: #4D4D4D;
}

.board-item .board-info .buttons a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#board-selector-dialog .boards-names {
    max-height: 300px;
    overflow-y: auto;
}

#board-selector-dialog .boards-names .item {
    font-size: 16px;
    padding: 16px;
    line-height: 24px;
    font-weight: 500;
    cursor: pointer;
}
#board-selector-dialog .boards-names .item:hover {
    background: rgba(0,0,0,.6);
}

.street-message {
    position: absolute;
    color: var(--primary-beige);
    bottom: 130px;
    left: 24px;
}

section.product-info .product-name, section.product-info .gray-label
{
    color: #dcdcdc!important;
}

.change-street {
    display: inline-block;
    color: #dcdcdc;
    padding-top: 10px;
    text-decoration: none;
    font-size: 14px;
}
.change-street svg {
    width: 16px;
    height: 16px;
}

.notifications-items,
.alerts-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.notification-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border: 1px solid #E9E9E9;
    border-radius: 8px;
}
.notification-item .notification-image {
    width: 100%;
    height: 120px;
}
.notification-item .notification-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
}
.notification-item .notification-data h3 {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.notification-item .notification-data p {
    font-size: 12px;
    line-height: 16px;
    color: #A6A6A6;
}
.notification-item .notification-data {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #4D4D4D;
}
.notification-item .notification-status {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #A6A6A6;
}
.notification-item .notification-status.unread {
    background-color: var(--primary-bordo);
}
.notification-item .notification-buttons {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}
.notification-item .notification-data .date {
    color: #A6A6A6;
}
.collaborators {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

a.ghost-icon-button {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

a.ghost-icon-button img {
    width: 20px;
    height: 20px;
}

img.collab-avatar {    width: 40px;
    height: 40px;
    border-radius: 4px;
    border: 1px solid black;
}
img.collab-avatar:not(:first-child) {
    margin-left: -16px;
}
.collab,
.collab > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.collabs-list {
    height: auto;
    max-height: 300px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.collab .collab-image {
    width: 40px;
    height: 40px;
}
.collab .collab-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
    position: relative;
    border: 1px solid rgba(255,255,255,.8);
    box-sizing: border-box;
}
.collab .collab-data {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    line-height: normal;
}
.collab .full-name {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    margin: 0;
    padding: 0;
}
.collab .status {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;
}

.eu-min {
    font-size: 14px;
    color: #999;
    text-align: center;
    padding: 20px 20px;
}
.eu-min .logos {
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.eu-min .logos img {
    width: auto;
    height: 38px;
}

.slide-footer-image {
    position: absolute;
    bottom: 20px;
    left: 5.5vw;
    /*transform: translateX(-50%);*/
}

.adv-desktop {
    display: none !important;
}
.adv-mobile {
    display: revert !important;
}

.search-pane {
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    height: auto;
    padding: 20px;
    top: -200px;
    opacity: 0;
    background-color: var(--primary-black-80);
    border-radius: 4px;
    z-index: 100;
    color: var(--primary-beige);
    font-size: 13px;
    transition: all .3s ease-in-out;
}

.search-pane.active {
    top: 50px;
    opacity: 1;
}

.found-items {
    width: 100%;
    margin: 0 auto;
}
.found-items .found-item {
    display: flex;
    align-items: flex-start;
    justify-content: start;
    gap: 10px;
    cursor: pointer;
    border-radius: 4px;
    padding: 8px;
    border: 1px solid #efefef;
}
.found-items .found-item:hover {
    background: rgba(0,0,0,.1);
}
.found-items .found-item .found-item-image {
    width: 90px;
    height: 90px;
    border-radius: 4px;
    overflow: hidden;
}
.found-items .found-item .found-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.found-items .found-item .title {
    font-weight: bold;
}
.found-items .found-item .found-item-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}