/* General classes */
:root {
    --gray-900: #212121;
    --gray-800: #424242;
    --gray-700: #616161;
    --gray-600: #757575;
    --gray-500: #9e9e9e;
    --gray-400: #bdbdbd;
    --gray-350: #d9d9d9;
    --gray-300: #e0e0e0;
    --gray-200: #eeeeee;
    --gray-100: #f5f5f5;
    --gray-50: #fafafa;
    --white: #ffffff;
    --black: #000000;
    --primary-color: #e30404;
    --orange-color: #ff6400;
    --green-color: #37b853;
    --green-dark-color: #1d723f;
}

main {
    overflow-x: hidden;
}

.custom-alert {
    background-color: var(--primary-color);
    color: var(--white);
    position: fixed;
    bottom: 40px;
    right: 60px;
}

.custom-alert.alert-dismissible .btn-close {
    top: 12px;
}

.custom-alert .btn-close {
    --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
}

.custom-alert .btn-close:focus {
    outline: 0;
    box-shadow: none;
}

.custom-alert p {
    font-size: 15px;
    font-weight: 400;
}

.alert-content {
    padding-right: 30px;
}

.container-large {
    padding: 0px 70px;
    margin-right: 0px;
    margin-left: 0px;
}

@media (max-width: 992px) {
    .container-large {
        padding: 0px 20px;
    }
}

.container-medium {
    width: 1400px;
}

.container-small {
    width: 1100px;
}

.container-smaller {
    width: 800px;
}

/* Rating stars */
.rating-group {
    display: inline-flex;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.rating__icon {
    pointer-events: none;
}

.rating__input {
    position: absolute !important;
    left: -9999px !important;
}

.rating__label {
    cursor: pointer;
    padding: 0 0.1em;
    font-size: 2.2rem !important;
}

.rating__icon--star {
    color: var(--primary-color);
    transition: all 0.2s ease-in-out;
}

.rating__icon--none {
    color: var(--gray-500);
    transition: all 0.2s ease-in-out;
}

.rating__input:checked~.rating__label .rating__icon--star {
    color: var(--gray-500);
    transition: all 0.2s ease-in-out;
}

.rating-group:hover .rating__label .rating__icon--star {
    color: var(--primary-color);
}

.rating__input:hover~.rating__label .rating__icon--star {
    color: var(--gray-500);
}

.rating-group:hover .rating__input--none:not(:hover)+.rating__label .rating__icon--none {
    color: var(--gray-500);
}

/* End rating stars */

body {
    font-family: "Helvetica", sans-serif;
    letter-spacing: 0.35px;
    overflow-x: hidden;
}

body h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Helvetica", sans-serif !important;
}

* {
    box-sizing: border-box;
    margin: 0;
}

.container-large {
    max-width: 100%;
}

.primary-color {
    color: var(--primary-color);
}

.black {
    color: var(--black);
}

.gray-500 {
    color: var(--gray-500);
}

/* Buttons */
.back-button {
    border-radius: 5px;
    padding: 4px 12px;
    background: var(--gray-800);
}

.back-button i {
    font-size: 12px;
    color: var(--white);
    font-weight: 900;
}

.white-button {
    background-color: var(--white);
    color: var(--black);
    text-decoration: none;
    border-radius: 5px;
    border: none;
    padding: 10px 16px;
    transition: all 0.2s ease-in-out;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    display: block;
}

