@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Port+Lligat+Slab&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    color: #000;
}
a, a:hover {
    color: #000;
    text-decoration: none;
}

.logo {
    font-family: 'Port Lligat Slab', serif;
    font-size: 36px;
    line-height: normal;
    color: #214842;
}
.section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 25px;
}
.btn-primary {
    background-color: #258F22;
    border-color: #258F22;
    border-radius: 100px;
    padding: 10px 20px;
    font-weight: 600;
}

.btn-primary.disabled, .btn-primary:disabled {
    background-color: #d3d3d3;
    border-color: #d3d3d3;
    color: #6c757d;
}
.btn-primary:hover {
    background-color: #057402;
    border-color: #057402;
}
.btn-arrow {
    background-color: #214842;
    border-color: #214842;
    border-radius: 10px;
    padding: 10px 15px;
    font-weight: 600;
    color: #fff;
}
.btn-arrow:hover {
    color: #fff;
}
.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 50px;
}
.owl-theme .owl-dots .owl-dot span {
    background-color: #E6E6E6;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background-color: #214842;
}
header .wishlist svg path {
    fill: white;
    stroke: #214842;
}
header .wishlist.active svg path, header .wishlist:hover svg path{
    fill: #214842;
}
.wishlist.active svg path, .wishlist:hover svg path{
    fill: #189213;
}
.btn-cart {
    padding-left: 25px;
    padding-right: 50px;
    position: relative;
}
.btn-cart:after{
    content: "";
    position: absolute;
    right: 20px;
    top: 0;
    width: 20px;
    height: 100%;
    background-image: url('../images/shopping-cart.svg');
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
}
.btn-cart:hover {
    background-color: #057402;
    border-color: #057402;
}
.owl-theme .owl-nav {
    margin-top: 30px;
}
.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next {
    background: none;
    cursor: pointer;
    background-repeat: no-repeat;
    background-size: 14px;
    background-position: center;
    width: 50px;
    height: 50px;
    border: 3.5px solid #808080;
    border-radius: 100%;
}
.owl-carousel .owl-nav button.owl-prev {
    background-image: url('../images/nav-arrow-left.svg');
}
.owl-carousel .owl-nav button.owl-next {
    background-image: url('../images/nav-arrow-right.svg');
}
.owl-carousel .owl-nav button.owl-prev:hover {
    background: transparent;
    background-image: url('../images/nav-arrow-left.svg');
    background-repeat: no-repeat;
    background-size: 14px;
    background-position: center;
}
.owl-carousel .owl-nav button.owl-next:hover {
    background: transparent;
    background-image: url('../images/nav-arrow-right.svg');
    background-repeat: no-repeat;
    background-size: 14px;
    background-position: center;
}
.gray-bg {
    background-color: #F9F9F9;
}
.page-title {
    margin-top: 60px;
    margin-bottom: 40px;
}
.btn-default {
    background-color: #F2F2F2;
    border-color: #F2F2F2;
    color: #4D4D4D;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 40px;
}
.btn-default:hover {
    background-color: #646464;
    border-color: #646464;
    color: #fff;
}

header .header-top {
    background-color: #214842;
    color: #fff;
    padding: 16px 0;
    font-size: 14px;
    font-weight: 500;
}
header .header-top .container {
    display: flex;
    justify-content: space-between;
}
header .header-top .container .top-left,
header .header-top .container .top-right a {
    display: flex;
    align-items: center;
    gap: 10px;
}
header .header-top .container .top-right {
    display: flex;
    gap: 43px;
}
header .header-top a {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}
header .header-main {
    background-image: url('../images/header-bg.png');
    background-color: #fff;
}
header .header-middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 47px;
    padding-bottom: 39px;
    border-bottom: 1px solid #DADADA;
}
header .search-form {
    display: flex;
    width: 50%;
}
header .search-form input {
    padding: 12px 20px;
    border-radius: 0;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    color: rgba(0, 0, 0, 0.5);
    border: 0;
}
header .search-form .btn {
    border-radius: 0;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    text-transform: uppercase;
    background-color: #8CBC4F;
    border: #8CBC4F;
    padding: 12px 25px;
}
header .user-menu {
    display: flex;
    align-items: center;
    gap: 16px;
}
header .user-menu .seprate {
    background-color: #000;
    width: 1px;
    height: 30px;
}
header .user-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
}
header .user-menu a i {
    color: #214842;
}
header .user-menu .navbar-light .navbar-toggler {
    padding: 0;
    border: 0;
}
header .user-menu .navbar-light .navbar-toggler:focus {
    box-shadow: none;
}
header .header-bottom .mobile-search-cart {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    width: 100%;
    padding: 15px 0;
}
header .header-bottom .mobile-search-cart .search-form {
    width: 100%;
}
header .navbar{
    padding: 0;
}
header .navbar.navbar-light .navbar-nav {
    gap: 50px;
}
header .navbar.navbar-light .navbar-nav .nav-item .nav-link {
    color: #000;
    text-transform: uppercase;
    font-size: 14px;
    padding: 25px 0;
    position: relative;
}
header .navbar.navbar-light .navbar-nav .nav-item.submenu > .nav-link {
    padding-right: 30px;
}
header .navbar.navbar-light .navbar-nav .nav-link.active,
header .navbar.navbar-light .navbar-nav .nav-link:hover {
    color: #8CBC4F;
}
header .navbar.navbar-light .navbar-nav .nav-item.submenu > .nav-link::after {
    content: "";
    position: absolute;
    right: 0;
    top: 25px;
    width: 20px;
    height: 20px;
    background-image: url('../images/arrow-up.svg');
    background-repeat: no-repeat;
    background-size: contain;
}
header .navbar.navbar-light .navbar-nav .nav-item.submenu .navbar-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    gap: 0;
    background-color: #fff;
    box-shadow: 1px 2px 3px rgba(0,0,0,0.2);
    min-width: 200px;
    z-index: 9;
}
header .navbar.navbar-light .navbar-nav .nav-item.submenu:hover .navbar-nav {
    display: flex;
}
header .navbar.navbar-light .navbar-nav .nav-item.submenu .navbar-nav .nav-link {
    padding: 10px 15px;
}
header .mini-cart {
    background-color: #FFE5CC;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
}

