/* ----------------------------- Header ---------------------------- */
/* ========== Menu top =========== */
.menu-top {
    background-color: var(--bg-color-222);
}

.menu-top__flex {
    justify-content: space-between;
}

.menu-top__left {}

.select-group {
    position: relative;
    margin: 0 16px;
    cursor: pointer;
}

.select-group:first-child {
    margin-left: 0;
}

.select-group:first-child .select-group-span::after {
    content: "";
    position: absolute;
    left: calc(100% + 16px);
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 1.5px;
    height: 14px;
    background-color: var(--border-color);
    border-radius: 10px;
}

.select-group span {
    font-size: 12px;
    color: var(--text-color-888);
}

.select-group__language,
.select-group__currency,
.quick-access--dropdown {
    position: absolute;
    top: calc(100% + var(--menu-top-padding) + 1px);
    min-width: max-content;
    background: var(--bg-color);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 999;
}

.select-group__language {
    max-width: 150px;
}

.select-group__currency {
    max-width: 100px;
}

.select-group__language::before,
.select-group__currency::before {
    content: "";
    position: absolute;
    bottom: 100%;
    border: 10px solid;
    border-color:
        transparent transparent var(--bg-color) transparent;
}

.select-group__language::after,
.select-group__currency::after {
    content: "";
    position: absolute;
    top: -10px;
    display: block;
    width: 100%;
    height: 14px;
}

.select-group__language::before {
    left: 14px;
}

.select-group__currency::before {
    left: 18px;
}

.select-group__language ul li,
.select-group__currency ul li {
    display: block;
    padding: 12px 10px;
    font-size: 12px;
    color: var(--text-color-888);
    text-transform: uppercase;
}

.select-group__language ul li {
    padding-right: 18px;
}

.select-group__currency ul li {
    padding: 8px 12px;
    padding-right: 32px;
}

.select-group__language ul li:hover,
.select-group__currency ul li:hover {
    background-color: var(--select-color);
}

.menu-top__right {}

.menu-top__right li {
    padding: var(--menu-top-padding) 20px;
    border-right: 1px solid var(--border-color);
}

.menu-top__right li:first-child {
    border-left: 1px solid var(--border-color);
}

.menu-top__right--link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-color-888);
    text-decoration: none;
}

/* hover vào <a>: CHỈ chữ đổi màu */
.menu-top__right--link:hover .text {
    color: var(--text-hover-color);
}

/* ====== ANIMATION NHÁY ICON KHI RỜI CHUỘT ====== */
@keyframes icon-blink {
    0% {
        color: var(--text-color-888);
    }

    40% {
        color: var(--text-hover-color);
    }

    70% {
        color: var(--text-hover-color);
    }

    100% {
        color: var(--text-color-888);
    }
}

/* khi KHÔNG hover nữa -> icon nháy */
.menu-top__right--link:not(:hover) .icon {
    animation: icon-blink 0.15s ease;
}


/* ========== Menu center =========== */
.menu-center {
    padding: 40px 0 10px;
}

.menu-center__logo {
    width: 180px;
    max-width: 200px;
}

.menu-center__logo a {
    display: block;
}

.menu-center__logo a img {
    width: 100%;
    max-width: 100%;
}

.menu-center__wrap-text {
    flex: 1;
    gap: 16px;
    padding-left: 120px;
}

.menu-center__grid-group {
    gap: 10px;
    padding: 0 10px 20px;
}

.menu-center__grid-group>span {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 13px;
    text-align: center;
    color: var(--text-color-666);
    background-color: #eaeaea;
    padding: 14px;
    border-radius: 50%;
    overflow: hidden;
    transition: color 0.3s ease;
}

.menu-center__grid-group>span i:hover {
    cursor: pointer;
}

.menu-center__grid-group>span::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--text-hover-color);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 0;
}

/* hover: chữ trắng lên và nền slide lên */
.menu-center__grid-group>span:hover {
    color: #fff;
}

.menu-center__grid-group>span:hover::after {
    transform: translateY(0);
}

