@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&display=swap");

:root {
    --main_color: #928475;
    --main_text_color: #ffffff;
    --second_color: #d7ccbb;
    --second_text_color: #000000;
}

html,
body,
#root {
    margin: 0px;
    padding: 0px;
    height: 100%;
    width: 100%;
    font-family: Gotham, Montserrat, system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.material-symbols-outlined {
    font-variation-settings:
        "FILL" 0,
        "wght" 400,
        "GRAD" 0,
        "opsz" 30;
    font-display: swap;
}

p,
.btn {
    font-weight: 300;
    color: #000;
    font-size: 16px;
    transition: none;
}

strong {
    font-weight: 600 !important;
    color: #000;
}

/*h1,
h2,
h3,
h4,
h5,
h6,
h7 {
    font-family: "Playfair Display", Georgia, serif;
}*/

h1 {
    font-weight: 700 !important;
    color: #000;
    font-size: 36px !important;
}

h2 {
    font-weight: 600 !important;
    color: #000;
    font-size: 30px !important;
}

h4 {
    font-weight: 600 !important;
    color: #000;
    font-size: 24px !important;
}

.subtitle {
    font-weight: 500 !important;
    color: var(--main_color);
    text-transform: uppercase;
    font-family: Gotham, Montserrat, system-ui, sans-serif;
}

.vh-40 {
    height: 40vh !important;
}

.text-red {
    color: #e74c3c !important;
}

.discount_badge {
    background-color: #e74c3c !important;
    color: #fff !important;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.variants_badge {
    background-color: var(--main_color) !important;
    color: #fff !important;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.text-white,
.text-white * {
    color: #fff !important;
}

.primary-color,
.text-primary {
    color: var(--main_color) !important;
}

.text-secondary,
.secondary-color {
    color: var(--second_color);
}

.bg-primary {
    background-color: var(--main_color) !important;
    color: var(--main_text_color) !important;
}

.bg-secondary {
    background-color: var(--second_color) !important;
    color: var(--second_text_color) !important;
}

.border-primary {
    border-color: var(--main_color) !important;
    border-style: solid;
    border-width: 1px;
}

.border-secondary {
    border-color: var(--second_color) !important;
    border-style: solid;
    border-width: 1px;
}

.site-btn {
    background-color: var(--main_color);
    color: #fff;
    padding: 10px 20px;
    /*border-radius: 5px;*/
    text-decoration: none;
    border: 1px solid var(--main_color);
    transition: all 0.3s ease;
    cursor: pointer !important;
}

.site-btn:hover {
    background-color: #fff;
    color: var(--main_color);
}

.site-btn:disabled {
    pointer-events: none;
    background-color: #ccc !important;
    color: #999;
    border-color: #ccc !important;
    cursor: not-allowed !important;
}

.site-btn-full {
    display: block;
    width: 100%;
    text-align: center;
}

.site-btn-black {
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
}

.site-btn-black:hover {
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
}

.card-auth {
    max-width: 450px;
    margin: 50px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

form label {
    font-size: 14px;
    font-weight: 500;
}

input {
    outline: none;
    border: 1px solid #ccc;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

input:hover,
input:focus,
input:active {
    border-color: var(--main_color) !important;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--main_color) 30%, transparent) !important;
}

input::placeholder {
    font-size: 14px;
}

a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    cursor: pointer;
}

.icon-xs {
    font-size: 18px !important;
}

.input-group-text {
    cursor: pointer;
}

.pointer {
    cursor: pointer !important;
}

header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1030;
    width: 100%;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.page-home header {
    position: fixed;
}

section {
    margin-bottom: 10em;
}

.topbar {
    background-color: black;
    color: white;
    padding: 5px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

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

nav {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5em;
    transition: all 0.3s ease-in-out;
    height: 80px;
}

nav .logo {
    transition: all 0.3s ease-in-out;
    height: 60px;
}

.desktop.page-home:not(.scrolled) .logo {
    filter: invert(1);
}

.scrolled .navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    height: 60px;
    filter: none;
}

.scrolled .logo {
    height: 40px;
}

.scrolled .topbar {
    display: none;
}

nav .nav-item,
nav .nav-item .nav-link,
nav a,
nav button,
nav btn {
    color: black;
    font-size: 16px;
    font-weight: 600;
}