footer {
    background-image: url('../images/header-bg.png');
    background-color: #fff;
}
footer .footer-main {
    border-bottom: 1px solid #D8D8D8;
    display: flex;
    padding-top: 80px;
    padding-bottom: 30px;
}
footer .footer-main .footer-contact {
    width: 40%;
}
footer .contact-data {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
footer .footer-main .footer-menus {
    width: 60%;
}
footer .footer-bottom {
    padding: 30px 0;
}
footer .copyright-text {
    display: flex;
    align-items: center;
}
footer .payment-logo {
    display: flex;
    justify-content: flex-end;
}
footer .payment-logo img {
    max-width: 392px;
}
footer h6 {
    font-weight: 700;
    color: #3E3E3E;
    margin-bottom: 20px;
}
footer ul {
    list-style-type: none;
    padding-left: 0;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
footer ul li a {
    color: #292929;
}
footer .social-links {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
}

.services {
    background-color: #214842;
    padding: 62px 0;
}
.services .item .icon {
    background-color: #258F22;
    width: 85px;
    height: 85px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.services .item {
    display: flex;
    gap: 15px;
}
.services .item .item-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.services .item .item-info .title {
    color: #fff;
    font-size: 18px;
}
.services .item .item-info .text{
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.about {
    background-image: url('../images/about-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 100px 0;
}
.about p {
    text-align: justify;
    margin-bottom: 25px;
}
.about .about-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 60px;
}
.about .section-title {
    margin-bottom: 25px;
}
.about .image {
    position: relative;
}
.about .image .icon {
    max-width: 130px;
    position: absolute;
    top: -60px;
    left: -65px;
}

.sale-offer {
    background-image: url('../images/sale-offer-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    text-align: center;
}
.sale-offer-info {
    width: 60%;
    margin: auto;
}
.sale-offer-info .offer-text-top {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-top: 20px;
}
.sale-offer-info .discount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: #F9ED71;
    font-size: 36px;
    font-weight: bold;
    margin-top: 20px;
}
.sale-offer-info .discount svg {
    width: 29px;
    height: 26px;
}
.sale-offer-info .offer-text-bottom {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 20px;
}
.sale-offer-info .coupon-code {
    font-size: 18px;
    font-weight: 500;
    background-color: #FFFADB;
    border: 1px solid #D3BF3D;
    width: fit-content;
    padding: 0 10px;
    margin: 20px auto;
}

.categories {
    padding: 35px 0;
}
.category-slider .item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    text-align: center;
}
.category-slider.owl-carousel .owl-nav button.owl-prev,
.category-slider.owl-carousel .owl-nav button.owl-next {
    background: none;
    border: none;
    position: absolute;
    top: calc(50% - 20px);
    transform: translateY(-50%);
    cursor: pointer;
}
.category-slider.owl-carousel .owl-nav button.owl-prev {
    left: -50px;
    background-image: url('../images/arrow-left.svg');
    background-repeat: no-repeat;
    background-size: contain;
    width: 36px;
    height: 36px;
}
.category-slider.owl-carousel .owl-nav button.owl-next {
    right: -50px;
    background-image: url('../images/arrow-right.svg');
    background-repeat: no-repeat;
    background-size: contain;
    width: 36px;
    height: 36px;
}
.category-slider.owl-carousel .owl-nav button.owl-prev:hover {
    background: transparent;
    background-image: url('../images/arrow-left.svg');
}
.category-slider.owl-carousel .owl-nav button.owl-next:hover {
    background: transparent;
    background-image: url('../images/arrow-right.svg');
}
.category-slider.owl-carousel .owl-nav {
    margin-top: 0;
}

.banner-with-text {
    background-image: url('../images/banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 100px;
    padding-bottom: 80px;
}
.banner-with-text .subtitle {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 25px;
}
.banner-with-text .section-title {
    font-size: 56px;
}
.banner-with-text .text {
    margin-bottom: 25px;
}

.offer-banner {
    padding: 80px 0;
}
.offer-banner .banner-box {
    border-radius: 10px;
    position: relative;
}
.offer-banner .banner-box .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    padding: 25px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
}
.offer-banner .banner-box .content .title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}
.offer-banner .banner-box.left-banner .btn {
    color: #214842;
}
.offer-banner .banner-box.right-banner .btn {
    color: #fff;
}
.offer-banner .banner-box.right-banner {
    color: #fff;
}
.offer-banner .banner-box .btn {
    padding: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    font-weight: 700;
}
.offer-banner .banner-box .text {
    color: #9D9D9D;
    font-size: 14px;
}
.offer-banner .banner-box .offer {
    font-size: 18px;
    font-weight: 600;
}
.text-red {
    color: #83242A;
}
.text-yellow {
    color: #F9ED71;
}

.testimonials {
    padding: 120px 0;
}
.testimonials .title-with-icon {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}
.testimonials .title-with-icon img {
    max-width: 40px;
}
.testimonials .section-title {
    margin-bottom: 0;
}
.testimonials .title-text {
    text-align: center;
    margin-bottom: 40px;
}
.testimonial-slider .item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.testimonial-slider .item .item-box {
    background-color: #FDFBEC;
    padding: 30px;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    gap: 35px;
}
.testimonial-slider .item .item-box .review-info {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}
.testimonial-slider .customer-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.testimonial-slider .customer-info .name {
    font-size: 20px;
    font-weight: 600;
}
.testimonial-slider .customer-info .location {
    font-size: 16px;
}
.testimonial-slider .rating-star {
    color: #258F22;
    font-size: 20px;
}
.testimonial-slider .review-summary {
    font-size: 16px;
}

.why-fresh-herbal {
    padding: 120px 0;
}
.why-fresh-herbal .title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 30px;
    max-width: 80%;
}
.why-fresh-herbal .description {
    font-size: 18px;
    margin-bottom: 30px;
    color: #333333;
}
.why-fresh-herbal .content-info h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 35px;
}
.why-fresh-herbal .content-info ul {
    color: #333333;
    padding-left: 0;
    list-style-type: none;
}
.why-fresh-herbal .content-info ul li {
    padding: 10px 0;
    padding-left: 50px;
    margin-bottom: 15px;
    line-height: 16px;
    position: relative;
}
.why-fresh-herbal .content-info ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 35px;
    height: 100%;
    background-image: url('../images/green-tick-round.svg');
    background-size: 35px;
    background-repeat: no-repeat;
    transform: translateY(-50%);
    background-position: center;
}
.why-fresh-herbal .image {
    max-width: 90%;
    margin: auto;
    position: relative;
}
.why-fresh-herbal .image .icon {
    position: absolute;
    top: -45px;
    left: -100px;
    max-width: 200px;
}