.custom-card-button {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 10px 18px;
    font-size: 20px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.custom-card-button:hover {
    background-color: var(--white) !important;
    color: var(--black) !important;
}

.white-button:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.primary-button {
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    border: 2px solid var(--primary-color);
    padding: 14px 30px;
    transition: all 0.2s ease-in-out;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.primary-button:hover {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
}

.primary-button-outline {
    background-color: transparent;
    color: var(--primary-color);
    box-shadow: 0px 0px 0px 1.2px var(--primary-color) inset;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    padding: 14px 30px;
    transition: all 0.2s ease-in-out;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.primary-button-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.green-button {
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    border: none;
    padding: 14px 30px;
    transition: all 0.2s ease-in-out;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.green-button:hover {
    box-shadow: 0px 0px 0px 1.2px var(--primary-color) inset;
    background: transparent;
    color: var(--primary-color);
}

.green-button-outline {
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    border: none;
    padding: 14px 30px;
    transition: all 0.2s ease-in-out;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.green-button-outline:hover {
    background: transparent;
    box-shadow: 0px 0px 0px 1.2px var(--primary-color) inset;
    color: var(--primary-color);
}

.orange-button-outline,
.red-button-outline {
    background-color: transparent;
    color: var(--orange-color);
    text-decoration: none;
    border-radius: 5px;
    border: 2px solid var(--orange-color);
    padding: 14px 30px;
    transition: all 0.2s ease-in-out;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orange-button-outline:hover {
    background-color: var(--orange-color);
    color: var(--white);
}

.red-button-outline {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.red-button-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.secondary-button {
    background-color: transparent;
    color: var(--black);
    text-decoration: none;
    border-radius: 5px;
    border: none;
    box-shadow: 0px 0px 0px 1.2px var(--primary-color) inset;
    padding: 14px 30px;
    transition: all 0.2s ease-in-out;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.secondary-button:hover {
    background: var(--primary-color);
    color: var(--white);
}

.black-button-outline {
    background-color: transparent;
    color: var(--black);
    box-shadow: 0px 0px 0px 1.2px var(--black) inset;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    padding: 14px 30px;
    transition: all 0.2s ease-in-out;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.black-button-outline:hover {
    background: var(--black);
    color: var(--white);
}

/* Header */

.header-navbar {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.logged-user button {
    font-size: 13px;
    color: var(--black);
    font-weight: 400;
    background: transparent;
    border: none;
    padding: 0;

    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    position: relative;
}

.header-search-mobile,
.navbar-nav hr {
    display: none;
}

.dropdown-arrow {
    display: inline-block;
    margin-left: 5px;
    width: 10px;
    height: 10px;
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMSIgaGVpZ2h0PSI2IiB2aWV3Qm94PSIwIDAgMTEgNiIgZmlsbD0ibm9uZSI+PHBhdGggZD0iTTEwIDVMNS41IDFMMSA1IiBzdHJva2U9IiNBQzFFNEYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PC9zdmc+") no-repeat center;
    background-size: 8px 8px;
    transition: transform 0.2s ease;
}

.rotate {
    transform: rotate(180deg);
}

.logged-user .dropdown-toggle::after {
    content: none;
}

.logged-user .dropdown-item {
    font-size: 16px;
    color: var(--black);
    font-weight: 400;
    padding: 10px 20px;
}

.logged-user .dropdown-menu {
    --bs-dropdown-min-width: 14rem;
    left: -80px;
}

.logged-user hr {
    margin: 6px 0;
}

.logged-user .dropdown-item.active,
.logged-user .dropdown-item:active {
    background-color: var(--gray-300);
}

.welcome {
    font-size: 13px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 0;
}

.logged-user .custom-dropdown-item {
    font-weight: 300;
    color: var(--black);
}

.header-bar {
    background-color: var(--primary-color);
    font-size: 14px;
    color: var(--white);
    font-weight: 400;
    padding: 10px 0;
}

.header-bar span {
    font-weight: 700;
}

.nav-link {
    color: var(--black);
    font-size: 14px;
    font-weight: 700;
}

.header-content-mobile {
    display: none;
}

.navbar .navbar-toggler {
    border: none;
    padding-inline: 0;
    color: var(--black);
}

.navbar .navbar-toggler:focus {
    box-shadow: none;
}

.navbar {
    padding: 13px 0;
    box-shadow: 0px 4px 15px 1px rgba(0, 0, 0, 0.04);
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    gap: 48px;
    /* ajuste conforme necessário */
}

.navbar-nav .nav-item {
    margin-right: 0;
}

.navbar-nav hr {
    display: none;
}

.navbar img {
    width: 100%;
    height: 100%;
    max-width: 80%;
}

.header-login a {
    font-size: 14px;
    color: var(--black);
    font-weight: 700;
    text-decoration: none;
}

.header-login span {
    font-size: 13px;
    color: var (--black);
    font-weight: 400;
}

.bag-shopping {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-login i,
.bag-shopping i {
    height: fit-content;
    color: var(--black);
    font-size: 25px;
    padding-right: 12px;
}

.search-header input {
    padding-right: 40px;
    border: 1px solid var(--black);
    opacity: 1;
    color: var(--black);
    height: 46px;
}

.search-header.expanded .search-input {
    font-size: 14px;
    width: 100%;
    max-width: 100%;
    opacity: 1;
    padding: 5px 10px;
    margin-left: 8px;
    padding-right: 40px;
}

.search-button {
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;

    i {
        color: var(--black) !important;
    }
}

.search-input {
    width: 0;
    max-width: 0;
    transition: all 0.3s ease;
    opacity: 0;
    border: 1px solid var(--gray-600);
}

.right-side-header.active .search-header {
    width: 100%;
}

.right-side-content {
    gap: 46px;
    width: 100%;
}

.right-side-header.active {
    width: 50%;
}

.right-side-header.active .search-header i {
    right: 32px;
}

.right-side-header {
    gap: 46px;
    width: 45%;
    justify-content: flex-end;
}

@media (max-width: 992px) {
    .right-side-header {
        width: 100%;
    }
}

.search-header input:focus {
    box-shadow: none;
    border: 1px solid var(--gray-600);
}

.search-header {
    position: relative;
    transition: all 0.3s ease-in-out;
    width: 48%;
    justify-content: end;
}

.search-header i {
    position: absolute;
    right: 18px;
    top: 14px;
    font-size: 18px;
    color: var(--gray-600);
    cursor: pointer;
}

.bag-shopping-count {
    background-color: var(--primary-color);
    font-size: 10px;
    border: 2px solid var(--white);
    border-radius: 50%;
    color: var(--white);
    position: absolute;
    left: 70%;
    top: -6px;
    transform: translateX(-50%);
    padding: 2px 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

@media (min-width: 1280px) {
    .bag-shopping-count {
        top: -13px;
    }
}

.bag-shopping {
    text-decoration: none;
    position: relative;
}

/* Footer */
.footer-social a {
    background-color: var(--primary-color);
    width: 40px;
    height: 40px;
    padding: 5px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s ease-in-out;
}

.footer-social a:hover {
    transform: scale(1.05);
}

.footer-social i {
    color: var(--white);
    font-size: 26px;
}

.footer-head {
    background-color: #232323;
    padding-top: 50px;
    padding-bottom: 80px;
}

.footer-bottom {
    background-color: #232323;
    padding-top: 10px;
    padding-bottom: 10px;
}

.footer-bottom p {
    font-size: 12px;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    color: var(--white);
}

.footer-body {
    background-color: var(--white);
    padding-top: 30px;
    padding-bottom: 30px;
}

.footer-body img {
    min-height: 46px;
    max-height: 46px;
}

.footer-links h4 {
    font-size: 20px;
    font-weight: 600;
    font-family: Lora;
    margin-bottom: 30px;
    color: var(--white);
}

.footer-links a:not(.footer-social a),
.footer-links p {
    font-size: 16px;
    color: var(--white);
    text-decoration: none;
    font-weight: 300;
    margin-bottom: 20px;
    transition: color 0.2s ease-in-out;
    width: fit-content;
}

.footer-links a:not(.footer-social a):hover {
    color: var(--gray-400);
}

.footer-body p {
    font-size: 16px;
    color: var(--black);
    font-weight: 300;
    margin-bottom: 10px;
}

/* Home */
#legalAge h2 {
    font-size: 36px;
    color: var(--black);
    font-weight: 600;
    margin-bottom: 0;
}

#legalAge .modal-footer {
    border-top: 0;
    justify-content: center;
    gap: 16px;
    padding: 35px;
    padding-top: 0;
}

#legalAge .modal-body {
    padding: 35px;
    padding-bottom: 25px;
}

#legalAge .primary-button {
    width: 30%;
}

#legalAge .secondary-button {
    width: 30%;
}

#legalAge .modal-lg {
    --bs-modal-width: 600px;
}

.banner-home h1 {
    font-family: "Helvetica";
    font-size: 48px;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 48px;
}

@media (max-width: 992px) {
    .banner-home h1 {
        line-height: 3rem;
    }
}

.banner-home p {
    font-size: 24px;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 12px;
}

.banner-home {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: start;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.16) 21.63%,
            rgba(0, 0, 0, 0.52) 69.23%,
            rgba(0, 0, 0, 0.75) 100%);
    padding: 200px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.banner-home .green-button {
    width: fit-content;
    padding: 10px 80px;
}

@media (max-width: 760px) {
    .banner-home {
        text-align: center;

        .green-button {
            margin: auto;
        }

        .col {
            display: flex;
            flex-direction: column;
        }
    }
}

.swiperCategories a {
    text-decoration: none;
}

.swiperCategories {
    padding-top: 120px;
    padding-bottom: 160px;
}

@media (max-width: 992px) {
    .swiperCategories {
        padding-top: 80px;
        padding-bottom: 100px;
    }
}

.card-container {
    position: relative;
    width: 100%;
    aspect-ratio: 0.8 / 1;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

@media (max-width: 992px) {
    .card-container {
        height: 500px;
    }
}

.categories-text {
    color: var(--white);
}

.card-container:hover .white-button {
    background-color: var(--primary-color);
    color: var(--white);
}

.categories-text h2 {
    font-family: Lora;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 0;
}

.categories-text p {
    font-size: 14px;
    font-weight: 500;
}

.card-container .card-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    z-index: 99;
    top: 0%;
    left: 0%;
}

.card-container .black-overlay {
    z-index: 99;
}

.card-container img {
    transition: all 0.3s ease-in-out;
    width: 100%;
    object-fit: cover;
    height: 100%;
}

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

.categories-data {
    position: relative;
    width: 100%;
    padding: 48px 25px 25px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.6));
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.categories-title {
    font-size: 24px;
    color: var(--color-white);
    font-weight: 600;
    padding-right: 10px;
}

.categories-description {
    font-size: 14px;
    color: var(--gray-300);
    font-weight: 300;
    padding-right: 20px;
    margin-bottom: 0;

    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.categories-content {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card {
    border: 1px solid var(--gray-300);
}

.product-card-data-hide-desktop {
    display: none;
}

.product-card a {
    text-decoration: none;
}

.price {
    font-size: 18px;
    color: var(--black);
    margin-bottom: 0;
    font-weight: 600;
}

.old-price {
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 300;
    margin-bottom: 2px;
    text-decoration-line: line-through;
}

.product-card .card-title {
    font-family: Lora;
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;

    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.price-credit {
    font-size: 12px;
    color: var(--black);
    font-weight: 300;
    margin-bottom: 15px;
}

.product-card .card-img-top {
    padding: 36px 50px 20px 50px;
}

.more-sales-products h2 {
    font-family: Lora;
    font-size: 48px;
    color: var(--black);
    font-weight: 600;
    margin-bottom: 25px;
}

.more-sales-products {
    margin-bottom: 160px;
}

@media (max-width: 992px) {
    .more-sales-products {
        margin-bottom: 90px;
    }
}

.swiper-button-next-2,
.swiper-button-next-4,
.swiper-button-prev-2,
.swiper-button-prev-4 {
    color: var(--white);
    background-color: var(--gray-800);
    padding: 10px 14px;
    width: 35px;
    height: 35px;
    border-radius: 5px;

    position: absolute;
}

.swiper-button-next-2,
.swiper-button-next-4 {
    right: -26px;
}

.swiper-button-prev-2,
.swiper-button-prev-4 {
    left: -34px;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-prev:after {
    content: "";
}

.home-first-card h2,
.home-second-card h2 {
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 30px;
}

.home-first-card div:first-child,
.home-second-card div:first-child {
    padding: 50px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

@media (max-width: 992px) {
    .cards-home {
        margin-bottom: 90px;
    }
}

.home-first-card .primary-button,
.home-second-card .primary-button {
    width: fit-content;
    padding: 10px 60px;
}

.home-first-card h2 {
    color: var(--white);
}

.home-second-card h2 {
    color: var(--white);
}

.home-first-card span {
    font-weight: 700;
}

@media (max-width: 700px) {
    .home-first-card {
        aspect-ratio: 16/8;
    }
}

@media (max-width: 992px) {
    .home-first-card {
        aspect-ratio: 16/7;
    }
}

/* .home-first-card {
    height: 300px;
}


@media (max-width: 992px) {
    .home-first-card {
        height: 180px;
    }
} */

.InfoBannerSwiper {
    .swiper-slide {
        min-height: 92px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.highlightProductSwiper img {
    width: 100%;
    max-width: 400px;
}

.highlightProductSwiper .swiper-slide {
    text-align: center;
}

.highlightProductSwiper .swiper-button-next-3,
.highlightProductSwiper .swiper-button-prev-3 {
    color: var(--gray-500);
    font-size: 20px;
}

.highlightProductSwiper .swiper-button-next-3 {
    right: 50px;
}

.highlightProductSwiper .swiper-button-prev-3 {
    left: 50px;
}

.highlight-product {
    margin-bottom: 140px;
    margin-right: 0;
    padding-right: 0;
}

.highlight-product-bg {
    min-height: 580px;
    background-color: var(--gray-200);
    padding: 80px;
    padding-right: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 5px;
}

.highlight-section-title {
    font-family: Helvetica;
    font-size: 48px;
    color: var(--black);
    font-weight: 600;
    margin-bottom: 36px;
}

.highlight-title {
    font-family: Helvetica;
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.highlight-description {
    font-size: 18px;
    color: var(--black);
    font-weight: 400;
    margin-bottom: 14px;
}

.highlight-ref {
    font-size: 14px;
    color: var(--black);
    font-weight: 300;
    margin-bottom: 20px;
}

.highlight-product-bg .green-button-outline {
    width: fit-content;
    margin-top: 50px;
}

.highlight-product-bg .orange-button-outline {
    width: fit-content;
    margin-top: 50px;
}

.highlight-product-price {
    font-size: 32px;
    color: var(--black);
    margin-bottom: 0;
    font-weight: 700;
}

.highlight-product-old-price {
    font-size: 18px;
    color: var(--gray-400);
    font-weight: 400;
    margin-bottom: 2px;
    text-decoration-line: line-through;
}

.highlight-product-link {
    display: flex;
    text-decoration: none;
    flex-direction: column;
}

.club-card {
    background-color: rgba(227, 4, 4, 0.7);
    /* #E30404 com transparência */
    padding: 40px;
    color: var(--white);
    max-width: 700px;
    width: 100%;
    border-radius: 5px;
}

.club-card h2 {
    font-family: Helvetica;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 45px;
}

.club-card-banner {
    margin-bottom: 100px;
}

.club-card ul {
    list-style: none;
    padding-left: 0;
}

.club-card li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}

.club-card i {
    font-size: 30px;
}

.club-card .item-text {
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 0;
}

.club-card span {
    font-size: 20px;
    font-weight: 700;
}

.club-card small {
    font-size: 14px;
}

.extra-msg {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 35px;
}

.club-card-bg {
    display: flex;
    justify-content: end;
    background-size: cover;
    padding: 60px 90px;
    border-radius: 5px;
}

.club-card-bg .primary-button {
    border-color: var(--white);
    background: transparent;
    color: var(--white);
}

.club-card-bg .primary-button:hover {
    background: white;
    color: var(--primary-color);
}

.recommended-products h2 {
    font-family: Lora;
    font-size: 48px;
    color: var(--black);
    font-weight: 600;
    margin-bottom: 25px;
}

.recommended-products {
    margin-bottom: 160px;
}

.product-badge {
    font-size: 12px;
    border: 2px solid var(--primary-color);
    background-color: transparent;
    font-weight: 700;
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 5px;
    width: fit-content;
    position: absolute;
    right: 10px;
    top: 10px;
}

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

.home-video img {
    width: 100%;
    height: 100%;
    max-height: 640px;
    object-fit: cover;
    border-radius: 5px;
}

.home-video h3 {
    font-weight: 400 !important;
}

.video-loading-background {
    background: var(--black);
}

.custom-video-modal .modal-body {
    padding: 0;
}

.custom-video-modal .modal-header {
    border: none;
    padding: 0;
}

.custom-video-modal .modal-content {
    background: transparent;
    border: none;
}

.custom-video-modal .modal-header button {
    border: none;
    background: transparent;
    color: var(--white);
}

.custom-btn {
    background: var(--primary-color);
    font-size: 36px;
    font-weight: 700;
    border: none;
    color: var(--white);
    padding: 12px 50px;
    border-radius: 5px;
    transition: all 0.2s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.home-video-container {
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.play-button {
    position: absolute;
    background-color: rgba(227, 4, 4, 0.5);
    width: 90px;
    height: 90px;
}

@media (max-width: 992px) {
    .play-button {
        width: unset;
        height: unset;
    }

    .custom-btn {
        font-size: 18px;
        padding: 16px 20px;
    }
}

.video-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-content h2 {
    font-family: Helvetica;
    font-size: 42px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 23px;
}

.video-content h3 {
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 800;
}

.video-content p {
    font-size: 18px;
    margin-bottom: 23px;
    font-weight: 400;
}

.video-content {
    padding: 0 170px;
}

.video-content .primary-button {
    width: fit-content;
    padding: 14px 60px;
}

/* Error */
.error h1 {
    font-size: 64px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.error {
    margin-top: 60px;
    margin-bottom: 160px;
}

.error .primary-button {
    width: 30%;
    padding-top: 14px;
    padding-bottom: 14px;
}

.error h2 {
    font-size: 24px;
    color: var(--black);
    font-weight: 300;
    margin-bottom: 35px;
    text-align: center;
}

.error img {
    width: 100%;
    max-width: 500px;
    margin-bottom: 45px;
}

/* About */
.about h1 {
    font-size: 36px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 23px;
}

.about p {
    font-size: 16px;
    color: var(--black);
    font-weight: 400;
    margin-bottom: 135px;
}

.about img {
    width: 100%;
    height: 100%;
    max-height: 700px;
    object-fit: cover;
}

.about {
    margin-top: 50px;
    margin-bottom: 170px;
}

.about-content {
    padding: 0 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content .green-button {
    width: fit-content;
    padding: 14px 90px;
}

.know-our-team {
    margin-bottom: 200px;
}

.know-our-team img {
    width: 100%;
    max-height: 550px;
    object-fit: cover;
}

.know-our-team-content {
    border: 1px solid var(--gray-300);
    padding: 55px;
    border-radius: 5px;
}

.know-our-team-content h2 {
    font-size: 36px;
    color: var(--black);
    margin-bottom: 20px;
    font-weight: 700;
}

.know-our-team-content p {
    font-size: 16px;
    color: var(--black);
    font-weight: 400;
    margin-bottom: 0;
}

.know-our-team-text {
    padding: 0 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.video-container img {
    width: 100%;
    aspect-ratio: 16/9;
    max-height: 700px;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
}

#ytVideo {
    width: 100%;
    max-height: 700px;
    aspect-ratio: 16/9;
    border-radius: 5px;
}

.about-video {
    margin-bottom: 170px;
}

.about-video p {
    margin-top: 52px;
    font-size: 16px;
    color: var(--black);
    font-weight: 400;
}

.video-container-content {
    padding: 0 100px;
}

.video-container-content .green-button {
    padding: 14px 80px;
    margin-top: 40px;
}

/* BrotherHood */
.brotherhood-content {
    padding: 0 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brotherhood-content .green-button {
    width: fit-content;
    padding: 14px 90px;
}

.brotherhood h1 {
    font-size: 36px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 23px;
}

.brotherhood p {
    font-size: 16px;
    color: var(--black);
    font-weight: 400;
    margin-bottom: 55px;
}

.brotherhood img {
    width: 100%;
    max-height: 700px;
    object-fit: cover;
}

.brotherhood {
    margin-top: 50px;
    margin-bottom: 170px;
}

.about-video .green-button {
    width: fit-content;
}

#accordionQuestions .accordion-button:not(.collapsed),
#accordionFilters .accordion-button:not(.collapsed) {
    background: var(--color-white);
    color: var(--color-black);
    box-shadow: none;
}

#accordionQuestions .accordion-body {
    color: var(--gray-600);
    padding-top: 0;
    padding-left: 0;
    padding-right: 30px;
    font-size: 14px;
}

#accordionFilters .accordion-body {
    color: var(--gray-600);
    padding: 20px;
    padding-top: 0;
    font-size: 14px;
    max-height: 600px;
    overflow-y: scroll;
    overflow-x: hidden;
}

#accordionQuestions .accordion-item,
#accordionFilters .accordion-item {
    border-left: none;
    border-top: none;
    border-right: none;
    border-bottom: 2px solid var(--gray-350);
}

#accordionQuestions [type="button"]:not(:disabled),
[type="reset"]:not(:disabled) {
    font-size: 18px;
    color: var(--black);
    font-weight: 600;
    padding-right: 0;
    padding-left: 0;
    justify-content: space-between;
}

#accordionFilters [type="button"]:not(:disabled) {
    font-size: 18px;
    color: var(--black);
    font-weight: 600;
    justify-content: space-between;
}

#accordionQuestions [type="button"]:not(:disabled):focus,
#accordionFilters [type="button"]:not(:disabled):focus,
[type="reset"]:not(:disabled):focus {
    outline: none;
    box-shadow: none;
    border: none;
}

#accordionQuestions .accordion-button:not(.collapsed)::after {
    margin-left: 45px;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z' stroke='black' stroke-width='2'/></svg>");
}

#accordionQuestions .accordion-button::after {
    margin-left: 45px;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z' stroke='black' stroke-width='2'/></svg>");
}

#accordionFilters .accordion-button:not(.collapsed)::after {
    margin-left: 45px;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%239E9E9E'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z' stroke='%239E9E9E' stroke-width='2'/></svg>");
}

#accordionFilters .accordion-button::after {
    margin-left: 45px;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%239E9E9E'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z' stroke='%239E9E9E' stroke-width='2'/></svg>");
}

#accordionQuestions.accordion,
#accordionFilters.accordion {
    --bs-accordion-border-radius: 0;
}

.questions {
    margin-bottom: 170px;
}

.questions h2 {
    font-size: 40px;
    color: var(--black);
    font-weight: 700;
}

.questions p {
    font-size: 20px;
    color: var(--black);
    font-weight: 300;
    margin-bottom: 40px;
}

#accordionQuestions {
    padding: 0 160px;
}

#accordionQuestions .accordion-item:first-child .accordion-header {
    border-top: 1px solid var(--gray-350);
}

.wpp-floating:hover {
    transform: scale(1.05);
}

.wpp-floating img {
    width: 100%;
    border-radius: 10px;
}

.wpp-floating {
    z-index: 99;
    position: fixed;
    bottom: 40px;
    right: 40px;
    transition: transform 0.2s ease-in-out;
}

/* Product show */
.product-img-side img {
    width: 90px;
    height: 130px;
    object-fit: cover;
}

.productGallerySwiper .swiper-wrapper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.productGallerySwiper {
    height: 100%;
    border: 1px solid var(--gray-100);
    border-radius: 5px;
}

.product-img-side .product-img-container {
    border: 1px solid var(--gray-100);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 110px;
}

.product-details {
    margin-top: 50px;
    margin-bottom: 120px;
}

.productGallerySwiper img {
    width: 100%;
    max-width: 300px;
    max-height: 460px;
}

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

.custom-padding-product {
    padding-right: 36px;
}

.product-img-side .swiper {
    max-height: 500px;
}

.wine-content {
    border: 1px solid var(--gray-500);
    padding: 4px;
    padding-left: 12px;
    border-radius: 5px;
    display: flex;
    gap: 10px;
    align-items: center;
    width: fit-content;
}

.wine-content p {
    font-size: 14px;
    color: var(--black);
    font-weight: 400;
    margin-bottom: 0;
}

.wine-content span {
    font-size: 14px;
    color: var(--white);
    font-weight: 700;
    background-color: var(--primary-color);
    border-radius: 5px;
    padding: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.productGallerySwiper i {
    color: var(--gray-400);
    font-size: 30px;
}

.productGallerySwiper .swiper-button-next {
    margin-right: 70px;
}

.productGallerySwiper .swiper-button-prev {
    margin-left: 70px;
}

.product-card-data {
    position: sticky;
    top: 50px;
}

.product-collection {
    font-size: 14px;
    color: var(--black);
    margin-bottom: 0;
    font-weight: 300;
}

.product-country {
    font-size: 16px;
    color: var(--black);
    font-weight: 400;
    margin-bottom: 14px;
}

.product-card-data h1 {
    font-family: Lora;
    font-size: 32px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 5px;
    line-break: auto;
}

.product-prices h3 {
    font-size: 20px;
    color: var(--gray-600);
    font-weight: 700;
    text-decoration-line: line-through;
    margin-bottom: 4px;
}

.product-prices h2 {
    font-size: 36px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 4px;
}

.product-prices {
    margin-top: 40px;
    margin-bottom: 45px;
}

.product-prices p {
    font-size: 14px;
    color: var(--black);
    font-weight: 400;
}

.product-prices p span {
    font-weight: 600;
}

.product-quantity {
    border: 1px solid var(--black);
    padding: 0 12px;
    border-radius: 5px;
}

.product-quantity button {
    border: none;
    background: none;
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
}

.product-quantity input {
    border: none;
    font-size: 24px;
    color: var(--black);
    font-weight: 600;
    max-width: 50px;
    text-align: center;
}

.product-quantity input:focus {
    outline: none;
}

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

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

.product-card-data .primary-button {
    padding: 14px 50px;
}

.notes {
    margin-top: 120px;
}

.notes h2 {
    font-size: 32px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 12px;
}

.notes p {
    font-size: 16px;
    color: var(--black);
    font-weight: 400;
    margin-bottom: 28px;
}

.notes img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    margin-bottom: 60px;
}

.product-details-section h2 {
    font-size: 24px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 20px;
}

.product-details-section td {
    font-size: 16px;
    color: var(--gray-700);
    font-weight: 500;
}

.product-details-section table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 60px;
}

.product-details-section tr {
    border-bottom: 1px solid var(--gray-350);
}

.product-details-section td {
    padding: 20px 0;
}

.product-video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.product-video-container img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
}

.another-products h2 {
    font-family: Lora;
    font-size: 48px;
    color: var(--black);
    font-weight: 600;
    margin-bottom: 25px;
}

.another-products {
    margin-bottom: 160px;
    margin-top: 130px;
}

.product-video-container .play-button {
    width: 70px;
    height: 70px;
}

.product-video-container .custom-btn {
    padding: 12px 36px;
}

.general-reviews p {
    font-size: 16px;
    color: var(--gray-800);
    font-weight: 400;
    margin-bottom: 5px;
}

.general-reviews {
    margin-bottom: 70px;
}

.general-reviews h2 {
    font-size: 48px;
    color: var(--black);
    font-weight: 700;
}

.general-reviews i {
    font-size: 20px;
}

.review-author h2 {
    font-size: 20px;
    color: var(--black);
    margin-bottom: 4px;
    font-weight: 700;
}

.review-author p {
    font-size: 14px;
    color: var(--gray-700);
    font-weight: 700;
    margin-bottom: 0;
}

.review-content i {
    font-size: 20px;
}

.review-content h2 {
    font-size: 20px;
    color: var(--black);
    margin-bottom: 10px;
    font-weight: 700;
    margin-top: 20px;
}

.review-content p {
    font-size: 16px;
    color: var(--gray-800);
    font-weight: 400;
    margin-bottom: 0;
}

.review-buttons button {
    padding: 14px 90px;
}

.review-buttons {
    margin-top: 40px;
}

.review-resume hr {
    margin: 40px 0;
    color: var(--gray-350);
}

#allRatingsModal .dropdown-item.active,
#allRatingsModal .dropdown-item:active {
    background-color: var(--gray-300);
    color: var(--black);
}

#allRatingsModal .dropdown-item {
    padding: 10px 12px;
}

