@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: "Jost", sans-serif;
    background-color: #003b3c;
    background-image: url(../images/body-bg.png);
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

.btn-primary {
    padding: 10px 30px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    color: #003b3c;
    text-transform: uppercase;
    background-color: #fff;
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
    background-color: #e9bb55;
}

.btn-secondary {
    padding: 10px 30px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    color: #003b3c;
    text-transform: uppercase;
    background-color: #e9bb55;
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
}

.btn-secondary:hover {
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-header {
    width: 100%;
    position: relative;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.main-header .logo a {
    display: flex;
}

.main-header .logo img {
    width: 250px;
}

.header-menu ul {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-menu ul li {
    padding: 0 20px;
}

.header-menu ul li a {
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    color: #fff;
    transition: color 0.3s ease-in-out;
}

.header-menu ul li a:hover {
    color: #e9bb55;
}

.header-icons {
    display: flex;
    align-items: center;
}

.header-icons .header-search {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    position: relative;
    transition: all 0.2s ease-in-out;
    z-index: 9;
}

.header-icons .header-cart {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    margin: 0 0 0 15px;
    position: relative;
    transition: all 0.2s ease-in-out;
    z-index: 9;
}

.header-icons .header-search>a,
.header-icons .header-cart>a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-icons .header-search:before,
.header-icons .header-cart:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 10%);
    z-index: -1;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease-in-out;
}

.header-icons .header-search:hover:before,
.header-icons .header-cart:hover:before {
    opacity: 1;
    transform: scale(1);
}

.header-icons .header-search svg path {
    fill: #fff;
    transition: color 0.3s ease-in-out;
}

.header-icons .header-cart svg path {
    stroke: #fff;
    transition: color 0.3s ease-in-out;
}

.toggle-icon {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: none;
}

.toggle-icon>span {
    width: 20px;
    height: 2px;
    background-color: #003b3c;
    border-radius: 10px;
    margin: 2px 0;
    display: block;
    transition: transform 0.2s ease-in-out;
}

.banner-main-sec {
    width: 100%;
    position: relative;
}

.banner-slide {
    display: flex;
    align-items: center;
}

.banner-slide-image {
    width: 50%;
}

.banner-slide-content {
    width: 50%;
}

.banner-slide-image img {
    width: 100%;
}

.banner-slide-content h2 {
    font-size: 50px;
    line-height: 1.5;
    font-weight: 700;
    color: #fff;
    text-align: left;
    margin: 0;
}

.banner-slide-content p {
    font-size: 18px;
    color: #fff;
    line-height: 1.3;
    font-weight: 400;
    margin: 20px 0 0 0;
}

.buttom_wrapper {
    margin: 20px 0 0 0;
    display: flex;
}

.buttom_wrapper a.btn-primary {
    margin: 0 25px 0 0;
}

.swiper-pagination {
    bottom: 0;
    top: auto;
    display: flex;
    justify-content: center;
}

.banner-main-sec .swiper-pagination span.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: #fff;
    opacity: 1;
    margin: 0 10px;
    transition: width .25s linear;
    border-radius: 8px;
}

.banner-main-sec .swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 50px;
}

.main-product-list-sec {
    padding: 120px 0 0 0;
    position: relative;
    width: 100%;
}

.product-list-inner {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.product-list-box {
    width: 33.3%;
    padding: 0 15px;
}

.product-list-image {
    display: flex;
}

.product-list-image img {
    width: 100%;
}

.product-list-box-inner {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.product-list-box-inner:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: #0006;
    left: 0;
    top: 0;
    transition: all .35s linear;
    opacity: 0;
}

.product-list-content {
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 180px;
}

.product-list-content h3 {
    font-size: 18px;
    color: #003b3c;
    font-weight: 400;
    margin: 0 0 20px 0;
}

.product-list-content h2 {
    font-size: 30px;
    color: #003b3c;
    margin: 0;
    font-weight: 600;
    text-transform: capitalize;
}

.product-button {
    position: absolute;
    top: auto;
    bottom: 20px;
    left: auto;
    right: 20px;
    width: 50px;
    height: 50px;
    opacity: 0;
    transition: all .35s linear;
}

.product-button>a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 50%;
}

.product-button>a svg path {
    fill: #003b3c;
    stroke: #003b3c;
}

.product-list-box-inner:hover:before {
    opacity: 1;
}

.product-list-box-inner:hover .product-button {
    opacity: 1;
}

.best-seller-main-sec {
    padding: 120px 0 0 0;
    position: relative;
    width: 100%;
}

.best-seller-inner {
    display: flex;
    align-items: center;
}

.best-seller-img-col {
    width: 50%;
    display: flex;
    padding: 0 20px 0 0;
}

.best-seller-img-col img {
    width: 100%;
}

.best-seller-content-col {
    width: 50%;
}

.best-seller-content-col h2 {
    font-size: 30px;
    line-height: 1.4;
    color: #fff;
    font-weight: 600;
    margin: 0 0 20px 0;
    text-transform: capitalize;
}

