@charset "UTF-8";

.page-content {
    padding-bottom: 93px;
}

.side-category {
    line-height: 1;
}

.side-category-title {
    padding-bottom: 3px;
    border-bottom: 1px solid #00B866;
}

.side-category-title .title-wrapper {
    padding-bottom: 21px;
    border-bottom: 1px solid #FC8C0B;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2px;
    text-align: center;
}

.side-category .list .item {
    position: relative;
    padding: 25px 13px 25px 13px;
    border-bottom: dashed 1px #FC8C0B;
}

.side-category .list .item:nth-child(2n) {
    border-bottom: dashed 1px #00B866;
}

.side-category .list .item a {
    color: #4D2E00;
}

.side-category .list .item a:hover {
    color: #00B866;
    text-decoration: none;
}

.side-category .list .item a:hover,
.side-category .list .item.active a {
    font-weight: bold;
    color: #00B866;
}

.product-list .product-card {
    border-radius: 5px;
    background: #fff;
    margin-bottom: 15px;
    line-height: 1;
    position: relative;
}

@media (min-width: 992px) {
    .product-list .product-card {
        margin-left: -8px;
        margin-right: -8px;
    }
}

.product-list .product-card:hover {
    box-shadow: 0px 3px 20px rgba(41, 26, 1, 28%);
}

.product-list .product-card .product-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.product-list .product-card .product-img:before {
    content: "";
    display: block;
    padding-bottom: 75%;
}

.product-list .product-card .product-name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    height: 58px;
    margin-top: 10px;
    margin-bottom: 6px;
    padding-left: 15px;
    padding-right: 15px;
}

.product-list .product-card .product-name a:hover,
.product-list .product-card .product-name a {
    color: #4D2E00;
    text-decoration: none;
}

.product-list .product-card .product-info {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 10px;
}

.product-list .product-card .product-info .spec {
    color: #4D2E00;
    margin-bottom: 6px;
    height: 20px;
}

.product-list .product-card .product-info .original-price {
    color: #CECECE;
    margin-bottom: 12px;
    margin-top: 12px;
    height: 22px;
}

.product-list .product-card .product-info .original-price .text {
    font-size: 14px;
    margin-right: 20px;
}

.product-list .product-card .product-info .original-price .value {
    font-size: 18px;
    font-weight: 500;
    text-decoration: line-through;
}

.product-list .product-card .product-info .price {
    flex: 1;
}

.product-list .product-card .product-info .price .text {
    vertical-align: middle;
    font-size: 14px;
    padding: 4px 8px 5px 9px;
    background: #FC8C0B;
    color: #fff;
    border-radius: 4px;
    margin-right: 11px;
}

.product-list .product-card .product-info .price .value {
    vertical-align: sub;
    color: #FC8C0B;
    font-size: 23px;
    font-weight: bold;
}

.product-list .product-card .btn-add-cart {
    position: relative;
    border: dashed 1px #00B866;
    height: 50px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    cursor: pointer;
}

.product-list .product-card .btn-add-cart .text {
    position: absolute;
    height: 18px;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    left: 50%;
    margin-left: -40px;
    font-weight: 500;
    color: #00B866;

}