#allRatingsModal .modal-header {
    padding: 30px;
}

#allRatingsModal .modal-body h3 {
    font-size: 20px;
    color: var(--black);
    font-weight: 300;
}

#allRatingsModal .modal-body h2 {
    font-size: 40px;
    color: var(--black);
    font-weight: 700;
}

#allRatingsModal .rating-quantity {
    font-size: 16px;
    color: var(--black);
    margin-bottom: 0;
    font-weight: 300;
}

#allRatingsModal .rating-card>p:first-of-type {
    -webkit-line-clamp: unset;
}

#allRatingsModal .rating-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

#allRatingsModal .modal-body {
    padding: 30px;
}

.rating-card {
    border: 1px solid var(--gray-500);
    border-radius: 5px;
}

.rating-card a {
    font-size: 16px;
    color: var(--black);
    text-decoration: underline;
    font-weight: 500;
}

.rating-card {
    padding: 20px 22px;
    border-radius: 5px;
    width: 100%;
    min-height: 270px;
}

.rating-card i {
    font-size: 11px;
}

.rating-card div:first-child p {
    font-size: 11px;
    color: var(--black);
    font-weight: 300;
    padding-top: 5px;
}

.rating-card>p:first-of-type {
    font-size: 16px;
    color: var(--black);
    font-weight: 300;
    padding-top: 14px;
    margin-bottom: 5px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.rating-card>p:nth-of-type(2) {
    text-decoration: underline;
    font-size: 16px;
    color: var(--black);
    font-weight: 500;
}

.rating-card p:last-child {
    font-size: 15px;
    color: var(--black);
    font-weight: 500;

    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

#allRatingsModal .dropdown-toggle {
    background: var(--white);
    color: var(--black);
    border: none;
    text-decoration: underline;
}

#allRatingsModal .dropdown-menu {
    padding: 0;
    border: none;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.132);
    margin-top: 10px !important;
}