/* chữ nằm trên lớp nền */
.menu-center__grid-group>span>* {
    position: relative;
    z-index: 1;
}

.menu-center__grid-group-text p {
    color: var(--text-color-666);
    font-size: 12px;
}

.menu-center__grid-group-link {
    text-transform: uppercase;
    font-size: 14px;
    color: var(--text-color-555);
}

.menu-center__grid-group-link:hover,
.menu-center__grid-group-link.active {
    color: var(--text-hover-color);
}

.menu-center__grid-group-text>span {
    font-size: 12px;
    color: var(--text-color-666);
}


/* ========== Menu bottom =========== */
.menu-bottom {}

.menu-bottom__wrapper {
    position: relative;
    margin: 0 15px;
    border-top: 1px dashed #ababab;
    border-bottom: 1px dashed #ababab;
}

.menu-bottom__wrapper::before,
.menu-bottom__wrapper::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
}

.menu-bottom__wrapper::before {
    top: -3px;
    border-top: 1px dashed #ababab;
}

.menu-bottom__wrapper::after {
    bottom: -3px;
    border-bottom: 1px dashed #ababab
}

.menu-bottom__navbar,
.menu-bottom__hidden-search {
    height: 48px;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-bottom__navbar {
    gap: 30px;
    grid-template-columns: 1fr auto auto;
    visibility: visible;
    opacity: 1;
}

.menu-bottom__navbar.is-hidden {
    visibility: hidden;
    opacity: 0;
}

.menu-bottom__list {}

.menu-bottom__item {}

.menu-bottom__item-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-color-333);
    text-transform: uppercase;
    padding: 0 30px;
}

.menu-bottom__item-link:first-child {
    padding-left: 0;
}

.menu-bottom__item-link:hover,
.menu-bottom__item-link.active {
    color: var(--text-hover-color);
}

.menu-bottom__search-icon {
    display: inline-flex;
    align-items: center;
    height: inherit;
    font-size: 14px;
    color: var(--text-color-666);
    margin-right: 30px;
    cursor: text;
}

.menu-bottom__cart {
    position: relative;
    color: var(--text-color-666);
    font-size: 1.2em;
}

.menu-bottom__cart::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -30px;
    width: 1.5px;
    height: 20px;
    background-color: #eaeaea;
    transform: translateY(-50%);
}

.menu-bottom__cart--products {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    min-width: 300px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.menu-bottom__cart--products::before,
.menu-bottom__cart--products::after {
    content: " ";
    position: absolute;
    bottom: 99%;
    left: 20px;
    left: inherit !important;
    width: 0;
    height: 0;
    border: solid transparent;
    pointer-events: none;
}

.menu-bottom__cart--products::before {
    right: 20px !important;
    border-width: 20px;
    border-color: rgba(234, 234, 234, 0);
    border-bottom-color: #eaeaea;
    margin-left: -11px;
}

.menu-bottom__cart--products::after {
    right: 21px !important;
    border-width: 19px;
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #fff;
    margin-left: -10px;
}

.menu-bottom__cart--products ul li {
    display: block;
}

.menu-bottom__cart-count {
    color: var(--text-hover-color);
}

.menu-bottom__hidden-search {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.menu-bottom__hidden-search {
    position: absolute;
    inset: 0;
}

.menu-bottom__hidden-search.is-hover {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.menu-bottom__hidden-search input {
    height: inherit;
    color: #666;
    padding-left: 20px;
}

.menu-bottom__hidden-search input::placeholder {
    color: #c8c8c8;
}

.menu-bottom__hidden-search a {
    position: relative;
    display: block;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-hover-color);
    text-transform: uppercase;
}

.menu-bottom__hidden-search a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.5px;
    height: 30px;
    background: #eaeaea;
    border-radius: 3px;
    transform: translateY(-50%);
}


/* ------------------------ Content ------------------------- */
/* ================== AUTO SHOW BANNER AND HOVER OVERLAY BANNER ================== */
.image-show-section {
    display: flex;
    gap: 30px;
}

.image-show.swiper {
    position: relative;
    overflow: hidden;
}

.image-slide {
    width: 100%;
    height: 100%;
}

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

.custom-pagination {
    position: absolute;
    bottom: 20px !important;
    left: 50%;
    transform: translateX(-50%);
}

.custom-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d0d0d0;
    opacity: 1;
    margin: 0 6px !important;
    transition: all 0.3s ease;
}

