/* BEGIN b-slide-2 */
.b-slide-2 {
    display: flex;
}
.b-slide-2 .b_thumb {
    position: relative;
    width: 80%;
}
.b-slide-2 .b_thumb img {
    animation-duration: 1s;
    animation-fill-mode: both;
}
.b-slide-2 .b_thumb .arrows {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    color: #fff;
    cursor: pointer;
    font-size: 10px;
    z-index: 9;
    position: absolute;
    top: 50%;
    width: 2.143em;
    height: 2.143em;
    box-shadow: 0 2px 2px 0 rgba(51, 51, 51, 0.14), 0 3px 1px -2px rgba(51, 51, 51, 0.2), 0 1px 5px 0 rgba(51, 51, 51, 0.12);
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.b-slide-2 .b_thumb .arrows::before {
    content: "";
    font-family: FontAwesome;
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.b-slide-2 .b_thumb .arrows:hover {
    color: #05a;
    box-shadow: 0 2px 2px 0 rgba(0, 85, 170, 0.14), 0 3px 1px -2px rgba(0, 85, 170, 0.2), 0 1px 5px 0 rgba(0, 85, 170, 0.12);
}
.b-slide-2 .b_thumb .prev {
    left: 5px;
}
.b-slide-2 .b_thumb .prev::before {
    content: "\f053";
}
.b-slide-2 .b_thumb .next {
    right: 5px;
}
.b-slide-2 .b_thumb .next::before {
    content: "\f054";
}
.b-slide-2 .b_thumb:hover .arrows {
    background-color: rgba(0, 85, 170, 0.3);
}
.b-slide-2 .b_thumb + .b_nav {
    margin-left: 5px;
}
.b-slide-2 .b_nav {
    width: 20%;
    position: relative;
}
.b-slide-2 .b_nav > ul {
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
}
.b-slide-2 .b_nav > ul li {
    width: 100%;
    border: 0px solid transparent;
    position: relative;
    overflow: hidden;
}
.b-slide-2 .b_nav > ul li::before {
    content: "";
    display: block;
    padding-bottom: 65%;
}
.b-slide-2 .b_nav > ul li > a {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    padding: 6px;
}
.b-slide-2 .b_nav > ul li > a > img {
    width: 100%;
}
.b-slide-2 .b_nav > ul li > a.is-active img {
    border: 2px solid var(--color-secondary);
    border-radius: 8px;
}
.b-slide-2 .b_nav + .b_thumb {
    margin-left: 5px;
}
.b-slide-2 .fadeIn {
    animation-name: fadeIn;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* END b-slide-2 */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

.product-cate {
    border-radius: 60px;
    border: 1px solid var(--Light-Secondary-50, #ffcf01);
    background: var(--Light-Primary-50, #f8edb0);
    color: var(--color-secondary);
    font-weight: 600;
    padding: 4px 8px;
    display: inline-block;
    margin-bottom: 16px;
}
.product-title {
    font-size: 34px;
    font-weight: 400;
    color: var(--color-secondary);
    font-family: var(--font-secondary);
    margin-bottom: 20px;
}
.product-desc {
    font-family: Montserrat;
}
.gallery-grid {
    column-count: 4;
    column-gap: 24px;
}
.gallery-item {
    margin-bottom: 24px;
    display: block;
}
.gallery-item img {
    border-radius: 12px;
}
@media (max-width: 575px) {
    .gallery-grid {
        column-count: 2;
        column-gap: 12px;
    }
    .gallery-item {
        margin-bottom: 12px;
    }
}
.product-gallery {
    margin-top: 40px;
}
.product-detail-title {
    border-radius: 4px 4px 0 0;
    background: #fcf8df;
    padding: 16px;
    font-size: 26px;
    font-family: var(--font-secondary);
    color: var(--color-secondary);
    width: 35%;
    margin-bottom: 20px;
}
.product-detail-title::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ffcf01;
}
.product-other {
    margin: 60px 0;
}
.product-other .item {
    margin: 0 12px;
}
@media (max-width: 575px) {
    .product-detail-title {
        width: 100%;
    }
}
.product-bg {
    background-color: #fcf8df;
    padding: 32px 0;
    margin-top: -20px;
}
