/* Banner */
.banner {
    overflow: hidden;
}

.banner__container {
    margin: 0 auto;
}
.banner__link {
    display: block;
    margin: 30px 0;
}
.banner__img {
    width: 100%;
    height: 350px;
    margin: 0 auto;
}

.banner .next-btn,
.banner .prev-btn {
    background-color: var(--primary-color);
    color: #fff;
    padding: 27px 20px;
}

.banner .prev-btn {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    left: 0;
}

.banner .prev-btn::after {
    font-size: 2rem;
    font-weight: 900;
}

.banner .next-btn {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    right: 0;
}

.banner .next-btn::after {
    font-size: 2rem;
    font-weight: 900;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

/*Left Silebar */
.category {
    margin: 0 0 12px;
    background-color: #fff;
}

.category__header {
    background-color: var(--primary-color);
    color: #fff;
    padding: 16px 0;
    position: relative;
}

.category__header::before {
    position: absolute;
    content: " ";
    top: 1px;
    left: 1px;
    right: 1px;
    border: #fff thin dashed;
}

.category__header::after {
    position: absolute;
    content: " ";
    bottom: 1px;
    left: 1px;
    right: 1px;
    border: #fff thin dashed;
}

.category__header h2{
    font-size: 1.5rem;
    margin: 0;
}

.category__header h2 i {
    margin: 0 8px 0 16px;
}

.category__menu {
    list-style: none;
    padding: 0;
    margin: 0;

}

.category__menu li,
.category__menu a {
    width: 100%;
    font-size: 1.4rem;
    color: #333;
    /* border-bottom: 1px solid #e8e8e8; */
    border-bottom: 1px solid #ededed;
}

.category__menu li:hover a{
    background-color: #e8e8e8;
    color: var(--primary-color);
}

.category__menu a {
    display: block;
    padding: 12px 8px 12px 36px;
    text-decoration: none;
}

.category__menu li:last-child {
    font-weight: bold;
    font-size: 1.4rem;
}

/* Button More Product */
.button_more {
    width: fit-content;
    margin: 12px auto;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 5px;
    font-size: 1.4rem;
    font-weight: 500;
}

.button_more a:hover {
    border-radius: 5px;
    background-color: var(--primary-color);
    color: #fff;
}

.button_more a {
    display: block;
    padding: 12px 24px;
    text-decoration: none;
    color: var(--primary-color);
}

.button_more a i {
    margin-left: 6px;
}