.custom-pagination .swiper-pagination-bullet-active {
    background: #e53935;
    /* đỏ chói */
    transform: scale(1.1);
}

.image-layout-animation {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.image-animation__first {
    width: 100%;
    height: 100%;
}

.image-animation__first img {
    width: 100%;
    height: 100%;
}

.image-animation__second {
    display: flex;
    width: 100%;
    height: 100%;
    gap: 30px;
}

.image-animation__second img {
    width: 100%;
    height: 100%;
}

.image-animation__first a,
.sofa-italia a,
.discount-15-percent a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    transition: all 0.25s ease;
}

.image-animation__first a {
    background-color: #333;
}

.image-animation__first a img {
    transition: all 0.3s ease;
}

.image-animation__first a:hover img {
    opacity: 0.3;
}

.image-animation__first a::before,
.image-animation__first a::after {
    content: "";
    position: absolute;
    inset: 15px;
}

.image-animation__first a::before {
    transform: scale(0, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.8);
}

.image-animation__first a::after {
    transform: scale(1, 0);
    border-left: 1px solid rgba(255, 255, 255, 0.8);
    border-right: 1px solid rgba(255, 255, 255, 0.8);
}

.image-animation__first a:hover::before,
.image-animation__first a:hover::after {
    transform: scale(1);
    transition: all 0.3s ease-out 0s;
}

.sofa-italia a::before,
.sofa-italia a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 0;
    transition: all 0.3s ease-out 0s;
}

.sofa-italia a::before {
    left: 0;
}

.sofa-italia a::after {
    right: 0;
}

.sofa-italia a:hover::before,
.sofa-italia a:hover::after {
    width: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.discount-15-percent a::before {
    background: url(../imgs/plus.png) no-repeat scroll center center / 60px 60px rgba(0, 0, 0, 0.3);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease 0s;
    transform: scale(0.4) rotateY(180deg);
}

.discount-15-percent a:hover::before {
    visibility: visible;
    opacity: 0.6;
    transform: scale(1) rotate(0deg);
}


/* ================= LATEST, BEST SELLER, FEATURED ================== */
.product-choose__link {
    position: relative;
    display: block;
    padding: 0 20px;
    font-size: 20px;
    color: var(--text-color-333);
    text-transform: uppercase;
}

.latest {
    padding-left: 0;
}

.best-seller {
    position: relative;
}

.product-choose__link span {
    position: relative;
}

.product-choose__link span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--text-color-333);
    visibility: hidden;
    opacity: 0;
}

.product-choose__link::after {
    content: "";
    position: absolute;
    border: 5px solid;
    border-color: #000000 transparent transparent transparent;
    top: calc(100% + 2px);
    left: 50%;
    visibility: hidden;
    opacity: 0;
    transform: translateX(-50%);
}

.product-choose__link.latest::after {
    left: 40%;
}

.product-choose__link.active::after,
.product-choose__link:hover::after,
.product-choose__link.active span::after,
.product-choose__link:hover span::after {
    visibility: visible;
    opacity: 1;
}

.best-seller::before,
.best-seller::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 2px;
    height: 15px;
    background-color: #eaeaea;
    z-index: 1;
}

.best-seller::before {
    left: 0;
}

.best-seller::after {
    right: 0;
}

.line {
    display: block;
    height: 2px;
    background-color: #eaeaea;
    border-radius: 3px;
}

.product-wrapper {
    gap: 20px;
    margin-top: 20px;
}

.product-item {
    position: relative;
    overflow: hidden;
}