#rateModal .modal-body textarea:focus {
    outline: none;
    box-shadow: none;
}

#rateModal .modal-body textarea::placeholder {
    font-size: 15px;
    color: var(--gray-800);
    font-weight: 300;
}

#rateModal .modal-body {
    margin-top: 30px;
}

#rateModal .modal-body textarea {
    border: 1px solid var(--black);
    padding: 20px;
    resize: none;
    border-radius: 5px;
    font-size: 15px;
    margin-bottom: 40px;
}

#rateModal .modal-body input {
    border: 1px solid var(--black);
    padding: 20px;
    resize: none;
    border-radius: 5px;
    font-size: 15px;
    margin-bottom: 40px;
}

#rateModal .modal-body input:focus {
    outline: none;
    box-shadow: none;
}

#rateModal .modal-body input::placeholder {
    font-size: 15px;
    color: var(--gray-800);
    font-weight: 300;
}

#rateModal .modal-footer {
    padding-left: 35px;
    padding-right: 35px;
    padding-top: 25px;
    padding-bottom: 25px;
}

#rateModal .modal-header {
    padding: 25px;
}

#rateModal .modal-body {
    padding-left: 35px;
    padding-right: 35px;
}

#rateModal .modal-body label {
    font-size: 16px;
    color: var(--black);
    font-weight: 500;
}

#rateModal .modal-title {
    font-size: 18px;
    color: var(--black);
    font-weight: 500;
    width: 100%;
}

#rateModal .primary-button {
    padding: 14px 80px;
}

.no-ratings .primary-button {
    padding: 14px 80px;
    margin-top: 28px;
}

/* Products */
.banner-products h1 {
    font-family: Lora;
    font-size: 48px;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 15px;
}

.banner-products p {
    font-size: 14px;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 25px;
}

.banner-products {
    padding: 200px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin-top: 0px;
    margin-bottom: 40px;
    border-radius: 0px;
}

.banner-products .green-button {
    width: fit-content;
    padding: 10px 80px;
}

.product-filters .black-button-outline i {
    font-size: 18px;
}

.product-filters .black-button-outline p {
    margin-top: 3px;
}

.product-filters {
    margin-bottom: 40px;
}

.product-filters .select2-container--default .select2-selection--single {
    border: 1px solid var(--black);
    border-radius: 5px;
    font-size: 16px;
    color: var(--black);
    font-weight: 500;
    padding-right: 60px;
    align-items: center;
    display: flex;
    height: 55px;
    position: relative;
    width: fit-content;
}

.product-filters .primary-button {
    padding: 14px 60px;
}

.clean-filters {
    text-wrap: nowrap;
    font-size: 14px;
    color: var(--gray-800);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.clean-filters-desktop {
    display: flex;
}

.clean-filters-mobile {
    display: none;
}

.filter-button-desktop {
    display: flex;
}

.filter-button-mobile {
    display: none;
}

.filter-badge {
    background-color: var(--primary-color);
    padding: 18px 20px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 5px;
    width: fit-content;
}

.filter-badge a {
    text-decoration: none;
}

.filter-badge p {
    color: var(--white);
}

.filter-list {
    margin-top: 3px;
}

.filter-badge i {
    margin-top: 3px;
    color: var(--gray-200);
}

.filter-badge-home {
    background-color: var(--primary-color);
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 5px;
    width: fit-content;
    color: var(--white);
}

.filter-badge-home a {
    text-decoration: none;
}

.filter-badge-home p {
    color: var(--white);
}

.filter-list-home {
    margin-top: 3px;
}

.filter-badge-home i {
    margin-top: 3px;
    color: var(--white);
}

#productFilters .offcanvas-title {
    width: 100%;
    text-align: center;
    font-size: 16px;
    color: var(--black);
    font-weight: 700;
}

#productFilters .offcanvas-body {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    overflow: hidden;
}

#productFilters .accordion-button {
    padding: 20px;
}

#productFilters .offcanvas-header {
    padding: var(--bs-offcanvas-padding-y) 20px;
}

.product-filters .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 12px;
    right: 8px;
}

.custom-classes .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background: var(--primary-color) !important;
}

.custom-classes .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 12px;
}

.custom-classes .select2-container {
    width: fit-content !important;
}

.custom-classes .select2-results__option--selectable:not(.select2-results__option--selectable:last-child) {
    border-bottom: 1px solid var(--gray-350);
}

.custom-classes .select2-results__option--selectable {
    padding: 12px 20px;
}

.custom-classes .select2-container--default .select2-results__option--disabled {
    padding: 12px 20px;
    border-bottom: 1px solid var(--gray-350);
}

.custom-classes .select2-container--default .select2-results>.select2-results__options {
    max-height: 360px;
}

.custom-classes .select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar {
    width: 6px;
}

.custom-classes .select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-track {
    background: var(--gray-200);
}

.custom-classes .select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: 5px;
}

.custom-classes .select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb:hover {
    background: var(--gray-500);
}

#accordionFilters .accordion-body::-webkit-scrollbar {
    width: 6px;
}

#accordionFilters .accordion-body::-webkit-scrollbar-track {
    background: var(--gray-200);
}

#accordionFilters .accordion-body::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: 5px;
}

#accordionFilters .accordion-body::-webkit-scrollbar-thumb:hover {
    background: var(--gray-500);
}

#productFilters .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

#productFilters .form-check-input:focus {
    box-shadow: none;
}

#productFilters .form-check {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

#productFilters .form-check-input {
    width: 1.3rem;
    height: 1.3rem;
    margin-bottom: 4px;
}

#productFilters .form-check label {
    font-size: 16px;
    color: var(--black);
}

.slider-values p {
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    border-radius: 20px;
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.ui-slider-horizontal {
    height: 0.4em !important;
}

.ui-slider-horizontal .ui-slider-handle {
    top: -0.4em !important;
}

.ui-slider-horizontal .ui-slider-range {
    background: var(--primary-color);
}

#slider-range>span.ui-slider-handle:active {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

#productFilters .accordion {
    max-height: 100%;
    overflow: scroll;
}

#productFilters .accordion::-webkit-scrollbar {
    display: none;
}

#productFilters .accordion {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Club */
.club-banner {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.club-initial {
    margin-top: 100px;
    margin-bottom: 170px;
}

.club-advantage {
    display: flex;
    margin-bottom: 55px;
    align-items: center;
    gap: 16px;
}

.club-advantage-icon {
    background: var(--primary-color);
    border-radius: 5px;
    width: 96px;
    height: 82px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
}

.club-advantage h3 {
    font-size: 15px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 4px;
}

.club-advantage p {
    font-size: 12px;
    color: var(--black);
    font-weight: 300;
    margin-bottom: 0;
}

.club-advantage-list {
    list-style: none;
    padding-left: 0;
}

.club-advantage-section {
    margin-bottom: 180px;
}

.club-advantage-section h2 {
    font-family: Lora;
    font-size: 48px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 60px;
    padding: 0 15rem;
}

.club-advantage-section .primary-button {
    width: fit-content;
    padding: 14px 80px;
}

.categorySwiper img {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
}

.category-card-container {
    border: 1px solid var(--gray-300);
    border-radius: 5px;
    padding: 55px 65px;
    margin-top: 50px;
    margin-bottom: 100px;
}

.categorySwiper h2 {
    font-family: Lora;
    font-size: 40px;
    color: var(--black);
    font-weight: 600;
    margin-bottom: 14px;
}

.categorySwiper p {
    font-size: 14px;
    color: var(--gray-900);
    font-weight: 400;
    margin-bottom: 0;
}

.category-card-container {
    position: relative;
}

.categorySwiper .swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, -26px);
}

.category-card-container .swiper-pagination-bullet-active {
    background: var(--gray-500) !important;
}

/* Register */
.form-card {
    border: 1px solid var(--gray-400);
    border-radius: 5px;
    padding: 53px 68px;
    margin-top: 115px;
    margin-bottom: 200px;
}

.custom-input {
    border: 1px solid var(--gray-300);
    border-radius: 5px;
    padding: 18px;
}

.custom-input:focus {
    box-shadow: none;
    border: 1px solid var(--gray-700);
}

.custom-input::placeholder {
    font-size: 16px;
    color: var(--gray-500);
    font-weight: 400;
}

.form-card h1 {
    font-size: 36px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 5px;
}

.form-card p {
    font-size: 16px;
    color: var(--gray-700);
    font-weight: 400;
    margin-bottom: 30px;
}

.forgot-password {
    font-size: 12px;
    color: var(--gray-700);
    font-weight: 400;
}

/* Contact */
.contact-card h1 {
    font-size: 36px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-card p {
    font-size: 16px;
    color: var(--gray-700);
    font-weight: 400;
    margin-bottom: 30px;
}

.contact-card {
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    padding: 60px 130px;
    margin-top: 115px;
    margin-bottom: 200px;
}

.custom-input {
    resize: none;
}

/* Cart */
.cart-content-card {
    margin-top: 30px;
    margin-bottom: 130px;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.05);
}

.card-content-header h1 {
    font-size: 24px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 0;
}

.card-content-header span {
    font-size: 24px;
    color: var(--gray-600);
    font-weight: 400;
}

.card-content-header {
    border-bottom: 1px solid var(--gray-200);
    padding: 20px 30px;
    margin-bottom: 20px;
}

.cart-content-body {
    padding: 20px 30px;
}

.cart-item-card img {
    width: 100%;
    max-width: 130px;
    object-fit: cover;
    margin-right: 20px;
}

.cart-item-card {
    border-radius: 5px;
    border: 1px solid var(--gray-300);
    padding: 30px;
    margin-bottom: 20px;
}

.cart-item-card i {
    color: var(--gray-400);
    font-size: 22px;
}

.cart-item-prices h2 {
    font-size: 18px;
    color: var(--black);
    margin-bottom: 0;
    font-weight: 600;
}

.cart-item-prices h3 {
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 300;
    text-decoration-line: line-through;
    margin-bottom: 0;
    margin-bottom: 2px;
}