.featured-products {
    padding: 80px 0;
}
.featured-products .title-with-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}
.featured-products .title-with-icon img {
    max-width: 40px;
}
.featured-products .section-title {
    margin-bottom: 0;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.product-list .product-item {
    width: calc(25% - 20px);
}
.product-item {
    border: 1px solid #DADADA;
    border-radius: 10px;
    position: relative;
    background-color: #fff;
}
.product-item .product-image {
    text-align: center;
    padding: 10px 0;
    border-bottom: 1px solid #DADADA;
    display: block;
}
.product-item .product-image img {
    width: auto;
    display: inline-block;
}
.product-item .new-product {
    position: absolute;
    top: 10px;
    left: 15px;
    width: fit-content;
    padding: 5px 10px;
    color: #AC353D;
    border: 1px solid #AC353D;
    background-color: #FFEEEF;
    border-radius: 12px;
    font-size: 12px;
    line-height: 12px;
}
.product-item .product-discount {
    background-color: #258F22;
    padding: 10px;
    border-radius: 0px 10px 0px 10px;
    position: absolute;
    right: -1px;
    top: -1px;
    color: #fff;
    font-weight: 700;
    line-height: 16px;
    font-size: 14px;
}
.product-item .product-info {
    padding: 30px 20px;
}
.product-item .product-info .product-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}
.product-item .product-info .short-description {
    color: #333333;
    font-size: 14px;
    margin-bottom: 15px;
}
.product-item .product-info .action {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}
.product-price .sale-price {
    font-size: 20px;
    font-weight: 700;
    color: #258F22;
}
.product-price .regular-price {
    font-size: 14px;
    text-decoration: line-through;
}

.product-category-tabs {
    padding: 80px 0;
}
.product-category-tabs .title-with-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.product-category-tabs .title-with-icon svg {
    width: 30%;
}
.product-category-tabs .title-with-icon img {
    max-width: 40px;
}
.product-category-tabs .section-title {
    margin-bottom: 0;
}
.product-category-tabs .title-text {
    text-align: center;
    margin-bottom: 40px;
}
.product-category-tabs .nav-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    border: 0;
}
.product-category-tabs .nav-tabs .nav-link {
    background-color: #EDFFEC;
    border: 1px solid #258F22;
    border-radius: 10px;
    padding: 10px 15px;
    line-height: 16px;
    color: #000000;
    position: relative;
}
.product-category-tabs .nav-tabs .nav-link.active,
.product-category-tabs .nav-tabs .nav-link:hover {
    background-color: #258F22;
    color: #fff;
}
.product-category-tabs .nav-tabs .nav-link.active:before {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    content: "";
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 12px 7px 0;
    border-top-color: #258F22;
}