.on-sale {
    position: absolute;
    top: 6px;
    right: -35px;
    left: auto;
    bottom: auto;
    font-size: 10px;
    color: #fff;
    text-transform: uppercase;
    background-color: var(--text-hover-color);
    padding: 0 40px;
    transform: rotate(45deg);
    z-index: 1;
}

.fade-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideIn 0.6s ease forwards;
    animation-delay: var(--delay);
}

@keyframes fadeSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-image {
    position: relative;
    width: 100%;
    min-height: auto;
    border: 1px solid #eaeaea;
    overflow: hidden;
}

/* Skeleton loading */
.product-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg,
            #f0f0f0 40%,
            #e0e0e0 50%,
            #f0f0f0 60%);
    background-size: 200% 100%;
    animation: skeleton 1.2s infinite;
    z-index: 1;
}

@keyframes skeleton {
    to {
        background-position: -200% 0;
    }
}

.product-image .product-image__wrap {
    display: block;
    width: 100%;
    min-height: 100%;
}

.product-image .product-image__wrap img {
    width: 100%;
    min-height: 100%;
}

/* Image loading effect */
.product-image img {
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.6s ease, filter 0.6s ease;
}

/* Khi load xong */
.product-image.loaded::before {
    display: none;
}

.product-image.loaded img {
    opacity: 1;
    filter: blur(0);
}

.product-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 76px;
}

.product-action__group {
    display: inline-flex;
    width: 100%;
    height: calc(100% / 2);
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    gap: 8px;
    transition: all 0.5s ease;
}

.add-to-cart,
.emoji-action {
    position: absolute;
}

.add-to-cart {
    top: 0;
    transform: translateX(101%);
}

.emoji-action {
    bottom: 0;
    transform: translateX(-101%);
}

.product-item:hover .add-to-cart,
.product-item:hover .emoji-action {
    transform: translateX(0);
}

.add-to-cart {
    transition: all 0.5s ease;
    background: var(--text-color-333);
}

.add-to-cart:hover {
    background-color: var(--text-hover-color);
}

.emoji-action {
    justify-content: space-around;
    background-color: #fff;
}

.emoji-action a {
    flex: 1;
    text-align: center;
    color: var(--text-color-666);
    position: relative;
}

.emoji-action a:hover i {
    color: var(--text-hover-color);
}

.compare-btn::before,
.compare-btn::after {
    position: absolute;
    content: "";
    display: block;
    width: 1px;
    height: 148%;
    background-color: #eaeaea;
    top: -6px;
}

.compare-btn::before {
    left: -4px;
}

.compare-btn::after {
    right: -4px;
}

.emoji-title {
    position: absolute;
    bottom: calc(100% + 10px);
    padding: 2px 6px;
    width: max-content;
    font-size: 9px;
    text-align: center;
    color: #fff;
    line-height: 1.8;
    text-transform: initial;
    background-color: var(--text-hover-color);
    border-radius: 3px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.add-to-wishlist-btn .emoji-title {
    left: 2px;
}

.emoji-title::after {
    content: "";
    position: absolute;
    border: 10px solid;
    border-color: var(--text-hover-color) transparent transparent transparent;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
}

.add-to-wishlist-btn:hover .emoji-title,
.compare-btn:hover .emoji-title,
.quick-view-btn:hover .emoji-title {
    visibility: visible;
    opacity: 1;
}

.compare-btn .emoji-title {
    left: 10px;
}

.quick-view-btn .emoji-title {
    left: 0;
}

.product-text-group {
    padding: 10px 0;
}

.product-name,
.product-price,
.product-rating {
    text-align: center;
    display: block;
}

.product-name {
    transition: all 0.25s ease 0s;
}

.product-name,
.product-price__old-price {
    color: var(--text-color-666);
    font-size: 13px;
}

.product-price__old-price {
    position: relative;
}

.product-price__old-price::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(-10deg);
    display: block;
    width: 92%;
    height: 1px;
    background-color: #666;

}

.product-name:hover {
    color: var(--text-hover-color);
}