.product-title {
    font-family: Lora;
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 14px;

    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.cart-content-body .product-quantity input,
.cart-content-body .product-quantity button {
    font-size: 16px;
}

.cart-content-body .product-quantity input {
    max-width: 24px;
}

.cart-content-body .product-quantity {
    padding: 3px 12px;
}

.free-shipping {
    margin-top: 30px;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    padding: 27px 67px;
    margin-bottom: 20px;
}

.free-shipping .progress-bar {
    background-color: var(--green-dark-color);
}

.free-shipping h2 {
    font-size: 24px;
    color: var(--black);
    font-weight: 500;
    margin-bottom: 10px;
    text-align: center;
}

.free-shipping .progress,
.progress-stacked {
    --bs-progress-height: 0.7rem;
}

.cart-side-data {
    position: sticky;
    margin-bottom: 130px;
    top: 30px;
}

.order-summary-top {
    padding-top: 22px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 0;
}

.order-summary {
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    margin-bottom: 30px;
}

.order-summary hr {
    margin: 15px 0;
}

.order-summary h2 {
    font-size: 24px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 30px;
}

.order-summary-content {
    font-size: 20px;
    color: var(--black);
    font-weight: 400;
}

.order-summary-bottom {
    padding: 22px 30px;
}

.cart-final-price p:first-child {
    font-size: 20px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 0;
}

.cart-final-price p:last-child {
    font-size: 14px;
    color: var(--black);
    font-weight: 400;
    margin-bottom: 0;
}

.order-summary-bottom p {
    font-size: 20px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 0;
}

.order-summary-bottom .green-button {
    margin-top: 18px;
}

.discount-coupon {
    padding: 22px 30px;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
}

.discount-coupon h2 {
    font-size: 24px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 22px;
}

.discount-coupon input {
    margin-bottom: 27px;
}

/* Checkout */
.payment-method p {
    font-size: 13px;
    color: var(--black);
    font-weight: 300;
    margin-bottom: 5px;
}

.payment-method h2 {
    font-size: 24px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 20px;
}

.payment-method {
    margin-top: 30px;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    margin-bottom: 130px;
}

.payment-method hr {
    color: var(--gray-400);
    margin-bottom: 34px;
}

.payment-method-body {
    padding: 30px;
    padding-top: 0;
}

.payment-method-top {
    padding: 30px;
    padding-bottom: 0;
}

.delivery-address-body {
    padding: 30px;
    padding-top: 0;
}

.delivery-address-body i {
    font-size: 24px;
    color: var(--black);
}

.delivery-address hr {
    color: var(--gray-400);
    margin-bottom: 34px;
    margin-top: 30px;
}

.delivery-address-top {
    padding: 30px;
    padding-bottom: 0;
}

.delivery-address p {
    font-size: 13px;
    color: var(--black);
    font-weight: 300;
    margin-bottom: 5px;
}

.delivery-address h2 {
    font-size: 24px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 3px;
}

.delivery-address {
    margin-top: 30px;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
}

.saved-cards label span:first-child {
    font-size: 15px;
    color: var(--black);
    font-weight: 500;
}

.saved-cards label span:nth-child(2) {
    font-size: 12px;
    color: #535353;
    display: flex;
    align-items: center;
    font-weight: 400;
}

.saved-cards label span:nth-child(2) a {
    margin-left: 10px;
    display: none;
}

.saved-cards label span:nth-child(2) a:hover i {
    color: var(--white);
    background: #ea2121;
    border-radius: 5px;
}

.saved-cards label span:nth-child(2) a i {
    font-size: 14px;
    color: var(--black);
    padding: 10px;
    transition: all 0.2s ease-in-out;
}

.saved-addresses label span:first-child {
    font-size: 15px;
    color: var(--black);
    font-weight: 500;
}

.saved-addresses label span:nth-child(2) {
    font-size: 12px;
    color: #535353;
    display: flex;
    align-items: center;
    font-weight: 400;
}

.saved-addresses label span:nth-child(2) a {
    margin-left: 10px;
    display: none;
}

.saved-addresses label span:nth-child(2) a:hover i {
    color: var(--white);
    background: #ea2121;
    border-radius: 5px;
}

.saved-addresses label span:nth-child(2) a i {
    font-size: 14px;
    color: var(--black);
    padding: 10px;
    transition: all 0.2s ease-in-out;
}

.payment-option button:not(.primary-button, .green-button) {
    background: var(--white);
    border: 1px solid var(--gray-350);
    width: 100%;
    text-align: start;
    padding: 20px 20px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.1s ease-in-out;
}

.payment-option .primary-button {
    padding: 9.3px;
}

.payment-option {
    margin-top: 20px;
}

.payment-option a {
    margin-top: 35px;
}

.saved-cards label {
    width: 100%;
    cursor: pointer;
    transition: all 0.1s ease-in-out;
}

.saved-cards input[type="radio"]+label {
    border: 1px solid var(--gray-350);
    padding: 10px 20px;
    font-size: 14px;
    width: 100%;
    text-align: center;
    color: var(--black);
    border-radius: 5px;
}

.saved-cards input[type="radio"]+label:hover {
    border: 1px solid var(--black);
}

.saved-cards input[type="radio"]:checked+label {
    border: 1px solid var(--black);
    font-size: 14px;
}

.saved-cards input[type="radio"] {
    display: none;
}

.saved-cards img {
    width: 100%;
    max-width: 40px;
    max-height: 30px;
}

.saved-addresses label {
    width: 100%;
    cursor: pointer;
    transition: all 0.1s ease-in-out;
}

.saved-addresses input[type="radio"]+label {
    border: 1px solid var(--gray-350);
    padding: 10px 20px;
    font-size: 14px;
    width: 100%;
    text-align: center;
    color: var(--black);
    border-radius: 5px;
}

.saved-addresses input[type="radio"]+label:hover {
    border: 1px solid var(--black);
}

.saved-addresses input[type="radio"]:checked+label {
    border: 1px solid var(--black);
    font-size: 14px;
}

.saved-addresses input[type="radio"] {
    display: none;
}

.saved-addresses img {
    width: 100%;
    max-width: 40px;
    max-height: 30px;
}

#cardForm {
    display: none;
}

.time-to-pay-card {
    background-color: var(--primary-color);
    border-radius: 5px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.time-to-pay-card p {
    font-size: 14px;
    color: var(--white);
    font-weight: 300;
}

.time-to-pay-card i {
    color: var(--white);
    font-size: 20px;
}

#pixForm .time-to-pay-card {
    margin-bottom: 25px;
    margin-top: 40px;
}

#pixForm .time-to-pay-card p {
    color: var(--white);
}

#pixForm {
    display: none;
    padding: 0 100px;
}

.pix-code {
    margin-top: 35px;
}

#pixForm div:nth-child(2) h2 {
    font-size: 16px;
    color: var(--black);
    font-weight: 500;
    margin-bottom: 10px;
}

#pixForm div:nth-child(2) p {
    font-size: 12px;
    color: var(--gray-800);
    font-weight: 300;
}

#pixForm .pix-value p:first-child {
    font-size: 14px;
    color: var(--black);
    font-weight: 400;
    margin-bottom: 7px;
}

#pixForm .pix-value p:last-child {
    font-size: 14px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 0;
}

#pixForm .pix-code p:first-child {
    font-size: 13px;
    color: var(--black);
    font-weight: 300;
}

#pixCode {
    font-size: 13px;
    color: var(--black);
    font-weight: 500;
    word-break: break-all;
}

#pixForm .primary-button {
    padding: 18px;
    width: 100%;
    margin-top: 30px;
}

#pixForm img {
    width: 100%;
    max-width: 250px;
    max-height: 250px;
}

.floating-label {
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 12px;
    color: var(--black);
}

.input-group {
    position: relative;
    width: 100%;
}

.payment-option input:focus+.floating-label,
.payment-option input:not(:placeholder-shown)+.floating-label {
    top: 5px;
    font-size: 16px;
    color: var(--gray-500);
    font-weight: 300;
}

.payment-option .input-group input {
    width: 100%;
    padding: 25px 15px 10px 15px;
    border: 1px solid var(--gray-300);
    font-size: 16px;
    color: var(--black);
    border-radius: 5px !important;
}

.payment-option .input-group input:focus {
    outline: none;
    border: 1px solid var(--gray-700);
}

.payment-option .default-input>input {
    width: 100%;
    border: 1px solid var(--gray-300);
}

.payment-option .save-card label {
    font-size: 14px;
    color: var(--black);
    font-weight: 300;
}

.payment-option .save-card .primary-button {
    padding: 14px 70px;
}

.payment-option .save-card {
    display: flex;
    align-items: center;
    margin-top: 25px;
    gap: 26px;
    flex-wrap: wrap;
}

.payment-option .save-card input {
    width: 22px;
    height: 22px;
    margin-bottom: 0;
}

.save-card {
    margin-bottom: 36px;
}

.payment-option input::placeholder {
    font-size: 16px;
    color: var(--gray-500);
    font-weight: 300;
}

.card-icon {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    height: 24px;
    width: auto;
}

.payment-option #saveCard:checked {
    accent-color: var(--primary-color);
}

.delivery-address-body .primary-button {
    width: fit-content;
    padding: 14px 70px;
}

/* Order confirmed */
.order-confirmed {
    margin-top: 80px;
}

.order-confirmed h1 {
    font-size: 26px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 3px;
}

.order-confirmed p {
    font-size: 16px;
    color: var(--gray-800);
    font-weight: 300;
    margin-bottom: 0;
}

.order-confirmed i {
    font-size: 150px;
    padding-bottom: 30px;
    color: #37b853;
}

.order-details p {
    font-size: 16px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 25px;
}

.order-details .primary-button {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 160px;
    padding: 18px;
}

.order-details-canceled .section-space {
    margin-left: 150px;
    margin-right: 150px;
}

.order-details li {
    font-size: 14px;
    color: var(--gray-800);
    font-weight: 300;
}

.order-details li::marker {
    font-size: 10px;
}

.order-confirmed.container {
    padding-right: calc(var(--bs-gutter-x) * 5.5);
    padding-left: calc(var(--bs-gutter-x) * 5.5);
}

.order-details.container {
    padding-right: calc(var(--bs-gutter-x) * 5.5);
    padding-left: calc(var(--bs-gutter-x) * 5.5);
}

.order-details ul {
    line-height: 25px;
}

/* Profile */
.profile-intro h1 {
    font-size: 36px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 3px;
}

.profile-content {
    margin-bottom: 200px;
}

.profile-intro {
    margin-top: 55px;
    margin-bottom: 40px;
}

a.profile-card {
    text-decoration: none;
    display: block;
}

.profile-card h2 {
    font-size: 20px;
    color: var(--black);
    font-weight: 700;
}

.profile-card p {
    font-size: 15px;
    color: var(--black);
    font-weight: 300;
    margin-bottom: 0;
}

.profile-card {
    border: 1px solid var(--gray-300);
    box-shadow: 0px 4px 20px 5px rgba(0, 0, 0, 0.072);
    margin-bottom: 25px;
    border-radius: 15px;
    padding: 30px;
    transition: 0.2s ease-in-out;
}

.profile-card:hover {
    transform: translateY(-5px);
}

/* Edit profile */
.edit-profile-intro h1 {
    font-size: 36px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 3px;
}

.edit-profile-intro {
    margin-top: 55px;
    margin-bottom: 40px;
}

.edit-profile-input input::placeholder {
    font-size: 16px;
    color: var(--gray-500);
    font-weight: 300;
}

.edit-profile-input input {
    font-size: 16px;
    color: var(--black);
    font-weight: 300;
    border-color: var(--gray-350);
    border-top: none;
    border-left: none;
    border-right: none;
    width: 100%;
    padding-bottom: 15px;
}

.edit-profile-input input:focus {
    outline: none;
}

.edit-profile p {
    margin-bottom: 5px;
    font-size: 18px;
    color: var(--black);
    font-weight: 500;
}

.edit-profile a {
    font-size: 14px;
    color: var(--black);
    font-weight: 500;
}

.edit-profile .primary-button {
    padding: 18px 30px;
    margin-top: 40px;
}

.edit-profile {
    padding-bottom: 120px;
}

/* Edit payment */
#deleteCardModal .modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 50px;
}

#deleteCardModal .modal-body p {
    font-size: 20px;
    color: var(--black);
    font-weight: 300;
    margin-bottom: 5px;
}