.breadcrumb-block {
    padding: 12px 0;
    background-color: #333333;
}
.breadcrumb {
    margin-bottom: 0;
    font-size: 12px;
}
.breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: ">";
    color: #fff;
}
.breadcrumb .breadcrumb-item.active, .breadcrumb .breadcrumb-item a {
    color: #fff;
}

.prodoct-list-table {
    padding: 80px 0;
}
.prodoct-list-table .table-responsive {
    border: 1px solid #dddddd;
    border-radius: 10px;
    width: 100%;
}
.prodoct-list-table .table {
    vertical-align: middle;
    margin-bottom: 0;
    width: 100%;
}
.prodoct-list-table .table thead {
    background-color: #F8F8F8;
    border-radius: 10px;
}
.prodoct-list-table .table td, .prodoct-list-table .table th{
    border:1px solid #DDDDDD;
}
.prodoct-list-table .table thead th {
    border-top: 0;
    padding: 12px 28px;
    vertical-align: middle;
}
.prodoct-list-table .table tbody td {
    padding: 43px 28px;
}
.prodoct-list-table .table thead tr th:first-child {
    border-top-left-radius: 10px;
    border-top: 0;
    border-left: 0;
}
.prodoct-list-table .table thead tr th:last-child {
    border-top-right-radius: 10px;
    border-top: 0;
    border-right: 0;
}
.prodoct-list-table .table>:not(:first-child){
    border-top: 0;
}
.prodoct-list-table .table tbody tr td:first-child {
    border-left: 0;
}
.prodoct-list-table .table tbody tr td:last-child {
    border-right: 0;
}
.prodoct-list-table .table tbody tr:last-child td {
    border-bottom: 0;
}

.product-detail-tabs {
    padding: 30px 0;
}
.product-detail-tabs .nav-tabs {
    border-color: #E5E5E5;
    gap: 30px;
}
.product-detail-tabs .nav-tabs .nav-link {
    color: #808080;
    font-size: 18px;
    border: 0;
}
.product-detail-tabs .nav-tabs .nav-link:hover,
.product-detail-tabs .nav-tabs .nav-link.active {
    border: 0;
    border-bottom: 2px solid #20B526;
    color: #1A1A1A;
}
.product-detail-tabs .tab-pane {
    padding-top: 40px;
    padding-bottom: 20px;
}
.product-detail-tabs .tab-pane ul {
    /* list-style-type: none; */
    padding-left: 20px;
}
.product-detail-tabs .tab-pane ul li {
    position: relative;
}
.product-detail-tabs .tab-pane ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 25px;
    height: 100%;
    background-image: url('../images/light-green-check-round.svg');
    background-size: 25px;
    background-repeat: no-repeat;
    transform: translateY(-50%);
    background-position: center;
}
.product-detail-tabs .product-video-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.product-detail-tabs .product-video-content .video-info {
    display: block;
    position: relative;
}
.product-detail-tabs .product-video-content .video-info:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/play.svg');
    background-size: 50px;
    background-repeat: no-repeat;
    background-position: center;
}
.product-detail-tabs .product-video-content .video-info img {
    width: 100%;
}
.product-detail-tabs .product-video-content .product-discount {
    display: flex;
    gap: 22px;
    border: 1px solid #E6E6E6;
    border-radius: 6px;
    padding: 24px 20px;
}
.product-detail-tabs .product-video-content .product-discount .item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.product-detail-tabs .product-video-content .product-discount .item .info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.product-detail-tabs .product-video-content .product-discount .item .info .title {
    font-size: 14px;
    font-weight: 500;
    color: #1A1A1A;
}
.product-detail-tabs .product-video-content .product-discount .item .info .text {
    font-size: 13px;
    color: #808080;
}