.product-price__new-price {
    font-size: 16px;
    font-weight: bold;
    color: var(--text-color-333);
    margin-left: 8px;
}

.product-rating {
    color: #dcdcdc;
    font-size: 11px;
}

.product-rating .fa-solid.fa-star {
    color: #f1d201;
}

#loadMoreBtn {
    padding: 0px 75px;
    height: 40px;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    color: var(--text-color-666);
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    background-color: transparent;
    transition: all 0.25s linear;
    cursor: pointer;
}

#loadMoreBtn:hover {
    background-color: var(--text-hover-color);
    color: #fff;
    border-color: var(--text-hover-color);
}

#loadMoreBtn.is-done {
    color: #fff;
    background-color: var(--text-hover-color);
    border-color: var(--text-hover-color);
    cursor: text;
}

#loadMoreBtn:disabled {
    opacity: 1;
}


/* ================= STATIC BANNER AXEL - TOOLS ================= */
.buy-now-group {
    background: #f0f0f0;
}

.buy-now-col__img {
    min-width: 608px;
    text-align: center;
}

.buy-now-col:last-child {
    padding: 28px;
    word-wrap: break-word;
}

.buy-now-col h2 {
    font-size: 50px;
    font-weight: 400;
    color: var(--text-color-333);
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.buy-now-col h4 {
    font-size: 14px;
    color: var(--text-color-333);
    line-height: 1.5;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.btn-buy-now {
    padding: 8px 26px !important;
}


/* =============== BANNER SECTION 2 ================ */
.banner-section-2 {
    gap: 30px;
}

.banner-section-2__left,
.banner-section-2__center,
.banner-section-2__right {
    width: 100%;
    height: 333px;
}

.banner-section-2__left a,
.banner-section-2__center a,
.banner-section-2__right a {
    width: 100%;
    height: 100%;
}

.banner-section-2__left a img,
.banner-section-2__center a img,
.banner-section-2__right a img {
    width: 100%;
    height: 100%;
}


/* ==================== SUGGEST COLLECTION =================== */
.collection-section {}

.suggest-collection__title {
    margin: 15px 0;
    font-size: 22px;
    color: var(--text-color-333);
    font-weight: bold;
    text-transform: uppercase;
}

.collection-list {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(9, 1fr);
}

.collection-list__item {
    border: 1px solid #eaeaea;
    position: relative;
}

.collection-list__item a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
}

.collection-list__item a .wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.collection-list__item a .wrap .wrap-image {
    height: calc(100% - 20px);
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.collection-list__item a .wrap .wrap-image img {
    width: 50%;
}

.collection-list__item a .wrap span {
    color: var(--text-color-333);
    font-size: 12px;
    min-height: 20px;
    padding-bottom: 8px;
}

.collection-list__item::before,
.collection-list__item::after {
    content: "";
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s linear;
}

.collection-list__item::before {
    display: block;
    height: 1px;
    width: 100%;
    background-color: #333;
    bottom: 0;

}

.collection-list__item::after {
    border: 10px solid;
    border-color: #333 transparent transparent transparent;
    left: 50%;
    transform: translateX(-50%);
}

.collection-list__item.active::before,
.collection-list__item:hover::before,
.collection-list__item.active::after,
.collection-list__item:hover::after {
    visibility: visible;
    opacity: 1;
}

.product-by-collection {
    margin-top: 20px;
}

.collection-swiper .product-image {
    width: unset;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--text-color-888) !important;
    top: 130px !important;
    background: #eaeaea5c !important;
    border: 1px solid #eaeaea !important;
    transition: all 0.3s linear !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--text-hover-color) !important;
    color: var(--bg-color) !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.2rem !important;
}

.swiper-button-next {}

.swiper-button-prev {}



/* ================== MOST VIEWED ================= */
.most-viewed-swiper .swiper-slide {
    display: grid;
    align-items: unset;
    height: auto !important;
}

.most-viewed-swiper .swiper-wrapper {
    row-gap: 20px;
}