#deleteCardModal .modal-body h2 {
    font-size: 32px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 30px;
}

#deleteCardModal .modal-body .primary-button {
    width: 100%;
    margin-bottom: 15px;
    padding: 18px;
}

#deleteCardModal .modal-body .black-button-outline {
    width: 70%;
    padding: 14px;
}

.payment-method-profile-intro h2 {
    font-size: 36px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 3px;
}

.payment-method-profile-intro {
    margin-top: 55px;
    margin-bottom: 35px;
}

.profile-payment-method .payment-option {
    margin-top: 0;
}

.profile-payment-method .col-6 p:first-child {
    font-size: 14px;
    color: var(--black);
    font-weight: 400;
    margin-bottom: 5px;
}

.profile-payment-method {
    margin-bottom: 100px;
}

.saved-cards label span:first-child {
    font-size: 15px;
    color: var(--black);
    font-weight: 500;
}

.saved-cards label span:nth-child(2) {
    font-size: 12px;
    color: #535353;
    display: flex;
    align-items: center;
    font-weight: 400;
}

.saved-cards label span:nth-child(2) a {
    margin-left: 10px;
    display: none;
}

.saved-cards label span:nth-child(2) a:hover i {
    color: var(--white);
    background: #ea2121;
    border-radius: 5px;
}

.saved-cards label span:nth-child(2) a i {
    font-size: 14px;
    color: var(--black);
    padding: 10px;
    transition: all 0.2s ease-in-out;
}

.saved-cards label {
    width: 100%;
    cursor: pointer;
    transition: all 0.1s ease-in-out;
}

.saved-cards input[type="radio"]+label {
    border: 1px solid var(--gray-350);
    padding: 10px 20px;
    font-size: 14px;
    width: 100%;
    text-align: center;
    color: var(--black);
    border-radius: 5px;
}

.saved-cards input[type="radio"]+label:hover {
    border: 1px solid var(--black);
}

.saved-cards input[type="radio"]:checked+label {
    border: 1px solid var(--black);
    font-size: 14px;
}

.saved-cards input[type="radio"] {
    display: none;
}

.saved-cards img {
    width: 100%;
    max-width: 40px;
    max-height: 30px;
}

.saved-addresses label span:first-child {
    font-size: 15px;
    color: var(--black);
    font-weight: 500;
}

.saved-addresses label span:nth-child(2) {
    font-size: 12px;
    color: #535353;
    display: flex;
    align-items: center;
    font-weight: 400;
}

.saved-addresses label span:nth-child(2) a {
    margin-left: 10px;
    display: none;
}

.saved-addresses label span:nth-child(2) a:hover i {
    color: var(--white);
    background: #ea2121;
    border-radius: 5px;
}

.saved-addresses label span:nth-child(2) a i {
    font-size: 14px;
    color: var(--black);
    padding: 10px;
    transition: all 0.2s ease-in-out;
}

.saved-addresses label {
    width: 100%;
    cursor: pointer;
    transition: all 0.1s ease-in-out;
}

.saved-addresses input[type="radio"]+label {
    border: 1px solid var(--gray-350);
    padding: 10px 20px;
    font-size: 14px;
    width: 100%;
    text-align: center;
    color: var(--black);
    border-radius: 5px;
}

.saved-addresses input[type="radio"]+label:hover {
    border: 1px solid var(--black);
}

.saved-addresses input[type="radio"]:checked+label {
    border: 1px solid var(--black);
    font-size: 14px;
}

.saved-addresses input[type="radio"] {
    display: none;
}

.payment-method-profile.payment-method {
    box-shadow: none;
    margin-top: 0;
}

.payment-method-profile .save-card {
    margin-top: 0;
}

.payment-method-profile .green-button {
    width: 100%;
}

/* Addresses */
#deleteAddressModal .modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 50px;
}

#deleteAddressModal .modal-body p {
    font-size: 20px;
    color: var(--black);
    font-weight: 300;
    margin-bottom: 5px;
}

#deleteAddressModal .modal-body h2 {
    font-size: 32px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

#deleteAddressModal .modal-body .primary-button {
    width: 100%;
    margin-bottom: 15px;
    padding: 18px;
}

#deleteAddressModal .modal-body .black-button-outline {
    width: 70%;
    padding: 14px;
}

.address-option-profile-intro h2 {
    font-size: 36px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 3px;
}

.address-option-profile-intro {
    margin-top: 55px;
    margin-bottom: 35px;
}

.address-option-profile {
    box-shadow: none;
    margin-top: 0;
}

.address-option-profile .save-address {
    margin-top: 0;
}

.address-option-profile .green-button {
    width: 100%;
}

.saved-addresses label span:first-child {
    font-size: 15px;
    color: var(--black);
    font-weight: 500;
}

.saved-addresses label span:nth-child(2) {
    font-size: 12px;
    color: #535353;
    display: flex;
    align-items: center;
    font-weight: 400;
}

.saved-addresses label span:nth-child(2) a {
    margin-left: 10px;
    display: none;
}

.saved-addresses label span:nth-child(2) a:hover i {
    color: var(--white);
    background: #ea2121;
    border-radius: 5px;
}

.saved-addresses label span:nth-child(2) a i {
    font-size: 14px;
    color: var(--black);
    padding: 10px;
    transition: all 0.2s ease-in-out;
}

.saved-addresses label {
    width: 100%;
    cursor: pointer;
    transition: all 0.1s ease-in-out;
}

.saved-addresses input[type="radio"]+label {
    border: 1px solid var(--gray-350);
    padding: 10px 20px;
    font-size: 14px;
    width: 100%;
    color: var(--black);
    border-radius: 5px;
}

.saved-addresses input[type="radio"]+label:hover {
    border: 1px solid var(--black);
}

.saved-addresses input[type="radio"]:checked+label {
    border: 1px solid var(--black);
    font-size: 14px;
}

.saved-addresses input[type="radio"] {
    display: none;
}

.saved-addresses img {
    width: 100%;
    max-width: 40px;
    max-height: 30px;
}

.saved-addresses i {
    font-size: 24px;
    color: var(--black);
}

/* Purchase history */
.purchase-history-intro h2 {
    font-size: 36px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 3px;
}

.purchase-history-top-card hr,
.order-details-top-card hr {
    display: none;
    color: var(--gray-350);
    margin-bottom: 20px;
    margin-top: 20px;
}

.purchase-history-intro {
    margin-top: 55px;
    margin-bottom: 35px;
}

.purchase-history-intro .select2-container--default .select2-selection--single {
    border: 1px solid var(--black);
    border-radius: 5px;
    font-size: 16px;
    color: var(--black);
    font-weight: 500;
    padding-right: 60px;
    padding-top: 12px;
    padding-bottom: 12px;
    align-items: center;
    display: flex;
    height: 100%;
    position: relative;
    width: fit-content;
}

.purchase-history-intro .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 12px;
    right: 12px;
}

.purchase-history-top-card {
    background-color: var(--gray-200);
    border-radius: 5px;
    padding: 20px 28px;
}

.purchase-history-top-card p:first-child {
    font-size: 14px;
    color: var(--gray-800);
    font-weight: 400;
    margin-bottom: 0;
}

.purchase-history-top-card p:last-child {
    font-size: 16px;
    color: var(--black);
    font-weight: 500;
    margin-bottom: 0;
    line-break: anywhere;
}

.purchase-history-card-container {
    margin-bottom: 50px;
}

.purchase-history-card-container:last-child {
    margin-bottom: 120px;
}

.history-item-card img {
    width: 100%;
    max-width: 130px;
    object-fit: cover;
}

.history-item-card i {
    color: var(--gray-400);
    font-size: 22px;
}

.history-item-prices h2 {
    font-size: 18px;
    color: var(--black);
    margin-bottom: 0;
    font-weight: 600;
}

.purchase-history-body-card {
    border-radius: 5px;
    border: 1px solid var(--gray-400);
    padding: 30px;
}

.purchase-history-body-card hr {
    color: var(--gray-400);
    margin: 30px 0;
}

.product-image {
    border: 1px solid var(--gray-200);
    width: 100%;
    padding: 0 14px;
    display: flex;
    justify-content: center;
}

/* Order details */
.order-details-intro h2 {
    font-size: 36px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 3px;
}

.order-details-btn-mobile {
    display: none;
}

.order-details-intro {
    margin-top: 55px;
    margin-bottom: 35px;
}

.order-details-top-card {
    border-radius: 5px;
    background-color: var(--gray-200);
    padding: 20px 28px;
}

.order-details-top-card p {
    margin-bottom: 0;
}

.order-details-top-card p:first-child {
    font-size: 14px;
    color: var(--gray-800);
    font-weight: 400;
}

.order-details-top-card p:last-child {
    font-size: 16px;
    font-weight: 500;
    line-break: anywhere;
}

.delivery-time {
    color: #37b853;
}

.order-details-body-card {
    border-radius: 5px;
    border: 1px solid var(--gray-400);
    padding: 30px;
    margin-bottom: 200px;
}

.order-details-body-card hr {
    color: var(--gray-400);
    margin: 30px 0;
}

.order-details-side-content {
    top: 30px;
    position: sticky;
    margin-bottom: 200px;
}

.sent-address {
    box-shadow: 0px 4px 25px 1px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    padding: 22px;
    margin-bottom: 23px;
}

.sent-address h2 {
    font-size: 20px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 5px;
}

.sent-address p {
    font-size: 16px;
    color: var(--black);
    font-weight: 400;
    margin-bottom: 0;
}

.payment-method-card {
    box-shadow: 0px 4px 25px 1px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
}

.payment-method-card-top {
    padding: 22px;
}

.payment-method-card-top h2 {
    font-size: 20px;
    color: var(--black);
    font-weight: 700;
}

.payment-method-card-top h2:first-child {
    margin-bottom: 6px;
}

.payment-method-card-top h2:last-of-type {
    margin-bottom: 20px;
}

.order-details-content p {
    font-size: 20px;
    color: var(--black);
    font-weight: 400;
    margin-bottom: 0;
}

.order-details-bottom {
    padding: 22px 30px;
}

.order-details-bottom p {
    font-size: 20px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 0;
}

.order-details-final-price p:first-child {
    font-size: 20px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 0;
}

.order-details-final-price p:last-child {
    font-size: 14px;
    color: var(--black);
    font-weight: 400;
    margin-bottom: 0;
}

.payment-method-type {
    font-size: 16px;
    color: var(--black);
    font-weight: 400;
    margin-bottom: 40px;
}

/* Order problems */
.order-problems-intro h2 {
    font-size: 36px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 3px;
}

.order-problems-intro {
    margin-top: 55px;
    margin-bottom: 35px;
}

.order-problems-top {
    background-color: var(--gray-200);
    border-radius: 5px;
    padding: 20px 23px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.order-problems-top h2 {
    font-size: 20px;
    color: var(--black);
    font-weight: 500;
    margin-bottom: 0;
}

.order-problems-body {
    border-radius: 5px;
    border: 1px solid var(--gray-400);
    padding: 30px;
    margin-bottom: 200px;
}

.order-problems-body hr {
    color: var(--gray-400);
    margin: 30px 0;
}

.order-problems-item-card img {
    width: 100%;
    max-width: 130px;
    object-fit: cover;
}

.order-problems-item-card i {
    color: var(--gray-400);
    font-size: 22px;
}

/* FAQ */
.faq-intro h2 {
    font-size: 36px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 3px;
}

.faq-intro {
    margin-top: 55px;
    margin-bottom: 35px;
}

.faq #accordionQuestions {
    padding: 0;
    margin-bottom: 20rem;
}