.product-list .product-card .btn-add-cart .arrow {
    position: absolute;
    display: inline-block;
    content: "";
    width: 34px;
    height: 14px;
    background: url('data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2234.079%22%20height%3D%226.991%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%3E%3Crect%20fill%3D%22none%22%20height%3D%22402%22%20width%3D%22582%22%20y%3D%22-1%22%20x%3D%22-1%22%2F%3E%3C%2Fg%3E%3Cg%3E%3Cpath%20stroke-linejoin%3D%22round%22%20stroke-linecap%3D%22round%22%20stroke%3D%22%2300b866%22%20fill%3D%22rgba%280%2C0%2C0%2C0%29%22%20d%3D%22m0.50686%2C6.491l33.07214%2C0l-3.079%2C-5.991l3.02885%2C5.991z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    opacity: 1;
    right: 50%;
    margin-right: -40px;
}

.product-list .product-card .btn-add-cart,
.product-list .product-card .btn-add-cart .text,
.product-list .product-card .btn-add-cart .arrow {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.product-list .product-card:hover .btn-add-cart {
    background: #00B866;
    color: #fff;
    text-decoration: none;
}

.product-list .product-card:hover .btn-add-cart .text {
    color: #fff;
    margin-left: -16px;
}

.product-list .product-card:hover .btn-add-cart .arrow {
    opacity: 0;
    margin-right: 0px;
}

.product-list .product-card .btn-disabled {
    border: dashed 1px #a9a9a9;
    height: 50px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    position: relative;
}

.product-list .product-card .btn-disabled .text {
    position: absolute;
    height: 18px;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    left: 50%;
    margin-left: -16px;
    font-weight: 500;
    color: #a9a9a9;
}
.product-info {
    padding: 15px;
    background: #fff;
    border-radius: 5px;
    line-height: 1;
}

.product-info .product-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff;
    border-radius: 5px;
}

.product-info .product-img:before {
    content: "";
    display: block;
    padding-bottom: 75%;
}

.product-info .product-name {
    font-size: 22px;
    line-height: 1.5;
}

.product-info .product-name-line {
    height: 1px;
    background-image: linear-gradient(to right, #00B866 50%, rgba(255, 255, 255, 0) 0%);
    background-position: center;
    background-size: 14px 1px;
    background-repeat: repeat-x;
    padding: 13px 0;
}

.product-info .original-price {
    color: #CECECE;
    height: 22px;
}

.product-info .original-price .text {
    font-size: 14px;
    margin-right: 10px;
}

.product-info .original-price .value {
    font-size: 16px;
    text-decoration: line-through;
}

.product-info .price {
    margin-top: 12px;
    margin-bottom: 16px;
}

.product-info .price .text {
    vertical-align: middle;
    font-size: 14px;
    padding: 4px 8px 5px 9px;
    background: #FC8C0B;
    color: #fff;
    border-radius: 4px;
    margin-right: 15px;
}

.product-info .price .value {
    vertical-align: sub;
    color: #FC8C0B;
    font-size: 20px;
    font-weight: bold;
}

.product-info .product-intro-area {
    font-size: 15px;
    line-height: 1.8;
    height: 136px;
    overflow: hidden;
}

.product-info .product-intro-area ul {
    padding-inline-start: 18px;
    margin-bottom: 0;
    list-style-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210%22%20height%3D%2210%22%20viewBox%3D%22-1%20-1%202%202%22%3E%3Ccircle%20r%3D%220.6%22%20fill%3D%22%2300B866%22%2F%3E%3C%2Fsvg%3E");
}

.product-info .spec-title,
.product-info .qty-title {
    font-size: 14px;
    color: #00B866;
    flex: 0 0 48px;
}

.product-info .qty-input {
    background: #F6F6F6;
    border-radius: 5px;
    padding: 5px 8px;
}

.product-info .qty-inc {
    height: 22px;
    width: 22px;
    background-size: cover;
    background-color: #fff;
    background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2222%22%20height%3D%2222%22%20viewBox%3D%220%200%2022%2022%22%3E%3Ccircle%20cx%3D%2211%22%20cy%3D%2211%22%20r%3D%2211%22%20fill%3D%22%23fff%22%2F%3E%3Cg%20transform%3D%22translate%288.103%208.076%29%22%3E%3Cg%3E%3Cline%20x1%3D%226.849%22%20transform%3D%22translate%280%203.424%29%22%20fill%3D%22none%22%20stroke%3D%22%2300b866%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221%22%2F%3E%3Cline%20x2%3D%226.849%22%20transform%3D%22translate%283.424%29%20rotate%2890%29%22%20fill%3D%22none%22%20stroke%3D%22%2300b866%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
    cursor: pointer;
}

.product-info .qty-dec {
    height: 22px;
    width: 22px;
    background-size: cover;
    background-color: #fff;
    background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2222%22%20height%3D%2222%22%20viewBox%3D%220%200%2022%2022%22%3E%3Ccircle%20cx%3D%2211%22%20cy%3D%2211%22%20r%3D%2211%22%20fill%3D%22%23fff%22%2F%3E%3Cg%20transform%3D%22translate%287.564%2011.5%29%22%3E%3Cg%3E%3Cline%20x1%3D%226.849%22%20fill%3D%22none%22%20stroke%3D%22%2300b866%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
    cursor: pointer;
}

.product-info .qty-value {
    background: #F6F6F6;
    text-align: center;
    padding: 0px;
    border: 0;
}

.btn.type-1 {
    padding: 10px 20px;
    border: dashed 1px #00B866;
    border-radius: 5px;
    text-align: center;
    color: #00B866;
}

.btn.type-2 {
    padding: 10px 20px;
    background: #FC8C0B;
    border-radius: 5px;
    text-align: center;
    color: #fff;
}

.btn.type-3 {
    padding: 10px 20px;
    width: 100%;
    border: dashed 1px #a9a9a9;
    background: #fff;
    border-radius: 5px;
    text-align: center;
    color: #a9a9a9;
    margin-top: 20px;
    cursor: default;
}

i.shopping-cart-green:before {
    display: inline-block;
    content: "";
    width: 18px;
    height: 18px;
    background: url('/assets/img/shopping-cart-icon-green.svg') no-repeat center center;
    background-size: 100% 100%;
}

i.shopping-cart-white:before {
    display: inline-block;
    content: "";
    width: 18px;
    height: 18px;
    background: url('/assets/img/shopping-cart-icon-white.svg') no-repeat center center;
    background-size: 100% 100%;
}

i.shopping-bag-white:before {
    display: inline-block;
    content: "";
    width: 18px;
    height: 18px;
    background: url('/assets/img/shopping-bag-icon-white.svg') no-repeat center center;
    background-size: 100% 100%;
}

@media (max-width: 1199px) {

    .btn.type-1 i,
    .btn.type-2 i {
        display: none;
    }
}

.product-content {
    margin-top: 30px;
    padding: 18px 21px;
    border-radius: 15px;
    background: #fff;
}

.product-content .product-content-title {
    font-weight: 500;
    font-size: 20px;
    color: #00B866;
    line-height: 2;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .product-page .product-info .original-price {
        flex: 1;
        text-align: center;
    }

    .product-page .product-info .product-intro-area {
        padding: 16px 15px;
        background: #F6F6F6;
        border-radius: 5px;
        height: auto;
    }

    .product-page .product-info .product-intro-area li {
        word-break: break-all;
    }

    .product-page .product-info {
        margin-left: -15px;
        margin-right: -15px;
    }

    .product-page .product-info .product-name {
        margin-top: 13px;
    }

    .product-content {
        position: relative;
        background: rgba(255, 255, 255, 0);
        padding-top: 24px;
        padding-right: 0;
        padding-left: 0;
        margin-top: 0;
    }

    .product-content .product-content-title {
        width: 86px;
        padding-right: 15px;
        padding-left: 15px;
    }

    .leaf-product-content:before {
        position: absolute;
        content: "";
        display: block;
        width: 92px;
        height: 84.11px;
        background: url(/assets/img/leaf-2.png);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: contain;
        left: -20px;
        top: -15px;
        transform-origin: 1% 78.5%;
        animation-name: leaf-animation-product-content;
        animation-duration: 2s;
        animation-timing-function: ease-out;
        animation-iteration-count: infinite;
    }
}

@keyframes leaf-animation-product-content {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(5deg);
    }

    90% {
        transform: rotate(-2deg);
    }

    100% {
        transform: rotate(0deg);
    }
}


.product-bottom .button {
    height: 61px;
    background: #00B866;
    cursor: pointer;
}

.product-bottom .bottom-btn-2 {
    background: #FC8C0B;
}

.product-bottom .button .text {
    color: #fff;
    font-size: 18px;
    letter-spacing: 3px;
}

.product-bottom .bottom-cart-disabled {
    height: 61px;
    background: #ffffff;
    border: solid 1px #cacaca;
}

.product-bottom .bottom-cart-disabled .text {
    color: #a9a9a9;
    font-size: 18px;
    letter-spacing: 3px;
}

.bottom-buy-area {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1035;
}

.bottom-buy-area .bottom-btn .button {
    height: 60px;
    background: #00B866;
    cursor: pointer;
}

.bottom-buy-area .bottom-btn .button .text {
    color: #fff;
    font-size: 18px;
    letter-spacing: 3px;
}

.bottom-buy-area .bottom-btn .button.bottom-buy {
    background: #FC8C0B;
}

.bottom-buy-area {
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1035;
}

.bottom-buy-area .buy-area {
    padding: 30px 15px 5px 15px;
    background: #fff;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.bottom-buy-area .buy-area .close-buy {
    position: absolute;
    right: 15px;
    top: -20px;
}

.bottom-buy-area .buy-area .product-name {
    font-size: 22px;
    line-height: 1.5;
}

.bottom-buy-area .buy-area .product-name-line {
    height: 1px;
    background-image: linear-gradient(to right, #00B866 50%, rgba(255, 255, 255, 0) 0%);
    background-position: center;
    background-size: 14px 1px;
    background-repeat: repeat-x;
    padding: 16px 0;
}

.bottom-buy-area .buy-area .original-price {
    color: #CECECE;
    height: 22px;
}

.bottom-buy-area .buy-area .original-price .text {
    font-size: 14px;
    margin-right: 10px;
}

.bottom-buy-area .buy-area .original-price .value {
    font-size: 16px;
    text-decoration: line-through;
}

.bottom-buy-area .buy-area .price {
    margin-top: 16px;
    margin-bottom: 16px;
    text-align: center;
}

.bottom-buy-area .buy-area .price .text {
    vertical-align: middle;
    font-size: 14px;
    padding: 4px 8px 5px 9px;
    background: #FC8C0B;
    color: #fff;
    border-radius: 4px;
    margin-right: 15px;
}

.bottom-buy-area .buy-area .price .value {
    vertical-align: sub;
    color: #FC8C0B;
    font-size: 20px;
    font-weight: bold;
}

.bottom-buy-area .buy-area .spec-title,
.bottom-buy-area .buy-area .qty-title {
    font-size: 14px;
    color: #00B866;
    flex: 0 0 48px;
}

.bottom-buy-area .buy-area .qty-input {
    background: #F6F6F6;
    border-radius: 5px;
    padding: 5px 8px;
}

.bottom-buy-area .buy-area .qty-inc {
    height: 30px;
    width: 80px;
    background-size: cover;
    background-color: #fff;
    background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2222%22%20height%3D%2222%22%20viewBox%3D%220%200%2022%2022%22%3E%3Ccircle%20cx%3D%2211%22%20cy%3D%2211%22%20r%3D%2211%22%20fill%3D%22%23fff%22%2F%3E%3Cg%20transform%3D%22translate%288.103%208.076%29%22%3E%3Cg%3E%3Cline%20x1%3D%226.849%22%20transform%3D%22translate%280%203.424%29%22%20fill%3D%22none%22%20stroke%3D%22%2300b866%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221%22%2F%3E%3Cline%20x2%3D%226.849%22%20transform%3D%22translate%283.424%29%20rotate%2890%29%22%20fill%3D%22none%22%20stroke%3D%22%2300b866%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center right;
    cursor: pointer;
}

.bottom-buy-area .buy-area .qty-dec {
    height: 30px;
    width: 80px;
    background-size: cover;
    background-color: #fff;
    background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2222%22%20height%3D%2222%22%20viewBox%3D%220%200%2022%2022%22%3E%3Ccircle%20cx%3D%2211%22%20cy%3D%2211%22%20r%3D%2211%22%20fill%3D%22%23fff%22%2F%3E%3Cg%20transform%3D%22translate%287.564%2011.5%29%22%3E%3Cg%3E%3Cline%20x1%3D%226.849%22%20fill%3D%22none%22%20stroke%3D%22%2300b866%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center left;
    cursor: pointer;
}

.bottom-buy-area .buy-area .qty-value {
    background: #F6F6F6;
    text-align: center;
    padding: 0px;
    border: 0;
}

.bottom-buy-area .bottom-btn .button {
    height: 60px;
    background: #00B866;
    cursor: pointer;
}

.bottom-buy-area .bottom-btn .button .text {
    color: #fff;
    font-size: 18px;
    letter-spacing: 3px;
}