.most-viewed-items .product-image {
    max-width: 120px;
    max-height: 150px;
    transition: border 0.6s ease-out;
}

.most-viewed-items .product-image:hover {
    border: 1px solid var(--text-hover-color);
}

.most-viewed-items .product-text-group {
    padding-left: 8px;
    padding-right: 8px;
}

.most-viewed-items .product-text-group .product-name {
    text-overflow: ellipsis;
    white-space: normal;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.most-viewed-items .product-text-group .product-price .product-price__new-price {
    margin-left: 0;
}

.most-viewed-items .product-text-group .product-name,
.most-viewed-items .product-text-group .product-price,
.most-viewed-items .product-text-group .product-rating {
    text-align: left;
}

.most-viewed__add-to-cart {
    display: block;
    color: var(--text-color-888);
    font-size: 12px;
    text-transform: uppercase;
    transition: color 0.3s linear;
}

.most-viewed__add-to-cart:hover {
    color: var(--text-hover-color);
}


/* ================== LATEST POSTS ================= */
.latest-post-section {
    padding-top: unset;
}

.latest-post__title {
    margin: 15px 0;
    padding-right: 20px;
    font-size: 22px;
    color: var(--text-color-333);
    font-weight: bold;
    text-transform: uppercase;
}

.blogs-swiper,
.brand-swiper {
    width: 100%;
}

.blogs-item .grid-auto-1fr {
    gap: 20px;
    align-items: unset;
    margin-top: 20px;
}

.blogs-time {
    border: 1px solid #eaeaea;
    padding: 10px;
    text-align: center;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    height: fit-content;
}

.blogs-item .image-animation__first {
    height: 190px;
}

.blogs-time span {
    font-size: 12px;
    line-height: 12px;
    color: var(--text-color-666);
}

.blogs-time .day {
    font-size: 25px;
    line-height: 25px;
    color: var(--text-color-333);
    font-weight: 700;
    text-transform: uppercase;
}

.blogs-text-group p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-height: 1.5em;
    max-height: 4.5em;
    color: var(--text-color-666);
    font-size: 12px;
}

.blogs-post-by {
    color: var(--text-hover-color);
    display: block;
    font-size: 12px;
    line-height: 18px;
}

.blogs-link-to-img {
    font-size: 14px;
    line-height: 14px;
    display: block;
    margin-bottom: 10px;
    color: var(--text-color-333);
    font-weight: 600;
}

.brand-section {
    margin-top: 16px;
    padding: 20px 0;
    border-top: 1px solid #eaeaea;
}

.brand-swiper {
    overflow: hidden;
}

.brand-item {}

.brand-item img {
    width: 100%;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
}

.brand-item img:hover {
    background-color: #f5f5f5;
}

/* ------------------------ Footer ------------------------- */
/* ===================== First Footer ====================== */
.footer {
    background-color: #f8f8f6;
    padding: 40px 0;
}

.first-footer {}

.footer-wrapper {
    gap: 16px;
    align-items: unset;
}

.footer-group {}

.group-footer__title {
    font-size: 15.996px;
    font-weight: 800;
    color: var(--text-color-333);
    text-transform: uppercase;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 20px;
    overflow: hidden;
}

.group-footer__list {
    padding-top: 9px;
}

.group-footer__item {
    display: block;
    line-height: 30px;
}

.group-footer__item-link {
    display: block;
    font-size: 12px;
    color: var(--text-color-666);
    padding-right: 10px;
    transition: all 0.1s ease-out;
}

.group-footer__item-link:hover {
    color: var(--text-hover-color);
    margin-left: 8px;
}

.input-email {
    margin-bottom: 20px;
    max-width: 100%;
    width: 100%;
    padding: 6px 10px;
    border: 1px solid #eaeaea;
    color: #c8c8c8;
    transition: all 0.2s ease-out;
}

.input-email::placeholder {
    color: #c8c8c8;
}

.input-email:hover {
    border-color: #cdcdcd;
    color: var(--text-color-666);
}