.faq #accordionQuestions .accordion-item:first-child .accordion-header {
    border-top: 0;
}

/* Terms */
.terms-intro h2 {
    font-size: 36px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 3px;
}

.terms-intro {
    margin-top: 55px;
    margin-bottom: 35px;
}

.terms-content h2 {
    font-size: 20px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 11px;
}

.terms-content h3 {
    font-size: 16px;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 35px;
}

.terms-content-container {
    margin-bottom: 200px;
}

@media (max-width: 1400px) {
    .container-large {
        width: 1400px;
    }

    .container-medium {
        width: 1170px;
    }

    .container-small {
        width: 970px;
    }

    .container-smaller {
        width: 750px;
    }

    .navbar .navbar-nav {
        gap: 1rem;
    }

    .right-side-content .primary-button {
        padding: 14px 18px;
    }

    .nav-link {
        font-size: 14px;
    }

    .right-side-content {
        gap: 25px;
    }

    .swiper-button-next-2,
    .swiper-button-next-4 {
        right: 20px;
    }

    .swiper-button-prev-2,
    .swiper-button-prev-4 {
        left: 20px;
    }

    .swiperProducts .swiper-slide,
    .swiperRecommendedProducts .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* @media (max-width: 992px) {
        .swiperProducts .swiper-slide {
            padding: 0px 30px;
        }
    } */

    .video-content {
        padding: 0 70px;
    }

    .product-filters .select2-container--default .select2-selection--single {
        padding-right: 40px;
    }

    .order-details-top-card .primary-button-outline {
        padding: 10px;
    }

    .break-line-small-screen {
        display: block;
    }
}

@media (max-width: 992px) {
    .swiper-button-next-2 {
        right: 0px;
    }

    .swiper-button-prev-2 {
        left: 0px;
    }
}

@media (max-width: 1200px) {
    .container-large {
        width: 1170px;
    }

    .container-medium {
        width: 970px;
    }

    .container-small {
        width: 750px;
    }

    .container-smaller {
        width: 100%;
    }

    .navbar .navbar-nav {
        gap: 0.5rem;
    }

    .right-side-content {
        gap: 14px;
    }

    .bag-shopping-count {
        font-size: 12px;
    }

    .header-login i,
    .bag-shopping i {
        font-size: 26px;
    }

    .right-side-content .primary-button {
        padding: 14px;
    }

    .video-content {
        padding: 0 20px;
    }

    .filters-hide-mobile {
        display: none !important;
    }

    .know-our-team-text {
        padding: 0 20px;
    }

    #pixForm {
        padding: 0;
    }
}

@media (max-width: 992px) {
    .container-large {
        width: 970px;
    }

    .container-medium {
        width: 750px;
    }

    .container-small {
        width: 100%;
    }

    .container-smaller {
        width: 100%;
    }

    .header-content-mobile {
        display: block;
    }

    .break-line-small-screen {
        display: contents;
    }

    .header-content-mobile .fa-user {
        color: var(--black);
        font-size: 26px;
    }

    .navbar-brand {
        justify-content: start;
        display: flex;
        margin-right: 0;
    }

    .header-search-mobile {
        display: contents;
    }

    .header-search-mobile input {
        padding: 12px;
        margin-top: 16px;
    }

    .header-search-mobile button {
        border: none;
        background-color: var(--primary-color);
        border-radius: 5px;
        color: var(--white);
        font-size: 22px;

        margin-top: -50px;
        padding: 8px 14px;
    }

    .order-details-btn,
    .need-help-btn {
        display: none;
    }

    .order-details-body-card {
        margin-bottom: 40px;
    }

    .order-details-btn-mobile {
        display: block;
    }

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

    .nav-link {
        font-size: 16px;
    }

    .navbar-nav hr {
        display: block;
    }

    .home-first-card {
        margin-bottom: 25px;
    }

    .video-content h3 {
        margin-top: 40px;
    }

    .productGallerySwiper .swiper-button-next {
        margin-right: 26px;
    }

    .productGallerySwiper .swiper-button-prev {
        margin-left: 26px;
    }

    .swiper-vertical>.swiper-wrapper {
        flex-direction: row;
    }

    .product-img-side {
        display: none;
    }

    .product-card-data .primary-button {
        padding: 14px 20px;
    }

    .product-video-container .play-button {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .product-video-container .custom-btn {
        padding: 12px 30px;
    }

    .clean-filters-desktop {
        display: none;
    }

    .clean-filters-mobile {
        display: flex;
    }

    .about img {
        margin-top: 80px;
    }

    .about-content {
        padding: 0px 12px;
    }

    .club-initial {
        margin-top: 50px;
    }

    .club-advantage-section h2 {
        padding: 0;
    }

    #accordionQuestions {
        padding: 0;
    }

    .categorySwiper img {
        max-height: 100%;
        margin-top: 45px;
    }

    .category-card-container {
        padding: 55px 30px;
    }

    .about-banner.about img {
        margin-top: 0;
        padding-bottom: 32px;
    }

    .about-banner.about {
        margin-bottom: 100px;
    }

    .know-our-team {
        padding: 0 26px;
    }

    .know-our-team img {
        margin-bottom: 32px;
    }

    .form-card {
        padding: 53px 30px;
    }

    .cart-content-card {
        margin-bottom: 0;
    }

    .payment-method {
        margin-bottom: 0;
    }

    .order-details.container {
        padding-right: calc(var(--bs-gutter-x) * 0.5);
        padding-left: calc(var(--bs-gutter-x) * 0.5);
    }

    .order-confirmed.container {
        padding-right: calc(var(--bs-gutter-x) * 0.5);
        padding-left: calc(var(--bs-gutter-x) * 0.5);
    }

    .purchase-history-top-card hr,
    .order-details-top-card hr {
        display: block;
    }

    .highlightProductSwiper img {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {

    .container-large,
    .container-medium,
    .container-small,
    .container-smaller {
        width: 100%;
    }

    .footer-content-items {
        margin-bottom: 60px;
    }

    .footer-logo {
        margin-bottom: 40px;
    }

    .footer-body img {
        min-height: 42px;
        max-height: 42px;
    }

    .footer-bottom p {
        font-size: 10px;
    }

    .payment-option .save-card .primary-button {
        width: 100%;
    }

    .wpp-floating {
        bottom: 12px;
        right: 12px;
    }

    #rateModal .modal-body {
        padding-left: 20px;
        padding-right: 20px;
    }

    #allRatingsModal .modal-body {
        padding: 20px;
    }

    .banner-home h1,
    .more-sales-products h2,
    .highlight-section-title,
    .another-products h2,
    .banner-products h1,
    .club-advantage-section h2,
    .recommended-products h2 {
        font-size: 40px;
    }

    .video-content h2 {
        margin-bottom: 14px;
        font-size: 36px;
    }

    .home-first-card h2,
    .home-second-card h2 {
        font-size: 24px;
    }

    .home-first-card a {
        background-color: var(--orange-color);
        color: var(--white);
    }

    .highlight-description,
    .video-content p {
        font-size: 16px;
    }

    .order-problems-intro h2,
    .profile-intro h1,
    .edit-profile-intro h1,
    .faq-intro h2,
    .terms-intro h2 {
        font-size: 30px;
    }

    .highlight-title {
        font-size: 30px;
    }

    .highlight-ref {
        margin-bottom: 4px;
    }

    .club-card h2 {
        font-size: 28px;
        margin-bottom: 26px;
    }

    .highlight-product-bg .green-button-outline {
        margin-top: 30px;
    }

    .highlight-product-bg .orange-button-outline {
        margin-top: 30px;
    }

    .club-card-bg {
        justify-content: center;
        padding-top: 60px;
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 60px;
    }

    .purchase-history-intro .select2-container--default {
        margin-top: 24px;
    }

    .purchase-history-intro .select2-container--default .select2-selection--single {
        width: 100%;
    }

    .order-problems-top .primary-button {
        width: 100%;
    }

    .highlight-product-bg {
        padding: 50px 30px;
    }

    #deleteAddressModal .modal-body {
        padding: 35px 25px;
    }

    .history-item-card img {
        max-width: 160px;
    }

    .product-image {
        margin-bottom: 20px;
    }

    .product-card-data-hide-mobile {
        display: none;
    }

    .product-card-data-hide-desktop {
        display: block;
        margin-top: 55px;
    }

    .review-author h2 {
        margin-top: 28px;
    }

    .review-content h2 {
        margin-top: 24px;
    }

    .review-buttons button {
        width: 100%;
        margin-bottom: 23px;
    }

    .review-buttons {
        flex-direction: column-reverse;
    }

    .custom-padding-product {
        padding-right: 12px;
    }

    #rateModal .primary-button {
        width: 100%;
    }

    .open-filters-btn button {
        margin-bottom: 24px;
    }

    .custom-classes .select2-container,
    .open-filters-btn button,
    .product-filters .select2-container--default .select2-selection--single {
        width: 100% !important;
    }

    .filter-button-desktop {
        display: none;
    }

    .filter-button-mobile {
        display: flex;
    }

    .product-filters .primary-button {
        margin-top: 30px;
        margin-bottom: 20px;
        width: 100%;
    }

    .video-container-content {
        padding: 0 12px;
    }

    .about-video {
        margin-bottom: 100px;
    }

    .know-our-team {
        margin-bottom: 80px;
    }

    .know-our-team-content {
        padding: 40px 16px;
    }

    .error .primary-button {
        width: 75%;
    }

    .error h1 {
        font-size: 48px;
    }

    .error h2 {
        font-size: 18px;
    }

    .contact-card {
        padding: 40px 26px;
    }

    .product-title {
        font-size: 18px;
        margin-bottom: 28px;
    }

    .cart-item-prices {
        flex-wrap: wrap-reverse;
    }

    .quantity-btn {
        height: 100%;
    }

    .cart-item-card i {
        font-size: 18px;
    }

    .cart-item-card {
        padding: 16px;
    }

    .cart-item-card img {
        margin-right: 0;
        margin-bottom: 26px;
        max-width: 160px;
    }

    .cart-item-card {
        position: relative;
    }

    .delete-card-item {
        position: absolute;
        top: 30px;
        right: 30px;
    }

    .due-date {
        margin-bottom: 1rem;
    }

    .add-card,
    .add-address {
        margin-top: 24px;
    }
}

@media (max-width: 576px) {
    #pixForm img {
        margin-bottom: 26px;
    }

    .custom-alert {
        right: 0;
        left: 0;
        margin-left: 12px;
        margin-right: 12px;
        z-index: 1150;
    }

    .custom-alert p {
        font-size: 14px;
    }
}

@media (max-width: 992px) {

    .container-large,
    .container-medium,
    .container-small,
    .container-smaller {
        width: 100%;
    }

    .product-card-data .primary-button {
        width: 100%;
        font-size: 14px;
    }

    .product-quantity input {
        max-width: 50px;
        font-size: 18px;
    }
}