.best-seller-content-col p {
    font-size: 18px;
    color: #fff;
    font-weight: 400;
    line-height: 1.4;
    padding: 0 0 10px 0;
}

.product-slider-main-sec {
    position: relative;
    width: 100%;
    padding: 120px 0 0 0;
}

.product-slider-title {
    width: 100%;
    text-align: center;
    margin: 0 0 60px 0;
}

.product-slider-title h2 {
    font-size: 30px;
    line-height: 1.3;
    color: #fff;
    font-weight: 500;
    margin: 0 0 20px 0;
}

.product-slider-title p {
    font-size: 16px;
    color: #fff;
    line-height: 1.3;
    margin: 0;
}

.product-slide-image {
    display: flex;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.product-slide-image img {
    width: 100%;
}

.product-slide-content {
    margin: 30px 0 0 0;
}

.product-slide-content h3 {
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    margin: 0;
}

.product-review-star {
    display: flex;
    align-items: center;
}

.product-review-star svg {
    display: flex;
    color: #fff;
    width: 16px;
    margin: 0 2px;
}

.product-slide-content p {
    font-size: 16px;
    color: #fff;
    margin: 0;
}

.product-review {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 20px 0;
}

.product-review span {
    color: #fff;
    font-size: 20px;
}

.product-price {
    display: flex;
    align-items: center;
}

p.old-price {
    text-decoration: line-through;
    margin: 0 0 0 20px;
    color: #b0b0b0;
}

.product-slider-main-sec .container {
    position: relative;
}

.product-slider-main-sec .swiper-button-prev:after,
.product-slider-main-sec .swiper-button-next:after {
    display: none;
}

.product-slider-main-sec .swiper-button-prev,
.product-slider-main-sec .swiper-button-next {
    top: 0;
    margin: 0;
}

.product-slider-main-sec .swiper-button-prev svg,
.product-slider-main-sec .swiper-button-next svg {
    width: 12px;
    color: #fff;
}

.product-slider-main-sec .swiper-button-prev {
    left: calc(50% - 180px);
}

.product-slider-main-sec .swiper-button-next {
    right: calc(50% - 180px);
}

.cta-main-sec {
    width: 100%;
    position: relative;
    padding: 120px 0 0 0;
}

.cta-inner-sec {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.cta-image {
    display: flex;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1.5s ease-out;
}

.cta-inner-sec:hover .cta-image img {
    transform: scale(1.07);
}

.cta-content {
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    bottom: 0;
    margin: auto;
    max-height: max-content;
    text-align: center;
    width: 50%;
}

.cta-content h2 {
    font-size: 30px;
    color: #fff;
    line-height: 1.3;
    font-weight: 400;
    margin: 0 0 20px 0;
}

.cta-content h2 span {
    color: #e9bb55;
}

.cta-content p {
    font-size: 16px;
    color: #fff;
    line-height: 1.4;
    max-width: 540px;
    margin: 0 auto;
}

.cta-content .buttom_wrapper {
    justify-content: center;
}

.cta-content .buttom_wrapper a.btn-primary {
    margin: 0;
}

.most-selling-product-sec {
    padding: 120px 0 0 0;
}

.most-selling-product-inner {
    display: flex;
}

.most-selling-product-img {
    width: 50%;
}

.most-selling-product-content {
    width: 50%;
}

.most-selling-product-content h2 {
    margin: 0 0 20px 0;
}

.most-selling-product-img .image {
    display: flex;
}

.most-selling-product-img .image img {
    width: 100%;
}

.most-selling-product-content h2 a {
    font-size: 30px;
    line-height: 1.3;
    color: #fff;
    font-weight: 500;
    margin: 0 0 20px 0;
}

.most-selling-product-content h3 {
    font-size: 22px;
    line-height: 1;
    color: #e9bb55;
    margin: 0 0 20px 0;
}

.most-selling-product-content p {
    font-size: 16px;
    line-height: 1.3;
    color: #fff;
    margin: 0;
}

.selling-price h4 {
    font-size: 16px;
    line-height: 1;
    color: #fff;
    font-weight: 500;
    margin: 0 0 20px 0;
}

.selling-price {
    margin: 40px 0 0 0;
}

.quantity-button_wrapper {
    display: flex;
    align-items: center;
    margin: 0 0 40px 0;
}

.quantity-button_wrapper button.quantity {
    padding: 0 22px;
    height: 58px;
    border-radius: 15px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    margin: 0 8px;
    color: #003b3c;
    cursor: pointer;
}

.btn-add-cart {
    margin: 0 0 20px 0;
}

.btn-add-cart a {
    width: 360px;
    height: 50px;
    display: flex;
    border: 1px solid #fff;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

.btn-add-cart a:hover {
    background-color: #e9bb55;
    border-color: #e9bb55;
}

.btn-paypal {
    width: 360px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e9bb55;
    color: #003b3c;
    font-size: 16px;
}

.btn-paypal a {
    font-size: 16px;
    color: #003b3c;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.btn-paypal a span {
    margin: 0 10px 0 0;
}

.btn-paypal a img {
    width: 60px;
}

button.quantity.active {
    background-color: #e9bb55;
}

.review-main-sec {
    position: relative;
    width: 100%;
    background-image: url(../images/testimonial-bg.jpg);
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    margin: 120px 0 0 0;
}

.testimonial-main {
    width: 50%;
    position: relative;
}

.testimonial-title h2 {
    font-size: 30px;
    line-height: 1;
    color: #fff;
    text-align: center;
    font-weight: 600;
    margin: 0;
}

.testimonial-title {
    margin: 0 0 40px 0;
}

.author-intro {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-image {
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    width: 90px;
    margin: 0 24px 0 0;
}

.author-image img {
    width: 100%;
    height: 100%;
}

.author-description h2 {
    font-size: 18px;
    color: #e9bb55;
    font-weight: 500;
    text-align: center;
    margin: 0 0 20px 0;
}

.author-description h3 {
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    color: #fff;
    text-align: center;
    margin: 0;
}

.author-review span {
    width: 100%;
    display: block;
    color: #0d9d00;
    font-size: 26px;
    text-align: center;
    line-height: 1;
}

.author-review {
    margin: 40px 0;
}

.author-review .product-review-star {
    justify-content: center;
}

.author-review .product-review-star svg {
    color: #0d9d00;
}

.client-description p {
    font-size: 28px;
    line-height: 1.3;
    color: #fff;
    text-align: center;
    font-weight: 400;
    margin: 0;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    display: none;
}

.swiper-button-prev svg,
.swiper-button-next svg {
    width: 12px;
    color: #fff;
}

.swiper-button-prev {
    top: 15px;
    left: calc(50% - 180px);
}

.swiper-button-next {
    top: 15px;
    right: calc(50% - 180px);
}

.testimonial-main .swiper-pagination {
    bottom: 0px;
}

.testimonial-main .swiper-pagination-bullet {
    width: 8px !important;
    height: 8px;
    border-radius: 8px;
    margin: 0 8px !important;
    background-color: #e9bb55;
    opacity: 1;
    transition: width .25s linear;
}

.testimonial-main .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 40px !important;
}

.testimonial-slider {
    padding-bottom: 40px;
}

.uses-of-medical-main-sec {
    padding: 120px 0 0 0;
}

.uses-left-col,
.uses-right-col,
.uses-center-image {
    width: 33.3%;
}

.uses-of-medical-inner {
    display: flex;
    align-items: center;
}

.uses-center-image .image {
    display: flex;
}

.uses-center-image .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease-out;
    will-change: transform;
}

.uses-list-inner {
    display: flex;
    align-items: center;
}

.uses-left-col .uses-list-inner {
    flex-direction: row-reverse;
}

.uses-list-inner .image {
    width: 110px;
    height: 110px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.uses-content {
    width: calc(100% - 130px);
}

.uses-left-col .uses-content {
    text-align: right;
}

.uses-left-col .uses-list-inner .image {
    margin: 0 0 0 20px;
}

.uses-list-inner .image:hover img {
    animation-name: shakeHover;
    animation-duration: 1.3s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
}

.uses-content h2 {
    font-size: 16px;
    line-height: 1.3;
    color: #fff;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.uses-content p {
    font-size: 14px;
    line-height: 1.3;
    color: #fff;
    font-weight: 400;
    margin: 0;
}

.uses-list-box {
    margin: 0 0 100px 0;
}

.uses-list-box:last-child {
    margin: 0;
}

.uses-right-col .uses-list-inner .image {
    margin: 0 20px 0 0;
}

.uses-of-medical-title {
    margin: 0 0 60px 0;
}

.uses-of-medical-main-sec .buttom_wrapper {
    justify-content: center;
    margin: 60px 0 0 0;
}

.uses-of-medical-title h2 {
    width: 100%;
    text-align: center;
    font-size: 30px;
    line-height: 1;
    color: #fff;
    margin: 0;
    text-transform: capitalize;
}

@keyframes shakeHover {
    16.65% {
        -webkit-transform: translateX(8px);
        transform: translateX(8px);
    }

    33.3% {
        -webkit-transform: translateX(-6px);
        transform: translateX(-6px);
    }

    49.95% {
        -webkit-transform: translateX(4px);
        transform: translateX(4px);
    }

    66.6% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px);
    }

    83.25% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.main-footer {
    width: 100%;
    position: relative;
    background-image: url(../images/footer-bg.jpg);
    background-size: cover;
    background-position: center;
}

.home .main-footer {
    margin: 120px 0 0 0;
}

.top-footer {
    padding: 100px 0;
    display: flex;
    flex-wrap: wrap;
}

.address-col {
    width: 33.3%;
}

.address-col .logo a {
    display: flex;
    max-width: max-content;
}

.address-col .logo img {
    width: 200px;
}

.address-col .logo {
    margin: 0 0 30px 0;
}

.top-footer .address {
    display: flex;
    align-items: center;
}

.top-footer .address span {
    display: flex;
    margin: 0 10px 0 0;
}

.top-footer .address {
    margin: 0 0 20px 0;
}

.top-footer .address p,
.top-footer .address a {
    font-size: 14px;
    color: #fff;
    line-height: 1;
    margin: 0;
    transition: all 0.3s ease-in-out;
}

.top-footer .address a:hover {
    color: #e9bb55;
}

.top-footer .address span svg {
    color: #fff;
}

.footer-social ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
}

.footer-social ul li {
    margin: 0 20px 0 0;
}

.footer-social ul li:last-child {
    margin: 0;
}

.footer-social ul li svg {
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.footer-social ul li a {
    display: flex;
}

.footer-social ul li a:hover svg {
    color: #e9bb55;
}

.menu-col {
    width: 33.3%;
}

.menu-col .menu-title h2 {
    font-size: 22px;
    line-height: 1;
    color: #fff;
    font-weight: 500;
    margin: 0 0 30px 0;
}

.menu-col ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.menu-col ul li {
    width: 50%;
    margin: 0 0 20px 0;
}

.menu-col ul li a {
    font-size: 14px;
    line-height: 1;
    color: #fff;
    font-weight: 400;
    margin: 0;
    display: flex;
    max-width: max-content;
    transition: all 0.3s ease-in-out;
}

.menu-col ul li a:hover {
    color: #e9bb55;
}

/* Product Page CSS Start */

.banner-inner-page {
    width: 100%;
    position: relative;
    padding: 200px 0;
    /* background-image: url(../images/product-banner-img.jpg); */
    background-image: url(../images/elegant-skin-care-banner-design.jpg);
    /* 1920 x 500 */
    background-size: cover;
    background-repeat: no-repeat;
}

.inner-page-title h1 {
    font-size: 30px;
    line-height: 1.3;
    color: #000;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

ul.breadcrumb {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

ul.breadcrumb li {
    padding: 0 10px 0 0;
    margin: 0 10px 0 0;
    display: flex;
}

ul.breadcrumb li a,
ul.breadcrumb li span {
    font-size: 12px;
    line-height: 1;
    color: #fff;
    font-weight: 500;
    margin: 0;
    transition: all 0.2s ease-in;
    position: relative;
}

ul.breadcrumb li a:hover {
    color: #e9bb55;
}

ul.breadcrumb li a:after {
    position: absolute;
    content: '';
    width: 5px;
    height: 5px;
    background-color: #fff;
    border-radius: 50%;
    top: 0;
    bottom: 0;
    margin: auto;
    left: auto;
    right: -13px;
}

.product-listing-main {
    width: 100%;
    position: relative;
    padding: 120px 0 0 0;
    background-color: #fff;
}

.product-listing-inner {
    display: flex;
}

.product-filter-col {
    width: 30%;
}

.product-listing-col {
    /* width: calc(100% - 30%); */
    /* padding: 0 0 0 40px; */
    width: 100%;
    padding: 0;
    padding-bottom: 20px;
}

.product-listing-col-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.product-listing-box {
    /* width: calc(33.3% - 30px); */
    width: calc(25% - 22.5px);
}

.product-listing-box-inner {
    position: relative;
    box-shadow: 0px 0px 15px rgba(0, 59, 60, 50%);
    border-radius: 15px;
}

.offer-label {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 99;
}

.offer-label span {
    background-color: #ed1d24;
    padding: 5px 10px;
    font-size: 14px;
    color: #fff;
    line-height: 1;
    border-radius: 6px;
    display: flex;
}

.product-listing-image {
    width: 100%;
    min-height: 320px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.product-listing-image>a {
    width: 100%;
    height: 100%;
    min-height: 320px;
    display: flex;
}

.product-listing-image>a img {
    width: 100%;
    height: auto;
    /* height: 100%; */
    object-fit: cover;
    object-position: center;
    transition: all 0.4s ease-in-out;
}

.product-listing-box-inner:hover .product-listing-image>a img {
    transform: scale(1.09);
}

.product-listing-content {
    margin: 10px 0 0px 0;
    text-align: center;
    padding: 0 20px 20px 20px;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}

.product-listing-content a.btn-secondary {
    width: 100%;
    border: 2px solid #e9bb55;
}

.product-listing-content h2>a {
    font-size: 18px;
    color: #000;
    line-height: 1;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
}

.product-listing-content h2>a:hover {
    color: #e9bb55;
}

.product-listing-content h2 {
    margin: 0 0 10px 0;
}

.product-listing-content .product-review-star {
    justify-content: center;
    margin: 0 0 12px 0;
}

.product-listing-content .product-review-star svg {
    color: #004C45;
}

.product-detail-image .swiper-slide {
    display: flex;
}

.product-detail-image {
    border: 4px solid #003b3c;
    margin: 0 0 10px 0;
}

.product-listing-price span {
    font-size: 18px;
    line-height: 1;
    color: #000;
}

.product-listing-price span.old-price {
    color: #b0b0b0;
    padding: 0 0 0 10px;
    text-decoration: line-through;
}

.product-category-main-sec {
    width: 100%;
    position: relative;
    padding: 120px 0 0 0;
    background-color: #fff;
}

.product-category-inner {
    display: flex;
    align-items: center;
    margin: 0 -15px;
}

.product-category-box {
    width: 25%;
    padding: 0 15px;
}

.product-category-box-inner {
    display: flex;
    align-items: center;
}

.product-category-img {
    width: 60px;
    height: 60px;
    background-color: #f3f3f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 15px 0 0;
}

.product-category-img img {
    width: 30px;
}

.product-category-img-inner {
    display: flex;
}

.product-category-box-inner:hover .product-category-img img {
    animation-name: shakeHover;
    animation-duration: 1.3s;
    -webkit-animation-timing-function:
        ease-in-out;
    animation-timing-function:
        ease-in-out;
}

.product-category-content {
    width: calc(100% - 75px);
}

.product-category-content h2 {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    color: #000;
    margin: 0 0 5px 0;
}

.product-category-content p {
    font-size: 14px;
    line-height: 1.5;
    color: #000;
    margin: 0;
}

.recently-viewed-sec {
    width: 100%;
    position: relative;
    padding: 120px 0;
    background-color: #fff;
}

.recently-viewed-title {
    margin: 0 0 40px 0;
}

.recently-viewed-title h2 {
    width: 100%;
    text-align: center;
    font-size: 30px;
    line-height: 1;
    color: #000;
    margin: 0;
    text-transform: capitalize;
}

.product-listing_wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.product-listing_wrapper .product-listing-box {
    width: calc(25% - 22.5px);
}

/* Product Page CSS End */

/* Product Details Page CSS Start */

.product-detail-main {
    padding: 60px 0 100px 0;
    position: relative;
    /* background-color: #fff; */
}

.product-detail-main>.container {
    padding: 40px;
    background-color: #fff;
}

.breadcrumb-main {
    padding: 40px 0 0 0;
    /* background-color: #fff; */
}

.product-detail-thumb .swiper-slide img {
    width: 100%;
}

.product-detail-image .swiper-slide img {
    width: 100%;
}

.product-detail-inner {
    display: flex;
    flex-wrap: wrap;
}

.product-image-col {
    width: 40%;
}

.product-description-col {
    width: 60%;
}

.product-detail-image .swiper-button-next,
.product-detail-image .swiper-button-prev {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    background-color: #000;
    border-radius: 50%;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 0;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}

.product-detail-image .swiper-button-prev {
    left: 0;
    right: auto;
    transition: all 0.3s ease-in-out;
}

.product-detail-image:hover .swiper-button-next {
    right: 15px;
    opacity: 1;
}

.product-detail-image:hover .swiper-button-prev {
    left: 15px;
    opacity: 1;
}

.product-detail-thumb .swiper-slide {
    opacity: 0.4;
    transition: opacity 0.01s ease-in-out;
}

.product-detail-thumb .swiper-slide.swiper-slide-thumb-active {
    opacity: 1;
}

.product-description-col-inner {
    padding: 0 0 0 60px;
}

.product-description-col-inner h2 {
    font-size: 30px;
    line-height: 1.3;
    color: #000;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.product-description-col-inner .product-review-star svg {
    color: #004C45;
}

.product-description-col-inner .product-review-star {
    margin: 0 0 30px 0;
}

span.product-old-price {
    font-size: 16px;
    color: #b0b0b0;
    line-height: 1;
    margin-right: 20px;
    padding-right: 20px;
    position: relative;
    text-decoration: line-through;
}

span.product-old-price:after {
    content: "";
    height: 20px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    background-color: #b0b0b0;
}

span.product-new-price {
    font-size: 24px;
    font-weight: 800;
    color: #000;
    line-height: 1;
}

span.discount-badge {
    background-color: #ff6400;
    border-radius: 20px;
    color: #fff;
    display: block;
    font-size: 11px;
    font-weight: 600;
    margin-left: 20px;
    padding: 2px 15px 1.5px;
    text-transform: uppercase;
}

.product-description-col-inner p {
    font-size: 15px;
    line-height: 1.4;
    color: #222;
    margin: 20px 0 40px 0;
}

.product-avability ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-avability ul li span.label {
    width: 100px;
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #000;
}

.product-avability ul li span {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    color: #222;
}

.product-avability ul li {
    display: flex;
    align-items: center;
    margin: 0 0 10px 0;
}

.product-avability ul li span svg {
    margin: 0 0 0 6px;
}

.product-avability ul li span a {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    color: #000;
    transition: all 0.2s ease-in-out;
}

.product-avability ul li span a:hover {
    color: #e9bb55;
}

.quantity-input form {
    margin: 0;
    text-align: center;
    padding-top: 10px;
    max-width: max-content;
    display: flex;
    align-items: center;
}

.quantity-input .value-button {
    display: inline-block;
    border: 1px solid #ddd;
    margin: 0px;
    width: 40px;
    height: 40px;
    text-align: center;
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px 0;
    background: transparent;
    user-select: none;
    background-color: #eee;
}

.quantity-input .value-button:hover {
    cursor: pointer;
}

.quantity-input form .decrease {
    border-radius: 8px 0 0 8px;
}

.quantity-input form .increase {
    border-radius: 0 8px 8px 0;
}

.quantity-input form #input-wrap {
    margin: 0px;
    padding: 0px;
}

.quantity-input input.number {
    text-align: center;
    border: none;
    margin: 0px;
    width: 40px;
    height: 40px;
    background-color: #eee;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 0;
}

.quantity-input input[type=number]::-webkit-inner-spin-button,
.quantity-input input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-part {
    margin: 20px 0 0 0;
    display: flex;
    flex-wrap: wrap;
}

.quantity-part span {
    width: 100%;
    font-size: 16px;
    color: #000;
    font-weight: 600;
    line-height: 1;
    margin: 0;
}

.btnadd-to-bag {
    margin: 0px 0 0 20px;
    display: flex;
}

.btnadd-to-bag>a {
    background-color: #e9bb55;
    border: none;
    color: #003b3c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    height: 40px;
    width: 100%;
    min-width: 250px;
    border-radius: 50px;
    transition: all 0.2s ease-in-out;
    margin-top: 10px;
}

.btnadd-to-bag>a:hover {
    background-color: #ddd;
}

.product-detail-tab {
    margin: 60px 0 0 0;
}

.product-detail-tab ul.tabs {
    margin: 0 0 40px 0;
    padding: 0px;
    list-style: none;
    border-bottom: #ececec;
    display: flex;
}

.product-detail-tab ul.tabs li {
    color: #000;
    display: inline-block;
    cursor: pointer;
    margin: 0 40px 0 0;
    color: #b7b7b7;
    display: block;
    font-size: 16px;
    font-weight: 800;
    line-height: 50px;
    position: relative;
    text-transform: uppercase;
    white-space: nowrap;
}

.product-detail-tab ul.tabs li:after {
    background: #000;
    bottom: -2px;
    content: "";
    display: block;
    height: 3px;
    position: absolute;
    right: 0;
    transition: all .3s linear;
    width: 0;
}

.product-detail-tab ul.tabs li.current {
    color: #000;
}

.product-detail-tab ul.tabs li.current:after,
.product-detail-tab ul.tabs li:hover:after {
    left: 0;
    right: auto;
    width: 100%;
}

.product-detail-tab .tab-content {
    display: none;
}

.product-detail-tab .tab-content.current {
    display: inherit;
}

.product-detail-tab .tab-content p,
.product-detail-tab .tab-content ol li {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
    margin: 0 0 20px 0;
}

.product-detail-tab .tab-content ol {
    margin: 0 0 20px 0;
}

.product-detail-tab .tab-content ol li {
    margin: 0 0 5px 0;
}

.product-detail-tab .tab-content h4 {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.tab-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    color: #333;
    overflow: hidden;
}

.tab-content table td {
    padding: 12px 14px;
}

.tab-content table tr:nth-child(odd) {
    background: #f2f2f2;
}

.tab-content table tr:last-child td {
    border-bottom: none;
}

.product-detail-main .product-category-main-sec {
    padding: 50px 0 40px 0;
}


/* Product Details Page CSS End */

/* Cart Page CSS Start */

.cart-drawer-main {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: auto;
    right: -400px;
    transition: right 0.3s ease-in-out;
}

.cart-product-list-inner {
    max-height: 620px;
    overflow-y: scroll;
}

.cart-drawer-main.open-cart {
    right: 0;
}

.cart-drawer-main a svg {
    width: 25px;
    height: auto;
}

.cart-drawer-close a {
    display: flex;
    margin: 0 0 20px auto;
    justify-content: flex-end;
}

.cart-product-list-box .cart-image img {
    width: 100%;
}

.cart-drawer-inner {
    max-width: 400px;
    margin-right: 0;
    margin-left: auto;
    height: 100%;
    background-color: #fff;
    overflow-y: scroll;
    padding: 20px;
    position: relative;
    z-index: 999;
    display: flex;
    flex-direction: column;
}

.cart-product-list-box {
    margin: 0 0 20px 0;
    display: flex;
}

.cart-product-list-box:last-child {
    margin: 0;
}

.cart-image {
    width: 40%;
}

.cart-product-details {
    width: calc(100% - 40px);
    padding: 0 0 0 20px;
}

.cart-product-details h2 {
    line-height: 1;
    display: flex;
    margin: 0 0 10px 0;
}

.cart-product-details h2 a {
    font-size: 18px;
    line-height: 1.2;
    color: #000;
    transition: all 0.2s ease-in-out;
}

.cart-product-details h2 a:hover {
    color: #e9bb55;
}

.cart-product-details h3.price {
    font-size: 16px;
    line-height: 1;
    color: #000;
    margin: 0 0 10px 0;
}

.cart-product-list-wrapper .quantity-input form {
    padding: 0;
}

.cart-drawer-footer {
    margin-top: auto;
    margin-bottom: 0;
}

.add-cart-button a,
.checkout-button a {
    background-color: #e9bb55;
    border: none;
    color: #003b3c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    height: 40px;
    width: 100%;
    border-radius: 50px;
    transition: all 0.2s ease-in-out;
    text-transform: uppercase;
}

.checkout-button a {
    background-color: #ddd;
    margin-top: 10px;
}

.add-cart-button a:hover {
    background-color: #ddd;
}

.checkout-button a:hover {
    background-color: #e9bb55;
}

.cart-drawer-footer-inner {
    padding-top: 20px;
    border-top: 2px solid #ddd;
}

.sub-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 20px;
}

.sub-total span.heading,
.sub-total span.value {
    font-size: 16px;
    color: #000;
    font-weight: 600;
    margin: 0;
}

/* Cart Page CSS End */

/* Responsive CSS Start */

@media screen and (max-width: 1500px) {
    .product-detail-main {
        padding-bottom: 0;
    }
}

@media screen and (max-width: 1299px) {
    .banner-slide-content h2 {
        font-size: 40px;
        line-height: 1.3;
    }

    .product-list-content h3 {
        margin: 0 0 10px 0;
    }

    .product-list-content h2 {
        font-size: 25px;
        line-height: 1.3;
    }

    .product-list-image img {
        width: 80%;
    }

    .product-list-image {
        width: 100%;
        background-color: #ddf2e1;
    }

    .product-list-box {
        padding: 0 10px;
    }

    .product-list-inner {
        margin: 0 -10px;
    }

    .product-button {
        bottom: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }

    .product-listing-box {
        width: calc(33.3% - 20px);
    }

    .product-listing_wrapper .product-listing-box {
        width: calc(33.3% - 20px);
    }

    .product-category-box {
        padding: 0 10px;
    }
}

@media screen and (max-width: 1199px) {
    .product-list-image img {
        width: 70%;
    }

    .cta-content {
        padding: 0 40px 0 0;
    }

    .client-description p {
        font-size: 22px;
    }

    .author-review {
        margin: 20px 0;
    }

    .uses-list-inner .image {
        width: 80px;
        height: 80px;
    }

    .uses-list-inner .image img {
        width: 40px;
    }
}

@media screen and (max-width: 1024px) {

    .main-product-list-sec,
    .best-seller-main-sec,
    .product-slider-main-sec,
    .cta-main-sec,
    .most-selling-product-sec,
    .uses-of-medical-main-sec,
    .product-listing-main {
        padding: 80px 0 0 0;
    }

    .review-main-sec {
        padding: 80px 0;
        margin: 80px 0 0 0;
    }

    .home .main-footer {
        margin: 80px 0 0 0;
    }

    .top-footer,
    .recently-viewed-sec {
        padding: 80px 0;
    }

    .main-header .logo img {
        width: 200px;
    }

    .product-category-main-sec {
        padding: 60px 0 0 0;
    }

    .product-category-inner {
        flex-wrap: wrap;
        margin: 0;
        gap: 20px;
    }

    .product-category-box {
        width: calc(50% - 10px);
        padding: 0;
    }

    .product-description-col-inner {
        padding: 0 0 0 30px;
    }

    .product-description-col-inner .product-review-star {
        margin: 0 0 20px 0;
    }

    .product-detail-image .swiper-button-next,
    .product-detail-image .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .btnadd-to-bag>a {
        min-width: 240px;
    }

    .btnadd-to-bag {
        margin: 0px 0 0 10px;
    }

    .product-detail-tab ul.tabs li {
        margin: 0 20px 0 0;
        font-size: 14px;
        line-height: 40px;
    }

    .product-detail-main>.container {
        padding: 60px 20px;
    }

    .product-detail-main>.container {
        padding-bottom: 20px;
    }
}

@media screen and (max-width: 991px) {
    .banner-slide {
        flex-direction: column;
    }

    .banner-slide-content {
        width: 100%;
        padding-bottom: 50px;
    }

    .product-list-box {
        width: 50%;
        margin-bottom: 20px;
    }

    .product-list-box:last-child {
        margin-bottom: 0;
    }

    .best-seller-inner,
    .most-selling-product-inner,
    .uses-of-medical-inner {
        flex-direction: column;
    }

    .best-seller-img-col {
        padding: 0 0px 20px 0;
    }

    .best-seller-content-col {
        width: 100%;
    }

    .product-slide-content h3 {
        font-size: 18px;
    }

    .product-review-star svg {
        width: 12px;
    }

    .product-review {
        margin: 0 0 10px 0;
    }

    .btn-secondary,
    .btn-primary {
        padding: 10px 25px;
        height: 40px;
    }

    .cta-content {
        width: 60%;
    }

    .cta-image {
        height: 340px;
    }

    .most-selling-product-content {
        width: 100%;
    }

    .most-selling-product-img {
        margin: 0 auto 20px auto;
    }

    .selling-price {
        margin: 20px 0 0 0;
    }

    .quantity-button_wrapper {
        margin: 0 0 20px 0;
    }

    .quantity-button_wrapper button.quantity {
        padding: 0 15px;
        height: 46px;
        border-radius: 5px;
        margin: 0 6px;
    }

    .testimonial-main {
        width: 70%;
    }

    .uses-left-col,
    .uses-right-col {
        width: 100%;
    }

    .uses-left-col .uses-list-inner {
        flex-direction: row;
    }

    .uses-left-col .uses-list-inner .image {
        margin: 0 20px 0 0;
    }

    .uses-content {
        width: calc(100% - 100px);
    }

    .uses-left-col .uses-content {
        text-align: left;
    }

    .uses-list-box {
        margin: 0 0 40px 0;
    }

    .uses-center-image {
        width: 50%;
        margin: 40px 0;
    }

    .uses-of-medical-title {
        margin: 0 0 40px 0;
    }

    .product-listing-col-inner,
    .product-listing_wrapper {
        gap: 20px;
    }

    .product-listing-box,
    .product-listing_wrapper .product-listing-box {
        width: calc(50% - 10px);
    }
}

@media screen and (max-width: 767px) {
    .header-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .header-menu.active {
        max-height: 300px;
    }

    .toggle-icon {
        display: flex;
    }

    .header-menu {
        position: absolute;
        width: 100%;
        left: 0;
        top: 70px;
        background-color: #fff;
        z-index: 99;
    }

    .header-menu ul {
        flex-direction: column;
        padding: 20px 0;

    }

    .header-menu ul li a {
        color: #003b3c;
    }

    .header-menu ul li {
        padding: 10px 0;
    }

    .toggle-icon.active-toggle span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }

    .toggle-icon.active-toggle span:nth-child(2) {
        opacity: 0;
    }

    .toggle-icon.active-toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
    }

    .header-icons {
        margin-left: auto;
        margin-right: 10px;
    }

    .header-icons .header-cart,
    .header-icons .header-search {
        width: 36px;
        height: 36px;
        margin: 0 0 0 5px;
    }

    .main-product-list-sec,
    .best-seller-main-sec,
    .product-slider-main-sec,
    .cta-main-sec,
    .most-selling-product-sec,
    .uses-of-medical-main-sec,
    .product-listing-main {
        padding: 60px 0 0 0;
    }

    .product-category-main-sec {
        padding: 40px 0 0 0;
    }

    .review-main-sec {
        padding: 60px 0;
        margin: 60px 0 0 0;
    }

    .home .main-footer {
        margin: 60px 0 0 0;
    }

    .top-footer,
    .recently-viewed-sec {
        padding: 60px 0;
    }

    .banner-slide-content h2 {
        font-size: 30px;
    }

    .buttom_wrapper a.btn-primary {
        margin: 0 15px 0 0;
    }

    .cta-content {
        width: 100%;
        padding: 0 20px;
    }

    .testimonial-main {
        width: 100%;
    }

    .cta-image {
        height: 320px;
    }

    .address-col,
    .menu-col {
        width: 50%;
    }

    .client-description p {
        font-size: 18px;
    }

    .author-image {
        width: 60px;
        margin: 0 20px 0 0;
    }

    .author-description h2,
    .author-description h3 {
        text-align: left;
    }

    .author-description h2 {
        font-size: 18px;
    }

    .product-list-content h2 {
        font-size: 24px;
    }

    .product-list-content h3 {
        font-size: 16px;
    }

    .testimonial-title h2,
    .best-seller-content-col h2,
    .product-slider-title h2,
    .cta-content h2,
    .most-selling-product-content h2 a,
    .uses-of-medical-title h2 {
        font-size: 26px;
    }

    .banner-inner-page {
        padding: 100px 0;
    }

    .product-detail-inner {
        flex-direction: column;
    }

    .product-image-col {
        width: 100%;
    }

    .product-description-col {
        width: 100%;
        margin: 40px 0 0 0;
    }

    .product-description-col-inner {
        padding: 0;
    }

    .product-detail-tab ul.tabs {
        overflow-y: hidden;
        width: calc(100vw - 60px);
        overflow-x: scroll;
        padding-bottom: 10px;
    }

    .btnadd-to-bag>a {
        min-width: 180px;
    }
}

@media screen and (max-width: 640px) {

    .product-list-box,
    .most-selling-product-img,
    .banner-slide-image,
    .best-seller-img-col,
    .uses-center-image,
    .address-col,
    .menu-col,
    .btn-add-cart a,
    .btn-paypal,
    .product-listing-box,
    .product-listing_wrapper .product-listing-box,
    .product-category-box {
        width: 100%;
    }

    .address-col {
        margin: 0 0 40px 0;
    }

    .uses-list-inner .image {
        width: 60px;
        height: 60px;
    }

    .uses-content {
        width: calc(100% - 80px);
    }

    .uses-list-inner .image img {
        width: 30px;
    }

    .btn-add-cart a {
        height: 44px;
        font-size: 14px;
    }
}

@media screen and (max-width: 575px) {
    .main-header .logo img {
        width: 160px;
    }
}

/* Responsive CSS End */