.desktop.page-home:not(.scrolled) nav .nav-item,
.desktop.page-home:not(.scrolled) nav .nav-item .nav-link,
.desktop.page-home:not(.scrolled) nav a,
.desktop.page-home:not(.scrolled) nav button {
    color: white;
}

nav .nav-item.active a,
nav .nav-item:hover a {
    color: var(--main_color) !important;
}

nav .navbar-nav {
    margin-left: 20px;
}

.dropdown-item {
    color: black !important;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--main_color);
    color: var(--main_text_color);
}

.profile {
    font-weight: 600;
}

.sep-menu {
    border-left: 2px solid black;
    display: block;
    height: 24px;
}

.desktop.page-home:not(.scrolled) .sep-menu {
    border-color: white;
}

.badge-cart {
    border-radius: 5px;
    height: 18px;
    font-size: 14px;
    line-height: 15px;
    text-align: center;
    padding: 2px 8px;
    margin-left: 10px;
    background: black !important;
    color: white !important;
}

.scrolled .badge-cart {
    background-color: var(--main_color);
    color: var(--main_text_color);
}

a:hover .badge-cart {
    background-color: var(--main_color) !important;
    color: var(--main_text_color) !important;
}

footer {
    background-color: var(--second_color);
    color: var(--second_text_color);
}

.hero100 {
    height: 100vh;
}

.hero {
    height: 100px;
    margin-bottom: 2em;
    position: relative;
    overflow: hidden;
}

.hero.has-image {
    height: 50vh;
}

.hero,
.hero100 {
    transition: all 0.3s ease-in-out;
    border-radius: 0px;
}