/* Slider Range */
#slider-range {
    height: 4px;
    background: var(--gray-300);
    border: none;
    border-radius: 2px;
    margin: 10px 0;
}

#slider-range .ui-slider-handle {
    width: 16px;
    height: 16px;
    background: var(--orange-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    top: -6px;
    margin-left: -8px;
}

#slider-range .ui-slider-range {
    background: var(--orange-color);
    border: none;
    border-radius: 2px;
}

.slider-values {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.slider-values p {
    font-size: 14px;
    color: var(--gray-800);
    margin: 0;
}

#FindTire {
    .modal-dialog {
        margin: 0px !important;
        max-width: 100% !important;
    }

    .modal-body {
        background-attachment: #ffffff;
    }
}

.FindTireContainer {
    padding: 80px 100px;
    font-weight: 700;
    color: var(--black);

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-weight: 700;
    }
}

@media (max-width: 992px) {
    .FindTireContainer {
        padding: 40px 36px;
    }
}

.TireSpecs {
    h5 {
        font-size: 32px;
        font-weight: 700;
        text-transform: uppercase;
        line-height: normal;
        letter-spacing: 0.322px;
    }
}

.TireSpecsType {
    width: 100%;

    .dropdowm {
        width: 100%;
    }

    .dropdown-toggle {
        margin-bottom: 15px;
        padding: 10px 23px;
        font-weight: 700;
        justify-content: space-between;
        align-items: center;
        display: flex;
        width: 100%;
        background-color: transparent;
        color: var(--black);
        text-align: start;
        border: 2px solid var(--black);
        border-radius: 15px;

        i {
            transition: all 0.2s ease-in-out;
        }
    }

    .dropdown-toggle::after {
        display: none;
    }

    .dropdown-menu {
        border-radius: 20px;
        padding-top: 15px !important;
        padding: 0px 22px;
        padding-bottom: 120px;
        width: 100%;
        box-shadow: 2.239px 2.239px 5.597px 0px rgba(0, 0, 0, 0.25);
    }

    .show {
        i {
            transform: rotate(180deg);
        }
    }

    .DropDownList {
        margin-top: 5px;
        max-height: 400px;
        overflow-y: auto;
        padding: 28px;
        font-weight: 400;
        border-radius: 16.792px;
        border: 1px solid var(--gray-300);
    }
}

.ModalFilterRow .TireSpecsType .dropdown-toggle {
    margin-bottom: 0;
}

.ModalFilterBuscar {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 700;
    border-radius: 15px;
    padding: 10px 28px;
    white-space: nowrap;
    border: none;
}

.ModalFilterBuscar:hover {
    background-color: #b80303;
    color: #fff;
}

.DropDownListSearch {
    font-size: 10px;
    padding: 5px 15px;
    width: 100%;
    border-radius: 20px;
    border-color: var(--black);
}

.DropDownSearchIcon {
    font-size: 12px;
    position: absolute !important;
    top: 30%;
    right: 5%;
    transform: rotate(0deg) !important;
}

@media (max-width: 992px) {

    .DropDownSearchIcon,
    .DropDownListSearch {
        font-size: 16px;
    }
}

.TireSpecs,
.TireCards {
    .ModalFilterBuscar {
        padding: 10px !important;
        color: var(--white);
        background-color: var(--primary-color) !important;
        border: 2px solid var(--primary-color);
        width: 100%;
    }

    .ModalFilterBuscar:hover {
        background-color: transparent !important;
        color: var(--primary-color);
    }

    button {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 12px;
        background-color: transparent;
        font-size: 18px;
        color: var(--primary-color);
    }
}

.close-modal-button {
    aspect-ratio: 1/1;
    height: 45px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    width: fit-content;
    margin-left: auto;
    margin-bottom: 40px;

    i {
        color: var(--primary-color);
    }
}

.TireCards {
    h1 {
        font-size: 32px;
    }

    .green-button-outline {
        background-color: var(--primary-color);
    }

    .green-button-outline:hover {
        background-color: var(--white);
        color: var(--primary-color);
        border: var(--primary-color);
    }

    .product-badge {
        border-color: var(--primary-color);
        color: var(--primary-color);
    }

    .inputValue {
        font-size: 20px;
    }
}

.banner-filter-box {
    z-index: 99;
    position: fixed;
    padding: 3px 0px;
    padding-left: 20px;
    top: 75%;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    /* Faz a largura se ajustar ao conteúdo */
    background: #fff !important;
    border-radius: 40px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}

@media (max-height: 810px) {
    .banner-filter-box {
        top: 83%;
    }
}

@media (max-width: 992px) {
    .banner-filter-box {
        padding-left: 60px;
        padding: 10px 0px;
    }
}

.banner-filter {
    display: flex;
    justify-content: center;
}

.info-banner {
    background: linear-gradient(to bottom, #e30404, #b10303, #490101, #000000);
    /* Gradiente de vermelho para um tom mais escuro */
    color: #fff;
    padding: 15px 0;
}

.info-banner .col-md-3 {
    border-right: none;
    padding-right: 0px;
    padding-left: 0px;
    /* Remove a linha divisória vertical */
}

@media (min-width: 1400px) {
    .info-banner .col-md-3 {
        padding-right: 20px;
        padding-left: 20px;
    }
}

.info-banner .col-md-3:last-child {
    border-right: none;
}

.find-tire-floating {
    z-index: 99;
    position: fixed;
    bottom: 110px;
    /* Acima do WhatsApp */
    right: 40px;
    transition: transform 0.2s ease-in-out;
}

.find-tire-floating button {
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .find-tire-floating {
        bottom: 80px;
        right: 12px;
    }
}

.find-tire-center-floating {
    position: fixed;
    top: 25%;
    /* Ajuste aqui para subir o botão */
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 18px;
}

@media (max-width: 768px) {
    .find-tire-float-banner {
        bottom: 80px;
        right: 12px;
        min-width: 220px;
        min-height: 60px;
        padding: 0 6px 0 14px;
    }
}

.custom-radio:checked {
    accent-color: var(--primary-color);
}

.custom-radio {
    pointer-events: none;
}

.custom-radio-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.custom-radio-input {
    opacity: 0;
    position: absolute;
    left: 0;
    width: 22px;
    height: 22px;
    margin: 0;
    z-index: 2;
    cursor: pointer;
}

.custom-radio-fake {
    width: 22px;
    height: 22px;
    border: 2px solid #e30404;
    border-radius: 50%;
    background: #fff;
    margin-right: 10px;
    position: relative;
    z-index: 1;
    transition: border-color 0.2s;
}

.custom-radio-input:checked+.custom-radio-fake::after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background: #e30404;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
}

.transition-timing-linear {
    transition-timing-function: linear;
}

.footer-brands .swiper-slide {
    img {
        width: 100%;
    }
}

.banner-filter-button {
    transition: all 0.4s ease-in-out;
    border-radius: 40px;
    padding: 10px 40px;
    font-size: 20px;
    background-color: var(--primary-color);
}

.banner-filter-button:hover {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .banner-filter-button {
        padding: 10px 25px;
    }
}

@media (max-width: 768px) {
    .banner-filter-text {
        margin-left: 60px;
    }

    .banner-filter-subtitle {
        font-size: 0.95rem;
    }
}

.info-banner-col {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.banner-filter-title {
    font-size: 12px;
    font-weight: 700;
}

.info-banner-custom-width {
    padding: 0px 45px;
    max-width: unset;

    .truck-icon {
        font-size: 38px;
    }

    .fa-whatsapp {
        font-size: 45px;
    }

    .info-banner-number {
        font-size: 46px;
    }
}

@media (min-width: 1536px) {
    .info-banner-custom-width {
        padding: 0px 80px;
    }
}

.featured-tire-button {
    padding: 13px 50px;
}

.info-banner-text-normal {
    font-style: normal !important;
}

@media (max-width: 992px) {
    .custom-margin {
        margin-right: 35px !important;
    }
}

.footer-brands-swiper .swiper-slide {
    max-height: 200px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

    img {
        width: 60%;
        margin-top: auto;
        margin-bottom: 20px;
    }
}

@media (max-width: 992px) {
    .footer-brands-swiper .swiper-slide {
        max-height: 90px;

        img {
            width: 100%;
        }
    }
}

.black-overlay {
    background-color: black;
    opacity: 0.3;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.me-50 {
    margin-right: 50%;
}

@media (max-width: 992px) {
    .me-50 {
        margin-right: 30%;
    }
}

.rate-modal-open {
    background-color: transparent !important;
    color: var(--primary-color);
}

.rate-modal-open:hover {
    background-color: var(--primary-color) !important;
    color: var(--white);
}

.info-banner-text,
.info-banner-text-icon {
    margin-bottom: 0;
    text-align: start;
}

.info-banner-text-icon {
    font-size: 2.7rem;
    font-weight: 700;
}

.info-banner-text {
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.4;
    font-size: 16px;
}

.whatsapp-icon {
    text-decoration: none;
    color: var(--white);
}

.addToCartBtn {
    padding: 12px 30px;
}

@media (min-width: 992px) {
    .custom-pad {
        padding: 0px 230px;
    }
}

.video-banner-container {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    position: absolute !important;
}

@media (max-width: 992px) {
    .video-banner-container {
        justify-content: center;

        .custom-pad {
            padding: 0 !important;
        }
    }
}

.custom-pad {
    padding-left: 0px !important;
    max-width: 70%;
}

.find-your-tire-float {
    transition: all 0.4s ease-in-out;
    z-index: 100;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    position: fixed;
    width: fit-content;
    max-width: 1000px;
    background-color: #ffffff;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 45px;
    border-radius: 50px;
}

.find-your-tire-float.at-bottom {
    bottom: 2%;
}

.find-your-tire-float .content {
    max-width: 100%;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

.reduced {
    background-color: transparent;
    box-shadow: none;
    padding: 10px 0px;
    gap: 0 !important;
    max-width: 100px;
    left: 3%;
    transform: translateX(0);

    .content {
        max-width: 0%;
        margin: 0 !important;
    }
}

.find-your-tire-float .content span:first-child {
    color: var(--FR-Black, #000);
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.322px;
    margin-bottom: 5px;
}

.find-your-tire-float .content span:last-child {
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
}

.open-tire-finder-button {
    padding: 13px 28px;
    border-radius: 30px;
    border: 2px solid var(--primary-color);
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease-in-out;

    i {
        height: fit-content;
        color: var(--white);
        font-size: 20px;
    }
}

.open-tire-finder-button:hover {
    background-color: var(--white);

    i {
        color: var(--primary-color);
    }
}

@media (max-width: 992px) {
    .find-your-tire-float {
        width: 90%;
        bottom: 4%;
    }

    .find-your-tire-float .content span:first-child {
        font-size: 10px;
        white-space: nowrap;
    }

    .find-your-tire-float .content span:last-child {
        font-size: 15px;
        white-space: nowrap;
    }
}

.max-w-100 {
    max-width: 100% !important;
}

.tire-tutorial-wrapper {
    width: 100%;
    display: flex;
}

.tire-tutorial {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

@media (min-width: 1080px) {
    .tire-tutorial {
        width: 50%;
    }

    .tire-tutorial-wrapper {
        padding-right: 18%;
    }

    .TireSpecsType {
        width: 28% !important;
    }

    .ModalFilterBuscar {
        width: 18% !important;
    }
}