.btn-subcribe,
.btn-buy-now {
    display: block;
    width: fit-content;
    background-color: #222;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px 14px;
    transition: all 0.25s linear;
}

.btn-buy-now {
    background-color: #333;
}

.btn-subcribe:hover,
.btn-buy-now:hover {
    background-color: var(--text-hover-color);
}

.contact-group {
    gap: 14px;
    margin-bottom: 16px;
}

.contact-group>span {
    width: 40px;
    height: 40px;
    font-size: 13px;
    color: var(--text-color-888);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #eaeaea;
    transition: all 0.25s linear;
}

.contact-group>span:hover {
    color: var(--text-hover-color);
    border: 1px solid var(--text-hover-color);
}

.mail-link {
    color: var(--text-color-666);
    font-size: 12px;
}

.mail-link:hover {
    color: var(--text-hover-color);
}


/* ==================== Second Footer ======================= */
.second-footer {
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 10px;
}


/* ----------- Sidebar and overlay on medium screen --------- */
.menu-bottom__sidebar,
.menu-bottom__overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease-in-out;
}

.menu-bottom__overlay {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(1px);
}

.menu-bottom__sidebar {
    background: #222;
    color: #999;
    padding: 15px;
    top: 0;
    width: 250px;
    height: 100%;
    transform: translateX(-100%);
}

.menu-bottom__sidebar.open {
    transform: translateX(0);
}

.menu-bottom__sidebar.open,
.menu-bottom__overlay.open {
    opacity: 1;
    visibility: visible;
}



/* ------------ Menu sidebar on medium screen ------------ */
.menu-bottom__sidebar {
    overflow-y: hidden;
    height: 100vh;
}

.menu-bottom__sidebar.has-scroll {
    overflow-y: auto;
}

.sidebar-menu {
    padding-bottom: 20px;
}

.menu-item {
    font-size: 12px;
    display: list-item;
}

.menu-item.has-children {}

.accr_header {
    position: relative;
    border-bottom: 1px solid #393939;
    line-height: 40px;
}

.accr_header a {
    color: #999;
    transition: all 0.25s ease 0s;
}

.accr_header a:hover {
    color: #fff;
}

.accr_header .btn_accor {
    font-size: 14px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.accr_header .btn_accor i {
    color: inherit;
    transition: all 0.25s ease 0s;
}

.accr_header .btn_accor:hover i {
    color: #fff;
}

.accr_content {
    padding-left: 15px;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: height 0.35s ease, opacity 0.25s ease;
}

.accr_content.open {
    opacity: 1;
}



/* ------------------------ Overlay ------------------------- */
.overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(78, 78, 78, 0.7);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transition:
        opacity 1s ease,
        visibility 1s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.overlay-center {
    border-radius: 4px;
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 800px;
    background-color: var(--bg-color);
    transform: translateX(-50%) translateY(-50%);
    z-index: 1000;
}

.overlay-form {
    padding: 30px;
    gap: 20px;
    padding-bottom: 50px;
}

.overlay__btn-close {
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    width: 42px;
    height: 42px;
    background-color: #000000;
    cursor: pointer;
    border-top-right-radius: 4px;
}

.overlay__btn-close:hover {
    background-color: #000000d8;
}

.overlay-title {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 40px;
    line-height: 1.1;
}

.overlay-description {
    line-height: 2;
    margin: 10px 0;
}

.overlay-input-group {
    display: flex;
}

.overlay__input {
    border: 1px solid #d6d6d6;
    padding: 10px 10px;
    width: 300px;
    max-width: 300px;
    line-height: 1.1rem;
}

.overlay__subcribe-btn {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    color: #666;
    text-transform: uppercase;
    background-color: #ccc;
    padding: 10px 16px;
    transition: all 0.3s linear 0s;
}

.overlay__subcribe-btn:hover {
    background-color: var(--text-hover-color);
    color: var(--bg-color);
}

.grid-right {
    background: url('../imgs/5.png') no-repeat;
    background-position: center;
    background-size: contain;
    min-height: 100%;
}