.hero picture {
    width: 100%;
    height: 100%;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::after {
    content: " ";
    background: linear-gradient(
        to right,
        rgba(215, 204, 187, 1) 0%,
        rgba(0, 0, 0, 0) 100%
    );
    z-index: 5;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero .hero-desc {
    z-index: 20;
    color: white;
    margin: 0 auto;
    position: relative;
    height: 100%;
    display: flex !important;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

.heroMarquee {
    position: absolute;
    bottom: 10px;
    width: 100%;
    overflow: hidden;
    z-index: 2;
    white-space: nowrap;
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
    padding: 5px 0;
}

.heroMarquee span {
    padding-right: 30px;
    font-size: 50px;
    font-weight: 300;
    color: #dddddd;
    text-transform: uppercase;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.heroMarquee span:before {
    content: "●";
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    font-size: 30px;
}

#hero .container {
    z-index: 2;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

.success-icon {
    display: inline-block;
    width: 8em;
    height: 8em;
    font-size: 15px;
    border-radius: 50%;
    border: 3px solid #4cc93f;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    transform-origin: center;
    animation: scaleIn 180ms ease-in-out;
    transform: scale(1);
}

.success-icon__tip,
.success-icon__long {
    display: block;
    position: absolute;
    height: 3px;
    border-radius: 10px;
    background-color: #4cc93f;
}

.success-icon__tip {
    width: 2.4em;
    top: 4.3em;
    left: 1.4em;
    transform: rotate(45deg);
    animation: tipInPlace 300ms ease-in-out;
    animation-fill-mode: forwards;
    animation-delay: 180ms;
    visibility: hidden;
}

.success-icon__long {
    width: 3em;
    transform: rotate(-45deg);
    top: 3.7em;
    left: 2.75em;
    animation: longInPlace 140ms ease-in-out;
    animation-fill-mode: forwards;
    visibility: hidden;
    animation-delay: calc(300ms + 140ms);
}

.error-icon {
    display: inline-block;
    width: 8em;
    height: 8em;
    font-size: 15px;
    border-radius: 50%;
    border: 3px solid #e74c3c;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    transform-origin: center;
    animation: scaleIn 180ms ease-in-out;
    transform: scale(1);
}

.error-icon__line {
    display: block;
    position: absolute;
    height: 3px !important;
    width: 60px !important;
    background: #e74c3c;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) rotate(45deg);
    animation: longInPlace 140ms ease-in-out;
    animation-fill-mode: forwards;
    visibility: hidden;
    animation-delay: calc(300ms + 140ms);
    transform-origin: center;
}

.error-icon__line2 {
    display: block;
    position: absolute;
    height: 3px !important;
    width: 60px !important;
    background: #e74c3c;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) rotate(-45deg);
    animation: longInPlace 140ms ease-in-out;
    animation-fill-mode: forwards;
    visibility: hidden;
    animation-delay: calc(300ms + 140ms);
    transform-origin: center;
}

.font-inherit {
    font-size: inherit !important;
}

.loadingSpinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--main_color);
}

.loadingSpinner:before {
    content: " ";
    position: absolute;
    z-index: -1;
    top: 0px;
    left: 0px;
    background-color: #e5e7eb;
    opacity: 0.95;
    width: 100%;
    height: 100%;
    display: block;
}

.selected {
    border: 2px solid var(--main_color) !important;
}

.shop-cart .table table {
    width: 100%;
}

.shop-cart .table thead {
    border-bottom: 1px solid #f2f2f2;
}

.shop-cart .table thead th {
    font-size: 16px;
    color: #111111;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 20px;
}

.shop-cart .table tbody tr {
    border-bottom: 1px solid #f2f2f2;
}

.shop-cart .table tbody tr td {
    padding: 30px 10px;
}

.rigaCompatta {
    padding: 10px !important;
    padding-left: 50px !important;
}

.mobile .shop-cart .table tbody tr td {
    padding: 5px;
}

.shop-cart .table tbody tr .cart__product__item {
    overflow: hidden;
}

.shop-cart .table tbody tr .cart__product__item img {
    margin-right: 25px;
    width: 60px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 15px;
}

.shop-cart .table tbody tr .cart__product__item .cart__product__item__title {
    overflow: hidden;
}

.shop-cart .table tbody tr .cart__product__item .cart__product__item__title h6 {
    color: #111111;
    font-weight: 600;
}

.shop-cart
    .table
    tbody
    tr
    .cart__product__item
    .cart__product__item__title
    .rating
    i {
    font-size: 10px;
    color: #e3c01c;
    margin-right: -4px;
}

.shop-cart .table tbody tr .cart__price {
    font-size: 16px;
    color: var(--main_color);
    font-weight: 600;
    width: 190px;
}

.shop-cart .table tbody tr .cart__quantity {
    width: 190px;
    padding-right: 30px;
}

.shop-cart .table tbody tr .cart__quantity .quantity {
    border: none;
    padding: 0;
    width: 100px;
    border-radius: 0;
}

.shop-cart .table tbody tr .cart__quantity #qta {
    width: 60px;
}

.shop-cart .table tbody tr .cart__total {
    font-size: 16px;
    color: var(--main_color);
    font-weight: 600;
    width: 150px;
}

.shop-cart .table tbody tr .cart__close {
    text-align: right;
}

.shop-cart .table tbody tr .cart__close span {
    height: 45px;
    width: 45px;
    background: #f2f2f2;
    border-radius: 50%;
    font-size: 18px;
    line-height: 44px;
    text-align: center;
    display: inline-block;
    cursor: pointer;
}

.total_card,
.discount_box {
    background: #f5f5f5;
    padding: 40px;
    border-radius: 30px;
}

.total_card h6,
.discount_box h6 {
    color: #111111;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.total_card ul {
    margin-bottom: 20px;
}

.total_card ul li {
    list-style: none;
    font-size: 16px;
    color: #111111;
    font-weight: 600;
    overflow: hidden;
    line-height: 40px;
}

.total_card ul li span {
    color: var(--main_color);
}

.total_card ul li span.val {
    float: right;
}

.total_card .primary-btn,
.discount_box .primary-btn {
    display: block;
    border-radius: 50px;
    text-align: center;
    padding: 12px 0 10px;
}

.quantity {
    display: flex;
    align-items: center;
    padding: 5px 0;
    border-radius: 30px;
}

.quantity .increment,
.quantity .decrement,
.quantity .remove {
    background: white;
    color: var(--second_color);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border: 1px solid var(--second_color);
}

.quantity .increment:hover,
.quantity .decrement:hover,
.quantity .remove:hover {
    background: var(--main_color);
    color: var(--main_text_color);
}

.quantity input {
    border: 0px;
    text-align: center;
    padding-left: 0px;
    padding-right: 0px;
    font-size: 16px !important;
    width: 60px;
    border: 1px solid var(--second_color);
}

.quantity input:disabled {
    background-color: transparent !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

input,
select,
textarea {
    font-size: 15px !important;
}

.form-label {
    margin-bottom: 0px !important;
}

.checkout h5,
.modUserForm h5,
.modPassForm h5 {
    font-size: 18px;
    color: #111111;
    font-weight: 600;
    margin-bottom: 10px;
}

.checkout__order__product {
    border-top: 1px solid #d7d7d7;
    border-bottom: 1px solid #d7d7d7;
    padding-top: 20px;
}

.checkout__order__product ul li {
    list-style: none;
    font-size: 14px;
    color: #444444;
    font-weight: 500;
    overflow: hidden;
    line-height: 18px;
    margin-bottom: 10px;
}

.checkout__order__product ul li:last-child {
    margin-bottom: 0;
}

.checkout__order__product ul li span {
    font-size: 14px;
    color: #444444;
    float: right;
}

.checkout__order__product ul li .top__text {
    font-size: 16px;
    color: #111111;
    font-weight: 600;
    float: left;
}

.checkout__order__product ul li .top__text__right {
    font-size: 16px;
    color: #111111;
    font-weight: 600;
    float: right;
}

.checkout__order__total {
    padding-top: 20px;
    border-bottom: 1px solid #d7d7d7;
    margin-bottom: 25px;
}

.checkout__order__total ul li {
    list-style: none;
    font-size: 14px;
    color: #111111;
    font-weight: 600;
    overflow: hidden;
    line-height: 22px;
}

.checkout__order__total ul li.total {
    font-size: 18px;
    line-height: 45px;
}

.checkout__order__total ul li span {
    color: var(--main_color);
    float: right;
}

.cardSede {
    cursor: pointer;
    border: 1px solid #ddd;
    border-radius: 1rem;
    text-align: center;
    padding: 10px;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.__form__checkbox {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.__form__checkbox .form-check-input {
    height: 20px;
    width: 20px;
}

.__form__checkbox .form-check-label {
    margin-bottom: 5px;
}

.form-check-input:checked[type="checkbox"],
.form-check-input:checked[type="radio"] {
    background-color: var(--main_color) !important;
}

.form-check-input[type="checkbox"]:not(:checked) {
    background-color: #eeeeee !important;
}

.card-ordini {
    border: 1px solid #ddd;
    border-radius: 1rem;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.card-ordini:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-ordini h2 {
    margin: -1.25em;
    padding: 1.25em;
    font-weight: 600;
}

.card-ordini.stato1 h2 {
    background-color: #fed7aa !important; /* orange-200 */
    color: #f97316; /* orange-500 */
}
.card-ordini.stato2 h2 {
    background-color: #fef9c3 !important; /* yellow-200 */
    color: #ca8a04; /* yellow-600 */
}
.card-ordini.stato3 h2 {
    background-color: #bae6fd !important; /* sky-200 */
    color: #0284c7; /* sky-600 */
}
.card-ordini.stato4 h2 {
    background-color: #bbf7d0 !important; /* green-200 */
    color: #059669; /* green-600 */
}
.card-ordini.stato90 h2 {
    background-color: #e2e8f0 !important; /* slate-200 */
    color: #64748b; /* slate-500 */
}
.card-ordini.stato100 h2 {
    background-color: #fff !important; /* white */
    color: #9ca3af; /* gray-400 */
}

.hover-size {
    overflow: hidden;
    width: 100%;
    background: url(/immagini/300x300/placeholder.jpg) center center no-repeat;
    background-size: contain;
}

.hover-size img {
    transform: scale(1.08);
    transition: all 0.3s ease-in-out;
}

.hover-size:hover img {
    transform: scale(1.1);
}

.carousel-hover img {
    opacity: 0;
    transition: all 0.3s ease-in-out;
    position: absolute;
    top: 0px;
    left: 0px;
}

.carousel-hover img.active {
    opacity: 1;
    position: relative;
}

.square {
    aspect-ratio: 1;
}

.portrait {
    aspect-ratio: 4 / 5;
}

.card {
    overflow: hidden;
}

.desktop .hover-focus {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    transform: translateY(0px);
}

.desktop .hover-focus:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
    border-color: transparent;
}

.desktop .scroll-fade > div {
    opacity: 0;
    visibility: hidden;
    transform: none;
    transition:
        opacity 0.6s ease-out,
        transform 1.2s ease-out;
    will-change: opacity, visibility;
}

/* bottom to top*/
.desktop .scroll-fade.fade-bt > div {
    transform: translateY(20vh);
}

.desktop .scroll-fade > .reached {
    opacity: 1;
    transform: none !important;
    visibility: visible;
}

.needReload {
    position: relative;
}

.needReload:before {
    content: " ";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: block;
    background-color: #f2f2f2;
    user-select: none;
    pointer-events: none;
    opacity: 0.7;
}

.sede_main_bookmark {
    position: absolute;
    top: 0px;
    right: 10px;
    font-size: 24px;
    color: var(--main_color);
}

.sede_default_bookmark {
    position: absolute;
    top: 0px;
    right: 10px;
    font-size: 24px;
    color: var(--main_color);
}

.not-valid {
    border-color: red !important;
}

.navbar-brand img {
    max-height: 60px;
}

.font-4xl {
    font-size: 2rem !important;
}

.hover-shadow {
    transition: box-shadow 0.3s ease-in-out;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.hover-shadow:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.mb-10 {
    margin-bottom: 10rem !important;
}

.slick-prev,
.slick-next {
    width: 50px;
    color: transparent;
    opacity: 0.5;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    z-index: 100;
}

.slick-prev {
    left: 0;
}

.slick-next {
    right: 0;
}

.slick-prev:hover,
.slick-next:hover {
    opacity: 1;
}

.slick-prev:before,
.slick-next:before {
    width: 50px;
    height: 50px;
    background: var(--main_color);
    font-family: "Material Symbols Outlined";
    content: "arrow_forward_ios";
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 30px;
    font-weight: 100;
    line-height: initial;
}

.slick-prev:before {
    content: "arrow_back_ios";
}

.slick-slide {
    margin: 0 27px;
}

.slick-list {
    margin: 0 -27px;
}

.check-list-item {
    position: relative;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 16px;
}

.check-list-item:last-of-type {
    border-bottom: none;
}

.check-list-item:before {
    content: "check_circle_outline";
    font-family: "Material Symbols Outlined";
    color: var(--main_color);
    font-size: 20px;
}

.bg-lightgray {
    background-color: #f7f7f7 !important;
}

.hover-main-color:hover {
    color: var(--main_color) !important;
}

.desktop .scroll-fade > div {
    opacity: 0;
    visibility: hidden;
    transform: none;
    transition:
        opacity 0.6s ease-out,
        transform 1.2s ease-out;
    will-change: opacity, visibility;
}

/* bottom to top*/
.desktop .scroll-fade.fade-bt > div {
    transform: translateY(20vh);
}

.desktop .scroll-fade > .reached {
    opacity: 1;
    transform: none !important;
    visibility: visible;
}

.brand-card {
    background: var(--second_color);
    color: var(--second_text_color);
    font-size: 2em;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.brand-card span {
    position: relative;
    z-index: 10;
}

.brand-card img {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
    position: absolute;
    z-index: 1;
    opacity: 0.5;
    filter: overlay;
    max-width: 300px;
}

.brand-card:hover {
    background: var(--main_color);
    color: var(--main_text_color);
    transition: all 0.3s ease-in-out;
}

.brand-card:hover img {
    display: block;
}

/*---------------------
  Breadcrumb
-----------------------*/

.hero .breadcrumbs * {
    color: var(--second_text_color) !important;
}

.breadcrumb__links .icon {
    padding-right: 5px;
    color: var(--main_color);
    font-size: 14px;
}

.breadcrumb__links {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: nowrap;
    width: 100%;
    overflow: auto;
}

.breadcrumb__links a {
    font-size: 14px;
    display: flex;
    align-items: center;
    text-decoration: none !important;
    white-space: nowrap;
}

.breadcrumb__links span {
    font-size: 14px;
    display: inline-block;
    white-space: nowrap;
}

.product_images .cover {
    width: 100%;
    overflow: hidden;
    /*border-radius: 30px;
    border: 1px solid #374143;*/
    position: relative;
}

.product_images .cover video,
.video_card video {
    display: none;
}

.product_images .cover img,
.product_images .cover video {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    object-position: center;
    aspect-ratio: 1;
}

.product_images .cover button {
    position: absolute;
    left: 20px;
    top: 20px;
    padding: 0px;
    line-height: initial;
    width: 42px;
    height: 42px;
}

.product_images .image_card.active,
.product_images .video_card.active {
    opacity: 1;
}

.product_images .image_card,
.product_images .video_card {
    /*border-radius: 10px;
    border: 1px solid #374143;*/
    opacity: 0.8;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    display: block;
    cursor: pointer;
}

.product_images .video_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product_images .image_card:hover,
.product_images .video_card:hover {
    opacity: 1;
}

.product_images .image_card img,
.product_images .video_card video,
.product_images .image_card a {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.product_video video {
    aspect-ratio: 16/9;
    margin-top: 30px;
}

.product-card h5 {
    text-overflow: ellipsis;
    width: 100%;
    text-wrap: nowrap;
    overflow: hidden;
}

.product-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.layer-youtube {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.layer-youtube button {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
}

.prodotto h1 {
    font-size: 30px;
    font-weight: 600;
}

.prodotto .variants {
    margin-top: 10px;
}

.prodotto .variants-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.prodotto .variants a {
    border: 1px solid var(--second_color);
    border-radius: 20px;
    padding: 6px;
    padding-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease-in-out;
}

.prodotto .variants a:hover,
.prodotto .variants a.active {
    background-color: var(--second_color);
    color: var(--second_text_color);
}

.prodotto .variants img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    aspect-ratio: 1;
    border-radius: 15px;
}

.prodotto .price {
    font-size: 22px;
}

.prodotto .price small {
    font-size: 12px;
}

.prodotto .discount_badge {
    font-size: 12px !important;
}

.prodotto .quantity input {
    height: 60px;
    border-left: 0px;
    border-right: 0px;
    z-index: 10;
}

.prodotto .quantity .increment,
.prodotto .quantity .decrement,
.prodotto .quantity .remove {
    height: 60px;
    line-height: 60px;
    width: 60px;
    text-align: center;
}

.carousel-item {
    text-align: center;
    /* max-height: 500px; */
    height: 100%;
}

.slider_product_images img {
    width: 500px !important;
    height: auto !important;
    object-fit: contain;
    object-position: center !important;
}

.badge-status {
    padding: 2px 10px;
    width: auto;
    text-align: center;
    text-transform: uppercase;
    text-wrap: nowrap;
    display: block;
    max-width: 180px;
    font-size: 11px;
    margin-top: 15px;
}

.badge-status.green {
    background-color: #d1fae5;
    color: #2b4b00;
    border: 1px solid #2b4b00;
}
.badge-status.orange {
    background-color: #fbe0b8;
    color: #ff8800;
    border: 1px solid #ff8800;
}

.badge-status.red {
    background-color: #ffc9c9 !important;
    color: #d00000;
    border: 1px solid #d00000 !important;
}

.form_info {
    margin-top: 120px;
    background-color: #ebebea;
    padding: 80px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.form_info h2 {
    font-size: 30px;
    font-weight: 500;
    color: var(--main_color);
    margin-bottom: 50px;
}

.form_info form {
    max-width: 750px;
    width: 100%;
    font-size: 15px !important;
}

.form_info form input,
.form_info form textarea,
.form_info form input:focus {
    background-color: #fff !important;
    border: 1px solid var(--main_color) !important;
    margin-top: 10px;
    height: 45px;
}

.form_info form textarea {
    height: 100px;
}

.form-check-input:checked[type="checkbox"],
.form-check-input:checked[type="radio"] {
    background-color: var(--main_color) !important;
}

.form-check-input[type="checkbox"]:not(:checked) {
    background-color: #eeeeee !important;
}

.form_info form input[type="checkbox"] {
    height: 20px;
    width: 20px;
    margin-top: 0px;
}

.collapse.show {
    visibility: visible !important;
}

.products-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
}

.products-grid > div {
    width: 25%;
    max-width: 300px;
}

.timeline-content {
    margin: 10px;
    box-sizing: border-box;
    width: calc(25% - 20px) !important;
}

.valori-content {
    margin: 10px;
    box-sizing: border-box;
    width: calc(33% - 20px) !important;
}

.founder-quote {
    max-width: 800px;
    margin: 48px auto 64px;
    padding: 44px 52px;
    position: relative;
    border-left: 4px solid gold;
}
.founder-quote::before {
    content: "\201C";
    font-size: 6rem;
    color: gold;
    opacity: 0.25;
    position: absolute;
    top: -10px;
    left: 20px;
    line-height: 1;
}
.founder-quote blockquote {
    font-size: 1.12rem;
    font-style: italic;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}
.founder-quote cite {
    display: block;
    margin-top: 20px;
    font-size: 0.85rem;
    font-style: normal;
    font-weight: 600;
    color: gold;
    letter-spacing: 0.04em;
}

/* Pagination */
.pagination__option a {
    display: inline-block;
    height: 40px;
    width: 40px;
    border: 1px solid #f2f2f2;
    border-radius: 50%;
    font-size: 14px;
    color: #111111;
    font-weight: 600;
    line-height: 40px;
    text-align: center;
    -webkit-transition: all, 0.3s;
    -o-transition: all, 0.3s;
    transition: all, 0.3s;
    margin-right: 6px;
}

.pagination__option a.active {
    background-color: var(--main_color);
    color: #fff !important;
}

.pagination__option a:last-child {
    margin-right: 0;
}

.pagination__option a i {
    font-weight: 600;
}

.pagination__option a:hover {
    background: #0d0d0d;
    border-color: #0d0d0d;
    color: #ffffff;
}

.pagination__option a.disabled,
.pagination__option a.disabled:hover {
    background-color: #f2f2f2;
    border-color: #f2f2f2;
    color: #fff;
    cursor: not-allowed;
}

/* Animations */

.pulse {
    animation: pulseAnim 1.5s infinite;
}

.swipercd * {
    user-select: none !important;
}

@keyframes pulseAnim {
    0% {
        box-shadow: 0 0 0 0 rgba(146, 132, 117, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(146, 132, 117, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(146, 132, 117, 0);
    }
}

.success {
    background-color: #d1fae5;
    padding: 20px 10px;
    border-radius: 10px;
    color: #2b4b00;
    text-align: center;
}

.error {
    background-color: #f8d7da;
    padding: 20px 10px;
    border-radius: 10px;
    color: #842029;
    text-align: center;
}

.marchi-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0px;
    gap: 20px;
}

.marchio-wrapper {
    background: rgba(215, 204, 187, 1);
    padding: 3em;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
    display: flex;
    box-sizing: border-box;
    width: calc(50% - 6em);
    gap: 3em;
    align-items: start;
}

.marchio-wrapper img {
    border-radius: 20px;
    margin-bottom: 20px;
    aspect-ratio: 1;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

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

.whatsapp-icon {
    width: 60px;
    height: 60px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 1000;
}

.whatsapp-icon img {
    width: 35px;
    height: 35px;
}

.whatsapp-tooltip {
    display: none;
    position: absolute;
    bottom: 60px;
    right: 0;
    background-color: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    line-height: initial;
}

.whatsapp-icon:hover .whatsapp-tooltip {
    display: block;
}

.whatsapp-chat {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 350px;
    max-width: 90%;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    font-family: "Helvetica Neue", Arial, sans-serif;
    overflow: hidden;
}

.whatsapp-chat h6 {
    background-color: #008069;
    color: white;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px;
}

.whatsapp-chat .whatsapp-close-chat {
    font-size: 20px;
    cursor: pointer;
    color: #ffffffaa;
}

.whatsapp-chat .chat-body {
    padding: 15px;
    background-color: #efeae2;
    flex: 1;
    overflow-y: auto;
}

.whatsapp-chat .message {
    background-color: white;
    padding: 10px;
    border-radius: 7.5px;
    max-width: 75%;
    font-size: 14px;
    line-height: initial;
}

.whatsapp-chat .chat-footer {
    padding: 10px;
    background-color: #f0f2f5;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.whatsapp-chat input[type="text"] {
    width: calc(100% - 40px);
    padding: 10px;
    border: none !important;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    background-color: #fff;
    outline: none;
    margin: 0px !important;
}

.whatsapp-chat button {
    color: #54656f;
    padding: 10px;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    outline: none;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

@keyframes tipInPlace {
    from {
        width: 0em;
        top: 0em;
        left: -1.6em;
    }

    to {
        width: 2.4em;
        top: 4.3em;
        left: 1.4em;
        visibility: visible;
    }
}

@keyframes longInPlace {
    from {
        width: 0em;
        top: 5.1em;
        left: 3.2em;
    }

    to {
        width: 4em;
        top: 3.7em;
        left: 2.75em;
        visibility: visible;
    }
}

/* SLIDER HOME */
.home_slider h1 {
    line-height: 1.2;
}

.home_slider .slide {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
    margin: 0px;
}

.home_slider .content {
    padding: 60px;
    line-height: normal;
    position: absolute;
    bottom: 1em;
    left: 1em;
    z-index: 100;
    background: rgba(255, 255, 255, 0.8);
}

.home_slider .image {
    width: 100%;
    height: 100%;
    background: var(--second_color);
}

.home_slider img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.lh-1-2 p {
    line-height: 1.2;
}

.accordion-item {
    margin-bottom: 10px;
}

.accordion-item .icon {
    margin-right: 10px;
    font-size: 30px;
}

@media only screen and (max-width: 900px) {
    .w-3\/5,
    .w-1\/4 {
        width: 100% !important;
    }

    .row {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .products-grid > div {
        width: 50%;
        max-width: 300px;
    }

    .offcanvas {
        width: 80vw !important;
        height: 100vh !important;
        transform: initial !important;
    }

    .offcanvas .btn-close {
        position: absolute;
        right: 20px;
        top: 20px;
    }

    .offcanvas .navbar-nav {
        margin-left: 0px;
    }

    .badge-cart {
        margin-left: 5px;
    }

    .topbar > div {
        display: flex;
        flex-direction: column;
    }

    .brand-card {
        font-size: 1em;
    }

    .slick-list {
        margin: initial;
    }

    section {
        margin-bottom: 3em;
    }

    .timeline-content,
    .valori-content {
        width: 100% !important;
        margin-bottom: 30px !important ;
    }

    .marchio-wrapper {
        padding: 20px 10px;
        width: 100%;
        flex-direction: column;
        margin: 1.5rem !important;
    }

    .heroMarquee span {
        font-size: 30px;
    }

    .heroMarquee span:before {
        font-size: 15px;
    }

    .prodotto h1 {
        font-size: 25px !important;
    }

    form .col-md-6 {
        padding: 0px;
    }

    .home_slider .slide {
        position: relative;
    }

    .home_slider .content {
        left: initial;
        padding: 30px;
        bottom: 0px;
        padding-bottom: 50px;
    }

    .home_slider h2 {
        font-size: 25px !important;
        line-height: 28px !important;
    }

    .home_slider p {
        font-size: 16px !important;
        line-height: 18px !important;
    }

    .shop-cart .table tbody tr .cart__product__item {
        line-height: initial;
    }

    .shop-cart .table tbody tr .cart__product__item img {
        margin-right: 10px;
    }

    .shop-cart
        .table
        tbody
        tr
        .cart__product__item
        .cart__product__item__title
        span {
        display: block;
        margin: 0px;
        line-height: initial;
    }

    .shop-cart .table tbody tr .cart__product__item.rigaCompatta {
        padding-left: 10px !important;
    }

    .product-card * {
        font-size: 14px !important;
    }

    .products-grid {
        display: block !important;
    }

    .products-grid .product-card {
        display: flex;
        justify-content: space-between;
        flex-direction: row;
        width: 100%;
        box-sizing: border-box;
    }

    .products-grid > div {
        display: block;
        width: 100%;
        max-width: initial;
    }

    .products-grid .square {
        width: 30%;
    }

    .products-grid .p-3 {
        width: 70%;
    }

    .discount_badge,
    .variants_badge {
        font-size: 12px !important;
    }
}

@media (min-width: 768px) {
    .w-md-auto {
        width: auto !important;
    }
}