.product-main-details {
    padding: 60px 0;
}
.product-title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.product-title .name {
    font-size: 36px;
    font-weight: 600;
    color: #1A1A1A;
}
.product-title .stock-status {
    background-color: rgba(32, 181, 38, 0.2);
    color: #2C742F;
    font-size: 14px;
    padding: 4px 8px;
    border-radius: 4px;
}
.product-title .stock-status.out-of-stock {
    background-color: rgba(234, 75, 72, 0.1);
    color: #EA4B48;
}
.product-rating-sku {
    margin: 15px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.product-rating-sku .rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #FF8A00;
}
.product-rating-sku .rating span {
    color: #666666;
}
.product-rating-sku .circle {
    font-size: 14px;
    font-weight: 500;
    color: #B3B3B3;
}
.product-rating-sku  .sku {
    display: flex;
    gap: 5px;
    color: #666666;
}
.product-rating-sku  .sku .name {
    font-weight: 500;
    color: #333333;
}
.product-detail-price {
    display: flex;
    align-items: center;
    gap: 12px;
}
.product-main-details .product-detail-price {
    margin-bottom: 20px;
}
.product-detail-price .product-price {
    gap: 5px;
}
.product-detail-price .product-price .regular-price {
    color: #B3B3B3;
    font-size: 20px;
}
.product-detail-price .product-price .sale-price {
    color: #2C742F;
    font-size: 24px;
}
.product-detail-price .sale {
    background-color: rgba(234, 75, 72, 0.1);
    color: #EA4B48;
    font-size: 14px;
    padding: 3px 10px;
    border-radius: 30px;
}
.product-brand-share {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
    padding-top: 20px;
    padding-bottom: 15px;
    border-top: 1px solid #E6E6E6;
}
.product-brand-share .brand {
    display: flex;
    align-items: center;
    gap: 8px;
}
.product-brand-share .brand .name{
    color: #1A1A1A;
    font-size: 14px;
}
.product-brand-share .brand .brand-logo {
    border: 1px solid #E6E6E6;
    border-radius: 4px;
    width: 56px;
    height: 56px;
}
.product-brand-share .brand .brand-logo img {
    width: 100%;
}
.product-brand-share .share-product {
    display: flex;
    gap: 5px;
    align-items: center;
    color: #1A1A1A;
}
.product-brand-share .share-product .name {
    margin-right: 5px;
}
.product-brand-share .share-product a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4D4D4D;
    border-radius: 100%;
}
.product-brand-share .share-product a.active,
.product-brand-share .share-product a:hover {
    color: #fff;
    background-color: #00B207;
}
.product-main-details .short-description {
    padding-bottom: 24px;
    border-bottom: 1px solid #E5E5E5
}
.product-main-details .action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap:15px;
    padding: 20px 0;
    border-bottom: 1px solid #E5E5E5
}
.product-main-details .action .unwishlist {
    background-color: rgba(32, 181, 38, 0.1);
    border-radius: 100%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-main-details .action .wishlist {
    background-color: rgba(32, 181, 38, 0.1);
    border-radius: 100%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-main-details .action .wishlist svg path {
    fill: transparent;
}
.product-category-tags {
    display: flex;
    gap: 10px;
    padding: 20px 0;
}
.product-category-tags .names {
    font-weight: 600;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.product-category-tags ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style-type: none;
    padding-left: 0;
}
.product-category-tags .cat-value ul li a {
    color: #189213;
    font-weight: 500;
}
.product-category-tags .tags-value ul li a {
    color: #189213;
    background-color: #CFEDCD;
    border-radius: 10px;
    font-size: 14px;
    padding: 5px 10px;
    display: block;
}
.product-main-details .product-information {
    padding-left: 35px;
}

.product-media {
    border: 1px solid #DDDDDD;
    border-radius: 10px;
    padding: 20px;
    height: 100%;
}
.product-gallery-slider {
    display: flex;
    gap: 10px;
    align-items: center;
    height: 100%;
}
.product-gallery-slider .thumbnails {
    width: 110px;
    height: 80%;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.product-gallery-slider .thumbnails img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 5px;
    border: 1px solid #DDDDDD;
    cursor: pointer;
}
.product-gallery-slider .thumbnails img.active {
    border: 2px solid #214842;
}
.product-gallery-slider .slick-slide {
    margin: 6px 0;
}
.product-gallery-slider .product-base-image {
    width: 100%;
    display: flex;
    justify-content: center;
}
.product-gallery-slider .product-base-image img {
    max-width: 100%;
}
.product-gallery-slider .slick-next, .product-gallery-slider .slick-prev {
    top: -20px;
    left: 50%;
    width: 24px;
    height: 24px;
    transform: translate(-50%);
    z-index: 1;
}
.product-gallery-slider .slick-next {
    bottom: -20px;
    top: unset;
}
.product-gallery-slider .slick-next:before,
.product-gallery-slider .slick-prev:before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background-size: 24px;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
}
.product-gallery-slider .slick-next:before {
    background-image: url('../images/gallery-next-arrow.svg');
}
.product-gallery-slider .slick-prev:before {
    background-image: url('../images/gallery-prev-arrow.svg');
}
.product-gallery-slider .slick-next.slick-disabled:before,
.product-gallery-slider .slick-prev.slick-disabled:before {
    opacity: 0.75;
}

.form-block {
    padding: 80px 0;
}
.form-box {
    padding: 100px 0;
    border-radius: 8px;
    border: 1px solid #F2F2F2;
    box-shadow: 0px 0px 56px 0px rgba(0, 38, 3, 0.08);
}
.form-box .form-container {
    max-width: 480px;
    width: 100%;
    margin: auto;
    padding: 0 20px;
}
.form-box .title {
    font-size: 32px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 32px;
    text-align: center;
}
.form-box .form-control {
    border: 1px solid #E6E6E6;
    border-radius: 6px;
    padding: 14px 16px;
    color: #999999;
}
.form-box .form-container .input-box {
    margin-bottom: 32px;
}
.form-box .form-container .input-box.password {
    position: relative;
}
.form-box .input-box.password .show-password {
    position: absolute;
    right: 16px;
    top: 18px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.form-box .input-box.password .show-password.active:before {
    content: "";
    width: 18px;
    border: 1px solid #000;
    position: absolute;
    display: flex;
    transform: rotate(-45deg);
    left: 1px;
}
.form-box .form-container .input-box.rememberme {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}
.form-box .form-container .input-box.rememberme a,
.form-box .form-container .input-box.rememberme label {
    color: #666666;
}
.form-box .input-box .form-check {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 0;
}
.form-check-input {
    border: 1px solid #CCCCCC;
    width: 20px;
    height: 20px;
    margin-bottom: 0;
}
.btn-light-green {
    background-color: #00B207;
    border-color: #00B207;
}
.form-check-input:checked {
    background-color: #258F22;
    border-color: #258F22;
}
.form-box .form-container .input-box.action button {
    display: flex;
    width: 100%;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}
.form-box .form-bottom-text {
    color: #666666;
    font-size: 14px;
    text-align: center;
}
.form-box .form-bottom-text a {
    color: #1A1A1A;
    font-weight: 500;
}
.form-box .form-container .input-box.fields {
    display: flex;
    gap: 16px;
}
.form-box .form-container .input-box.fields div {
    width: 50%;
}

.shopping-cart-table {
    border: 1px solid #dddddd;
    border-radius: 10px;
    width: 100%;
    overflow: hidden;
}
.shopping-cart-table .table {
    vertical-align: middle;
    margin-bottom: 0;
    width: 100%;
}
.shopping-cart-table .table thead {
    background-color: #F8F8F8;
    border-radius: 10px;
}
.shopping-cart-table .table th {
    text-transform: uppercase;
    font-weight: 500;
}
.shopping-cart-table .table td, .shopping-cart-table .table th{
    border-bottom: 1px solid #DDDDDD;
}
.shopping-cart-table .table thead th {
    border-top: 0;
    padding: 12px 28px;
    vertical-align: middle;
}
.shopping-cart-table .table td {
    padding: 20px;
}
.shopping-cart-table .table>:not(:first-child) {
    border-top: 0;
}
.shopping-cart-table .table .image {
    width: 100px;
    height: 100px;
    border: 1px solid #E6E6E6;
    border-radius: 10px;
    padding: 5px;
}
.shopping-cart-table .table .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.shopping-cart-table .product {
    display: flex;
    align-items: center;
    gap: 15px;
}
.shopping-cart-table .table tbody tr:first-child td {
    padding-top: 35px;
}
.shopping-cart-table .action {
    padding: 25px 20px;
    display: flex;
    justify-content: space-between;
}
.shopping-cart-table .remove {
    border: 1px solid #CCCCCC;
    width: 22px;
    height: 22px;
    display: flex;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #666666;
}
.shopping-cart-table .qty-box {
    position: relative;
    width: 150px;
}
.shopping-cart-table .qty-box input {
    width: 150px;
    height: 50px;
    background-color: #646464;
    border-radius: 50px;
    color: #fff;
    text-align: center;
    padding-left: 50px;
    padding-right: 50px;
}
.shopping-cart-table .qty-box > div {
    position: absolute;
    top: 0;
    width: 50px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
}
.shopping-cart-table .qty-box .qty-plus {
    right: 0;
}
.checkout-button {
    padding-top: 60px;
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
}
.checkout-button a {
    min-width: 350px;
}

.cart-summary {
    border: 1px solid #DDDDDD;
    border-radius: 10px;
    padding: 30px;
}
.cart-summary .title {
    font-size: 24px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 30px;
}
.cart-summary .cart-total-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: #4D4D4D;
}
.cart-summary .cart-total-group .item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #E5E5E5;
}
.cart-summary .cart-total-group .item .value {
    color: #1A1A1A;
    font-size: 14px;
    font-weight: 500;
}
.cart-summary .cart-total-group .item.total {
    border-bottom: 0;
}
.cart-summary .cart-total-group .item.total .name {
    font-size: 18px;
    font-weight: 600;
}
.cart-summary .cart-total-group .item.total .value {
    font-size: 16px;
    font-weight: 600;
}
.cart-summary .action {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.cart-summary .action .btn {
    width: 90%;
}

@media (min-width: 1700px){
    .container {
        max-width: 1560px;
    }
}
@media (min-width: 1600px){
    .container {
        max-width: 1460px;
    }
    header .header-top, header .header-top a {
        font-size: 18px;
    }
    header .header-middle .logo {
        font-size: 50px;
    }
}
@media (max-width: 1199px){
    .btn-cart:after {
        right: 15px;
    }
    header .navbar.navbar-light .navbar-nav {
        gap: 15px;
    }
    header .header-top .container .top-left, header .header-top .container .top-right a {
        font-size: 12px;
    }
    .category-slider.owl-carousel .owl-nav button.owl-prev {
        left: -35px;
        width: 30px;
        height: 30px;
    }
    .category-slider.owl-carousel .owl-nav button.owl-next {
        right: -35px;
        width: 30px;
        height: 30px;
    }
    .banner-with-text {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .banner-with-text .subtitle {
        font-size: 22px;
    }
    .banner-with-text .section-title {
        font-size: 36px;
    }
    .banner-with-text .text {
        font-size: 14px;
    }
    .btn-cart {
        font-size: 14px;
        padding-left: 15px;
        padding-right: 40px;
    }
    .product-item .product-info .product-name {
        font-size: 16px;
    }
    .product-item .product-info {
        padding: 20px 15px;
    }
    .services .item .icon {
        width: 60px;
        height: 60px;
    }
    .services .item .icon svg {
        width: 20px;
    }
    .services .item .item-info .title {
        font-size: 16px;
    }
    .why-fresh-herbal .title {
        font-size: 22px;
    }
    .why-fresh-herbal .description {
        font-size: 16px;
    }
    .why-fresh-herbal .image .icon {
        top: -35px;
        left: -75px;
        max-width: 150px;
    }
    .why-fresh-herbal .content-info h4 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .why-fresh-herbal .content-info ul li {
        font-size: 14px;
        line-height: 14px;
        padding: 10px 0;
        padding-left: 40px;
        margin-bottom: 0;
    }
    .why-fresh-herbal .content-info ul li:before {
        background-size: 25px;
    }
    .sale-offer-info {
        width: 80%;
    }
    .about .section-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    .about p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    .about .about-info {
        padding-left: 15px;
    }
    .about .image {
        width: 80%;
        margin: auto;
    }
    .about .image .icon {
        max-width: 80px;
        top: -37px;
        left: -40px;
    }
    .offer-banner .banner-box .content {
        width: 60%;
        padding: 20px;
        gap: 10px;
    }
    .offer-banner .banner-box .content .title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .offer-banner .banner-box .btn {
        font-size: 16px;
    }
    .offer-banner .banner-box .btn svg {
        width: 10px;
    }
    .product-media {
        height: auto;
    }
    .cart-summary {
        padding: 20px;
    }
    .shopping-cart-table .table thead th,
    .shopping-cart-table .table td {
        padding: 10px;
    }
    .shopping-cart-table .table tbody tr:first-child td {
        padding-top: 25px;
    }
    .shopping-cart-table .qty-box {
        width: 120px;
    }
    .shopping-cart-table .qty-box input {
        width: 120px;
        height: 40px;
        padding-left: 40px;
        padding-right: 40px;
    }
    .shopping-cart-table .qty-box > div {
        width: 40px;
    }
    .shopping-cart-table .product {
        gap: 10px;
    }
}
@media (max-width: 991px) {
    .product-list .product-item {
        width: calc(50% - 20px);
    }
    .product-item .product-info .product-name {
        font-size: 18px;
    }
    .services {
        padding-bottom: 32px;
    }
    .services .item {
        margin-bottom: 30px;
    }
    .why-fresh-herbal {
        padding: 60px 0;
    }
    .product-category-tabs .title-with-icon svg {
        width: 20%;
    }
    .sale-offer-info {
        width: 100%;
    }
    .offer-banner .banner-box.left-banner {
        margin-bottom: 30px;
    }
    .offer-banner .banner-box .content {
        padding: 25px;
        justify-content: space-around;
    }
    footer .contact-data {
        font-size: 14px;
    }
    footer .copyright-text {
        font-size: 14px;
    }
    footer .payment-logo img {
        width: 100%;
    }
    header .header-middle .search-form,
    header .header-middle .user-menu .wishlist {
        display: none;
    }
    header .header-top {
        padding: 10px 0;
    }
    header .header-top .container {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    header .navbar.navbar-light .navbar-nav {
        gap: 0;
    }
    header .navbar.navbar-light .navbar-nav .nav-item .nav-link {
        padding: 10px 0;
        border-top: 1px solid #DADADA;
    }
    header .header-bottom .navbar-collapse .mini-cart {
        display: none;
    }
    header .navbar.navbar-light .navbar-nav .nav-item.submenu .navbar-nav {
        position: relative;
        background: transparent;
        box-shadow: none;
    }
    header .navbar.navbar-light .navbar-nav .nav-item.submenu > .nav-link::after {
        top: 10px;
    }
    .prodoct-list-table .table thead th,
    .prodoct-list-table .table tbody td {
        padding: 10px;
    }
    .product-gallery-slider {
        flex-direction: column-reverse;
    }
    .product-gallery-slider .thumbnails {
        width: 100%;
        height: auto;
    }
    .product-gallery-slider .slick-slide {
        margin: 0 5px;
    }
    .product-gallery-slider .slick-next, .product-gallery-slider .slick-prev {
        top: 50%;
        left: unset;
        bottom: unset;
        transform: translate(-50%);
    }
    .product-gallery-slider .slick-prev {
        left: -18px;
        right: unset;
        transform: rotate(-90deg);
        top: calc(50% - 10px);
    }
    .product-gallery-slider .slick-next {
        right: -13px;
        left: unset;
        transform: rotate(-90deg);
        top: calc(50% - 10px);
    }
    .product-media {
        padding: 15px;
    }
    .product-main-details .product-information {
        padding-left: 15px;
    }
    .product-detail-tabs .nav-tabs {
        gap: 10px;
    }
    .product-detail-tabs .nav-tabs .nav-link {
        padding: 8px;
        font-size: 16px;
    }
    .checkout-button {
        padding: 30px 0;
    }
}
@media (max-width: 767px) {
    .section-title {
        font-size: 24px;
    }
    .featured-products {
        padding: 40px 0;
    }
    .featured-products .title-with-icon {
        text-align: center;
        margin-bottom: 20px;
    }
    .services {
        padding: 40px 0;
        padding-bottom: 25px;
    }
    .services .item {
        margin-bottom: 15px;
    }
    .banner-with-text {
        padding: 30px 0;
    }
    .banner-with-text .subtitle, .banner-with-text .section-title, .banner-with-text .text {
        margin-bottom: 15px;
    }
    .why-fresh-herbal {
        padding: 40px 0;
        padding-bottom: 25px;
    }
    .why-fresh-herbal .title {
        margin-top: 0;
    }
    .why-fresh-herbal .image {
        margin-top: 60px;
        margin-bottom: 30px;
        max-width: 70%;
    }
    .product-category-tabs {
        padding: 40px 0;
    }
    .owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next {
        background-size: 10px;
        width: 35px;
        height: 35px;
        border-width: 2.5px;
    }
    .product-list .product-item {
        width: 100%;
    }
    .why-fresh-herbal .image .icon {
        top: -20px;
        left: -50px;
        max-width: 100px;
    }
    .product-category-tabs .title-with-icon svg,
    .featured-products .title-with-icon img,
    .testimonials .title-with-icon img {
        display: none;
    }
    .sale-offer {
        padding: 40px 0;
    }
    .owl-theme .owl-nav {
        margin-top: 15px;
    }
    .owl-theme .owl-nav.disabled+.owl-dots {
        margin-top: 15px;
    }
    .testimonials {
        padding: 40px 0;
    }
    .testimonials .title-with-icon {
        text-align: center;
    }
    .testimonials .title-text {
        margin-bottom: 20px;
    }
    .about {
        padding-top: 80px;
        padding-bottom: 40px;
    }
    .about .about-info {
        padding-top: 30px;
    }
    .offer-banner {
        padding: 40px 0;
    }
    footer .footer-main {
        flex-direction: column;
        gap: 30px;
        padding-top: 40px;
    }
    footer .footer-main .footer-contact,
    footer .footer-main .footer-menus {
        width: 100%;
    }
    footer .contact-data {
        gap: 15px;
        margin-top: 20px;
    }
    footer .footer-menu-1, footer .footer-menu-2 {
        padding-bottom: 30px;
    }
    footer .footer-bottom {
        text-align: center;
    }
    footer .payment-logo {
        padding-top: 15px;
    }
    footer .footer-bottom .row > div {
        display: flex;
        justify-content: center;
    }
    header .header-middle .user-menu .login span {
        display: none;
    }
    .prodoct-list-table .table .btn-cart {
        font-size: 0;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .prodoct-list-table .table .btn-cart:after {
        right: 18px;
    }
    .product-media {
        padding: 20px;
    }
    .product-main-details .product-information {
        padding-top: 30px;
    }
    .product-detail-tabs .nav-tabs {
        justify-content: center;
    }
    .product-gallery-slider .thumbnails img {
        height: 120px;
    }
    .product-main-details {
        padding-bottom: 30px;
    }
    .product-category-tags {
        padding-bottom: 0;
    }
    .prodoct-list-table {
        padding: 30px 0;
    }
    .form-box {
        padding: 50px 0;
    }
    .shopping-cart-table .table .image {
        display: none;
    }
    .shopping-cart-table .table {
        font-size: 14px;
    }
    .shopping-cart-table .qty-box {
        width: 100px;
    }
    .shopping-cart-table .qty-box > div {
        width: 30px;
    }
    .shopping-cart-table .qty-box input {
        width: 100px;
        height: 35px;
        padding-left: 30px;
        padding-right: 30px;
    }
}
@media (max-width: 575px) {
    .category-slider.owl-carousel .owl-nav button.owl-prev {
        left: -20px;
        width: 30px;
        height: 30px;
    }
    .category-slider.owl-carousel .owl-nav button.owl-next {
        right: -20px;
        width: 30px;
        height: 30px;
    }
    .offer-banner .banner-box .content {
        padding: 10px 15px;
        width: 100%;
    }
    .offer-banner .banner-box .content .title {
        font-size: 18px;
    }
    .offer-banner .banner-box .offer {
        font-size: 16px;
    }
    header .header-top .container .top-left, header .header-top .container .top-right a {
        font-size: 11px;
    }
    header .header-top .container .top-left svg, header .header-top .container .top-right a svg {
        width: 15px;
    }
}
@media (max-width: 480px) {
    .testimonial-slider .customer-info .name {
        font-size: 16px;
    }
    .testimonial-slider .customer-info .location,
    .testimonial-slider .review-summary {
        font-size: 14px;
    }
    .testimonial-slider .rating-star {
        font-size: 16px;
    }
    .testimonial-slider .customer-info {
        gap: 0;
    }
    header .header-top .container .top-left, header .header-top .container .top-right {
        width: 85%;
    }
    .product-detail-tabs .product-video-content .product-discount {
        flex-direction: column;
    }
    .breadcrumb-block .breadcrumb{
        gap: 5px;
    }
    .form-box .form-container .input-box.fields {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }
    .form-box .form-container .input-box.fields div {
        width: 100%;
    }
}
@media (max-width: 429px) {
    header .header-top .container .top-right {
        gap: 5px;
        flex-direction: column;
    }
    header .header-top .container .top-left svg {
        width: 20px;
    }
    .product-gallery-slider .thumbnails img {
        height: 100px;
    }
    .shopping-cart-table .action {
        flex-direction: column;
        gap: 15px;
    }
    .checkout-button a {
        min-width: unset;
        width: calc(100% - 30px);
    }
}