:root {
    --bottom-nav-height: calc(64px + env(safe-area-inset-bottom));
}

body {
    margin: 0px;
    /* padding-bottom: var(--bottom-nav-height); */
}

* {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden !important;
}

html {
    scroll-behavior: smooth !important;
}




a {
    text-decoration: none !important;
    font-family: "Poppins", sans-serif;
}

h1 {
    font-family: "Poppins", sans-serif;
}

h2 {
    font-family: "Poppins", sans-serif;
}

h3 {
    font-family: "Poppins", sans-serif;
}

h4 {
    font-family: "Poppins", sans-serif;
}

h5 {
    font-family: "Poppins", sans-serif;
}

h6 {
    font-family: "Poppins", sans-serif;
}

p {
    font-family: "Poppins", sans-serif;
}

/* tag font end */

/* .sticky-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
} */



.navbar-custom {
    width: 100%;
    background: transparent;
    transition: .35s ease;
    z-index: 1030;
    padding: 0px 0;
}

.navbar-custom .container {
    display: grid;
    grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr);
    align-items: center;
    gap: 1rem;
    min-height: 70px;
}

.navbar-custom .navbar-brand {
    justify-self: start;
    margin: 0;
}

.navbar-custom .collapse.navbar-collapse {
    display: flex !important;
    grid-column: 2;
    justify-content: center;
    min-width: 0;
}

.navbar-custom .navbar-nav {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-icons {
    justify-self: end;
}

.navbar-brand img {
    width: 72px;
    height: auto;
    transition: .3s;
}

/* Sticky */

.sticky-scroll {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    animation: headerDown .4s ease;
}

@keyframes headerDown {

    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }

}


.navbar-nav {
    margin: 0;
    display: flex;
    justify-content: center;
}

.navbar-nav .nav-item {
    /* margin: 0 10px; */
    margin: 0 20px;
}

.navbar-nav .nav-link {
    /* position: relative; */
    color: #000 !important;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Playfair Display', serif;
    padding: 10px 8px;
    transition: .3s;

    letter-spacing: 2px;
}

/* .navbar-nav .nav-link::after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: 0;

    width: 0;

    height: 2px;

    background: #67c469;

    transform: translateX(-50%);

    transition: .35s;

}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {

    width: 100%;

} */

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {

    color: #67c469 !important;

}


.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler i {
    font-size: 22px;
    color: #000;
}


.header-icons {

    display: flex;

    align-items: center;

    gap: 15px;

}

.header-icon {

    position: relative;

    width: 40px;

    height: 40px;

    border-radius: 50%;

    border: 1px solid #e6e6e6;

    display: flex;

    justify-content: center;

    align-items: center;

    color: #000;

    text-decoration: none;

    transition: .3s;

}

.header-icon i {

    font-size: 15px;

}

.header-icon:hover {

    background: #67c469;

    border-color: #67c469;

    color: #fff;

}

.cart-count {

    position: absolute;

    top: -5px;

    right: -5px;

    width: 22px;

    height: 22px;

    border-radius: 50%;

    background: #67c469;

    color: #fff;

    font-size: 11px;

    font-weight: 400;

    display: flex;

    justify-content: center;

    align-items: center;

    border: 2px solid #fff;

}


.offcanvas {

    width: 320px;

}

.offcanvas-header {

    padding: 20px;

    border-bottom: 1px solid #eee;

}

.offcanvas-body {

    padding: 25px;

}

.offcanvas-body .navbar-nav {

    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    text-align: left;

}

.offcanvas-body .nav-item {

    margin: 0;

}

.offcanvas-body .nav-link {

    padding: 14px 0;

    border-bottom: 1px solid #f3f3f3;
    text-align: left;

}

.offcanvas-body .nav-link::after {
    left: 0;
    transform: none;
}

.offcanvas-body .nav-link:hover::after,
.offcanvas-body .nav-link.active::after {
    width: 42px;
}


.offcanvas-icons {

    display: none;

}

.offcanvas-icons a {

    display: flex;

    justify-content: space-between;

    align-items: center;

    text-decoration: none;

    color: #000;

    border: 1px solid #eee;

    border-radius: 14px;

    padding: 14px 18px;

    margin-top: 15px;

    transition: .3s;

}

.offcanvas-icons a div {

    display: flex;

    align-items: center;

}

.offcanvas-icons a i:first-child {

    width: 26px;

    color: #67c469;

    font-size: 18px;

}

.offcanvas-icons a span {

    margin-left: 12px;

    font-size: 16px;

}

.offcanvas-icons strong {

    width: 28px;

    height: 28px;

    border-radius: 50%;

    background: #67c469;

    color: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 12px;

}

.offcanvas-icons a:hover {

    background: #67c469;

    color: #fff;

}

.offcanvas-icons a:hover i,
.offcanvas-icons a:hover span {

    color: #fff;

}

.offcanvas-icons a:hover strong {

    background: #fff;

    color: #67c469;

}


@media(max-width:991px) {

    .navbar-custom .container {
        display: flex;
        justify-content: space-between;
        min-height: 64px;
    }

    .navbar-custom .collapse.navbar-collapse {
        display: none !important;
    }

    .navbar-brand img {

        width: 65px;

    }

    .header-icons {

        display: none;

    }

    .mobile-header-icons {

        display: flex;
        align-items: center;
        gap: 12px;
        margin-left: auto;

    }

    .offcanvas-icons {

        display: block;

    }

    .navbar-nav .nav-link {

        font-size: 18px;

    }

}


@media(max-width:576px) {

    .navbar-custom {

        padding: 10px 0;

    }

    .navbar-brand img {

        width: 58px;

    }

    .mobile-header-icons {
        gap: 15px;
    }

    .mobile-header-icons .header-icon {
        width: 32px;
        height: 32px;
    }

    .cart-count {
        top: -13px;
    }

    .offcanvas {

        width: 280px;

    }

    .offcanvas-body {

        padding: 20px;

    }

    .offcanvas-icons a {

        padding: 12px 15px;

    }

    .offcanvas-icons a span {

        font-size: 15px;

    }

    /* .header-icon{
        width: 32px;
        height: 32px;
    } */

}


@media(max-width:375px) {

    .navbar-brand img {

        width: 52px;

    }

    .offcanvas {

        width: 260px;

    }

    .header-icon {

        width: 40px;

        height: 40px;

    }

}


/* banner section */


.hero-section {
    padding: 10px 0 0;
    /* remove bottom gap */
    background: #ffffff;
}

.hero-box {
    background: linear-gradient(135deg, #021e19 0%, #06392f 60%, #042720 100%);
    border-radius: 35px;
    overflow: hidden;
    position: relative;
    min-height: 600px;
    padding-left: 70px;
}

.hero-box .row {
    min-height: 600px;
    align-items: center;
}

/* Optional Glow */

.hero-box::before {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    right: -180px;
    top: -100px;
    background: rgba(255, 255, 255, .04);
    border-radius: 50%;
}

.hero-box::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    left: -120px;
    bottom: -120px;
    background: rgba(255, 255, 255, .03);
    border-radius: 50%;
}


.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 520px;
}

.hero-subtitle {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 4px;
    color: #d8bf90;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 72px;
    line-height: 1.05;
    font-weight: 400;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.hero-content h1 span {
    display: block;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #d9d9d9;
    margin-bottom: 40px;
}


.hero-btns {
    display: flex;
    gap: 18px;
    /* flex-wrap: wrap; */
}

.btn-shop {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    background: #fff;
    color: #042720;
    border-radius: 50px;
    text-decoration: none;
    /* font-weight: 600; */
    transition: .4s;
}

.btn-shop:hover {
    background: #d7b57c;
    color: #fff;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    border: 1px solid rgba(255, 255, 255, .5);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    transition: .4s;
}

.btn-outline:hover {
    background: #fff;
    color: #042720;
}


.hero-image {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    height: 100%;
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    max-width: 560px;
    display: block;
    margin-bottom: 0;

}

@media (min-width: 992px) {
    .hero-box {
        padding-left: 70px;
        padding-right: 70px;
    }

    .hero-box .col-lg-6:last-child {
        position: static;
        padding-left: 0;
        padding-right: 0;
    }

    .hero-image {
        position: absolute;
        /* right: 70px; */
        right: 0px;
        bottom: 0;
        top: auto;
        width: auto;
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        z-index: 5;
        pointer-events: auto;
    }

    .hero-image img {
        max-width: 560px;
        max-height: 100%;
        height: auto;
        object-fit: contain;
        margin-bottom: 0;
        display: block;
        width: auto;
    }
}


@media(max-width:1200px) {

    .hero-box {
        padding-left: 50px;
    }

    .hero-content h1 {
        font-size: 60px;
    }

    .hero-image img {
        max-width: 500px;
    }

}


@media(max-width:991px) {

    .hero-section {
        padding: 50px 0;
    }

    .hero-box {
        min-height: auto;
        padding: 50px 35px 0;
        text-align: center;
    }

    .hero-box .row {
        min-height: auto;
    }

    .hero-content {
        max-width: 100%;
        margin: auto;
    }

    .hero-subtitle {
        display: block;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content p {
        max-width: 650px;
        margin: 0 auto 35px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-image {
        justify-content: center;
        margin-top: 20px;
    }

    .hero-image img {
        max-width: 420px;
    }

}


@media(max-width:767px) {

    .hero-section {
        padding: 0px 0;
    }

    .hero-box {
        border-radius: 20px;
        padding: 40px 20px 0;
    }

    .hero-content {
        text-align: center;
    }

    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 3px;
    }

    .hero-content h1 {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 18px;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 30px;
    }

    /* .hero-btns {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 15px;
    } */



    .btn-shop,
    .btn-outline {
        width: 230px;
    }

    .hero-image {
        justify-content: center;
        margin-top: 20px;
    }

    .hero-image img {
        max-width: 290px;
    }

}


@media(max-width:480px) {

    .hero-box {
        padding: 35px 15px 0;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .btn-shop,
    .btn-outline {
        width: 100%;
    }

    .hero-image img {
        max-width: 240px;
    }

}

/* banner end */



/* footer start */

.footer-section {
    padding: 40px 0 0;
    background: #fff;
    border-top: 1px solid #ececec;
}

.footer-logo-img {
    display: inline-block;
    margin-bottom: 0px;
}

.footer-logo-img img {
    width: 80px;
    height: auto;
    display: block;
    transition: .3s;
}

.footer-logo-img:hover img {
    transform: scale(1.04);
}

.footer-logo p {
    color: #666;
    line-height: 30px;
    margin-bottom: 30px;
    max-width: 380px;
    font-size: 15px;
}

.footer-widget h4 {
    font-size: 22px;
    color: #000;
    margin-bottom: 25px;
    font-weight: 500;
    position: relative;
    font-family: 'Playfair Display', serif;
}

.footer-widget h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 3px;
    background: #67c469;
    border-radius: 30px;
}

.footer-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 16px;
}

.footer-widget ul li:last-child {
    margin-bottom: 0;
}

.footer-widget ul li a {
    color: #555;
    text-decoration: none;
    transition: .3s;
    display: inline-flex;
    align-items: center;
    font-size: 15px;
}

.footer-widget ul li a:hover {
    color: #67c469;
    transform: translateX(8px);
}

/* Contact */

.footer-contact li a {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-contact li i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f4faf4;
    color: #67c469;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.footer-contact li a:hover i {
    background: #67c469;
    color: #fff;
}

/* Social */

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: .35s;
}

.footer-social a:hover {
    background: #67c469;
    color: #fff;
    transform: translateY(-5px);
}

/* Bottom */

.footer-bottom {
    margin-top: 35px;
    padding: 22px 0;
    border-top: 1px solid #ececec;
}

.footer-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-wrapper p {
    margin: 0;
    color: #666;
    font-size: 15px;
}



.footer-bottom-wrapper a {
    color: #666;
    text-decoration: none;
    font-size: 15px;

}


/* Responsive */

@media(max-width:991px) {

    .footer-section {
        text-align: left;
    }

    .footer-logo {
        text-align: left;
    }

    .footer-logo-img {
        display: block;
    }

    /* .footer-logo-img {
        display: flex;
        justify-content: center;
    } */

    .footer-logo p {
        margin: 20px 0 30px;
        max-width: 100%;
        text-align: left;
    }



    .footer-social {
        justify-content: flex-start;
    }

    .footer-widget {
        margin-top: 20px;
    }

    .footer-widget h4::after {
        left: 0;
        transform: none;
    }

    .footer-contact li a {
        justify-content: flex-start;
    }

    /* .footer-bottom-content, */
    .footer-bottom-wrapper {
        flex-direction: column;
        /* align-items: flex-start; */
        gap: 10px;
        text-align: center;
    }

}

/* footer end */






/* floating btn */

.floating-buttons-left {
    position: fixed;
    left: 15px;
    bottom: 3%;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
}


.float-btn.whatsapp {
    background: #25d366;
}


.float-btn.call {
    background: #67c469;
}




/* end */

/* bootom to top */

.back-to-top {
    position: fixed;
    right: 15px;
    bottom: 3%;
    width: 40px;
    height: 40px;
    background: #67c469;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    z-index: 999;
}


@media(max-width:576px) {
    .floating-buttons-left {
        display: none;
    }

    .back-to-top {
        display: none !important;
    }
}

/* end */



/* products start */

.product-section {
    padding: 40px 0;
    background: #fff;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 45px;
    gap: 20px;
}

.section-heading h2 {
    margin: 0;
    font-size: 42px;
    font-family: 'Playfair Display', serif;
    color: #000;
}

.section-heading span {
    color: #67c469;
}

.search-box {
    width: 320px;
}

.search-box input {
    height: 52px;
    border-radius: 50px;
    border: 1px solid #ddd;
    padding: 0 20px;
    box-shadow: none;
}

.search-box input:focus {
    border-color: #67c469;
}

.product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    overflow: hidden;
    transition: .35s;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: .4s;
}

.product-card:hover img {
    transform: scale(1.06);
}

.sale-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #67c469;
    color: #fff;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 12px;
    z-index: 2;
}

.product-content {
    padding: 20px;
}

.product-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.product-top h5 {
    margin: 0;
    font-size: 17px;
    color: #111;
    font-weight: 400;
}

.cart-btn {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #f5f5f5;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
}

.cart-btn:hover {
    background: #67c469;
    color: #fff;
}

.price {
    color: #67c469;
    font-size: 20px;
    font-weight: 500;
}

.price span {
    color: #999;
    font-size: 15px;
    text-decoration: line-through;
    margin-left: 8px;
}

.read-btn {
    margin-top: 10px;
    display: inline-block;
    color: #000;
    font-weight: 400;
    transition: .3s;
}

.read-btn:hover {
    color: #67c469;
}

@media(max-width:991px) {

    .section-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-box {
        width: 100%;
    }

}

@media(max-width:767px) {

    .product-section {
        padding: 30px 0;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .product-image img {
        height: 180px;
    }

    .product-content {
        padding: 15px;
    }

    .product-top h5 {
        font-size: 15px;
    }

    .price {
        font-size: 18px;
    }

    .price span {
        font-size: 12px;
    }

    .cart-btn {
        width: 36px;
        height: 36px;
    }

    .read-btn {
        font-size: 14px;
    }

}


@media(max-width:432px) {

    .product-image img {
        height: 140px;
    }

    .product-card {
        border-radius: 8px;
    }

    .product-top h5 {
        font-size: 14px;
    }

    .price {
        font-size: 16px;
    }

}




/* product page end */


/* products detail page.  */

.product-detail-section {
    padding: 50px 0;
    background: #fff;
}

.product-detail-gallery {
    background: #fafafa;
    padding: 25px;
    border-radius: 25px;
}

.product-detail-main-image {
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 20px;
}

.product-detail-main-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 20px;
}

/* Thumbnail */

.product-detail-thumbs-wrapper {
    position: relative;
}

.product-detail-thumbs {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 50px;
    scrollbar-width: none;
}

.product-detail-thumbs::-webkit-scrollbar {
    display: none;
}

.product-thumb {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 15px;
    cursor: pointer;
    border: 2px solid transparent;
    flex-shrink: 0;
    transition: .3s;
}

.product-thumb.active,
.product-thumb:hover {
    border-color: #67c469;
}

/* Arrow Buttons */

.thumb-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s;
    z-index: 10;
}

.thumb-btn:hover {
    background: #67c469;
    color: #fff;
}

.thumb-prev {
    left: 0;
}

.thumb-next {
    right: 0;
}

/* Content */

.product-detail-category {
    display: inline-block;
    background: rgba(241, 207, 118, .2);
    color: #06392f;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 25px;
}

.product-detail-title {
    font-size: 30px;
    font-weight: 500;
    color: #111;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: "Nunito", sans-serif;
}

.product-detail-rating {
    color: #ffdd00;
    font-size: 22px;
    margin-bottom: 20px;
}

.product-detail-rating span {
    color: #777;
    font-size: 15px;
    margin-left: 10px;
}

.product-detail-price {
    font-size: 25px;
    font-weight: 400;
    color: #67c469;
    margin-bottom: 25px;
    font-family: "Nunito", sans-serif;
}

.product-detail-price span {
    color: #999;
    font-size: 18px;
    text-decoration: line-through;
    margin-left: 15px;
}

.product-detail-desc {
    color: #666;
    font-size: 15px;
    line-height: 32px;
    margin-bottom: 30px;
    font-family: "Nunito", sans-serif;
}

.product-detail-list {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.product-detail-list li {
    margin-bottom: 15px;
    padding-left: 28px;
    position: relative;
    color: #444;
}

.product-detail-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #67c469;
    font-weight: 700;
}

/* Quantity */

.product-detail-quantity {
    display: flex;
    width: 150px;
    margin-bottom: 35px;
}

.qty-btn {
    width: 45px;
    height: 45px;
    border: none;
    background: #67c469;
    font-size: 22px;
    cursor: pointer;
}

.product-detail-quantity input {
    width: 60px;
    border: 1px solid #eee;
    text-align: center;
    font-size: 18px;
}

/* Buttons */

.product-detail-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.buy-now-btn,
.detail-whatsapp-btn {
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 400;
    transition: .3s;
}

.buy-now-btn {
    background: #06392f;
    color: #fff;
}

.buy-now-btn:hover {
    background: #67c469;
    color: #111;
}

.detail-whatsapp-btn {
    background: #25D366;
    color: #fff;
}

.detail-whatsapp-btn i {
    margin-right: 8px;
}

.detail-whatsapp-btn:hover {
    background: #1ebe5d;
    color: #fff;
}

/* Responsive */

@media (max-width:991px) {

    .product-detail-main-image img {
        height: 400px;
    }

    .product-detail-title {
        font-size: 36px;
    }
}

@media (max-width:576px) {

    .product-detail-section {
        padding: 50px 0;
    }

    .product-detail-gallery {
        padding: 15px;
    }

    .product-detail-main-image img {
        height: 300px;
    }

    .product-thumb {
        width: 70px;
        height: 70px;
    }

    .product-detail-title {
        font-size: 23px;
    }

    .product-detail-price {
        font-size: 25px;
    }

    .product-detail-price span {
        font-size: 18px;
    }

    .product-detail-buttons a {
        width: 100%;
        text-align: center;
    }
}

/* detail page end */






/* product category start */


.category-section {
    padding: 40px 0;
    background: #fff;
}

/* Heading */

.category-heading {
    margin-bottom: 30px;
}

/* .category-heading span {
    color: #67c469;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
} */

.category-heading h2 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 500;
    color: #111;
    margin: 15px 0;
}

.category-heading h2 span {
    color: #67c469;
}

.category-heading p {
    max-width: 650px;
    margin: auto;
    color: #777;
    line-height: 30px;
}

/* Category Card */

.category-item {
    text-align: center;
    padding: 15px;
}

.category-item a {
    text-decoration: none;
    display: block;
}

.category-image {
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 100px;
    overflow: hidden;
    border: 1px solid #67c469;
    padding: 6px;
    background: #fff;
    transition: all .4s ease;
}

.category-image img {
    width: 100%;
    height: 100%;
    border-radius: 100px;
    object-fit: cover;
    transition: all .5s ease;
}

.category-item h5 {
    margin-top: 20px;
    color: #111;
    font-size: 15px;
    font-weight: 400;
    transition: .3s;
    font-family: "Nunito", sans-serif;
}

.category-item:hover .category-image {
    transform: translateY(-10px);
    border-color: #67c469;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
}

.category-item:hover img {
    transform: scale(1.08);
}

.category-item:hover h5 {
    color: #67c469;
}

/* Owl */

.category-slider .owl-stage {
    display: flex;
    align-items: center;
}

.category-slider .owl-dots {
    text-align: center;
    margin-top: 40px;
    display: none;
}

.category-slider .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px;
    background: #d6d6d6 !important;
    border-radius: 50%;
    display: block;
}

.category-slider .owl-dot.active span {
    background: #67c469 !important;
}

/* Mobile */

@media (max-width:767px) {

    .category-section {
        padding: 40px 0;
    }

    .category-heading h2 {
        font-size: 28px;
    }

    .category-image {
        width: 120px;
        height: 120px;
    }

    .category-item h5 {
        font-size: 16px;
    }
}

@media (max-width:500px) {


    .category-section {
        padding: 15px 0;
    }

    .category-image {
        width: 50px;
        height: 50px;
        padding: 2px;
    }

    .category-item h5 {
        font-size: 13px;
        text-align: center;
    }

    .category-heading p {
        display: none;
    }


    .category-slider .owl-dots {
        margin-top: 10px;
    }

}





/* category end */



/* about start */

.about-section {
    padding: 40px 0;
    background: #fff;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 25px;
}

.experience-box {
    position: absolute;
    right: -20px;
    bottom: 30px;
    background: #67c469;
    color: #fff;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
}

.experience-box h3 {
    font-size: 42px;
    margin: 0;
    font-weight: 700;
}

.experience-box span {
    font-size: 15px;
}

.sub-title {
    color: #67c469;
    font-weight: 600;
    letter-spacing: 2px;
}

.about-content h2 {
    font-size: 40px;
    line-height: 1.3;
    margin: 18px 0;
    color: #000;
    font-family: 'Playfair Display', serif;
}

.about-content h2 span {
    color: #67c469;
}

.about-content p {
    color: #666;
    line-height: 30px;
    margin-bottom: 18px;
    font-size: 15px;
}

.about-feature {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 35px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.feature-item i {
    width: 50px;
    height: 50px;
    background: #67c469;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-btn {
    display: inline-block;
    padding: 14px 35px;
    background: #67c469;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    transition: .3s;
}

.about-btn:hover {
    background: #000;
    color: #fff;
}

@media(max-width:991px) {

    .about-section {
        padding: 50px 0;
    }

    .about-content {
        margin-top: 20px;
    }

    .experience-box {
        right: 20px;
        bottom: 20px;
    }

}

@media(max-width:576px) {

    .about-content {
        text-align: center;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-feature {
        grid-template-columns: 1fr;
    }

    .feature-item {
        justify-content: left;
    }

    /* .about-btn {
        width: 100%;
    } */

    .experience-box {
        padding: 18px;
    }

    .experience-box h3 {
        font-size: 30px;
    }

}


/* about end */




/* cart page start*/

.cart-section {
    padding: 40px 0;
    /* background:#f8f8f8; */
}

.cart-title {
    margin-bottom: 40px;
}

.cart-title h2 {
    font-size: 40px;
    font-weight: 500;
    color: #111;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.cart-title h2 span {
    color: #67c469;
}

.cart-title p {
    color: #777;
}


.cart-box {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.cart-item:last-child {
    border-bottom: none;
}


.cart-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 15px;
    border: 1px solid #eee;
}


.cart-details {
    flex: 1;
}

.cart-details h5 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.cart-price {
    color: #67c469;
    font-size: 18px;
    font-weight: 500;
}

.cart-price span {
    color: #999;
    text-decoration: line-through;
    font-size: 15px;
    margin-left: 8px;
}



.cart-qty {
    display: flex;
    align-items: center;
    margin-top: 18px;
    width: max-content;
    border: 1px solid #ddd;
    border-radius: 50px;
    overflow: hidden;
}

.cart-qty button {
    width: 42px;
    height: 42px;
    border: none;
    background: #fafafa;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: .3s;
}

.cart-qty button:hover {
    background: #67c469;
    color: #fff;
}

.cart-qty input {
    width: 55px;
    height: 42px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    outline: none;
}

.cart-qty input::-webkit-inner-spin-button,
.cart-qty input::-webkit-outer-spin-button {
    display: none;
}


.cart-remove a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f4faf4;
    color: #67c469;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: .3s;
}

.cart-remove a:hover {
    background: #67c469;
    color: #fff;
}


.cart-summary {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.cart-summary h4 {
    font-size: 24px;
    margin-bottom: 25px;
}

.cart-summary ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cart-summary li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
    color: #555;
}

.cart-summary .total {
    border-top: 1px solid #eee;
    padding-top: 20px;
    font-size: 22px;
    font-weight: 700;
    color: #111;
}

.checkout-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #67c469;
    color: #fff;
    padding: 15px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 25px;
    transition: .3s;
}

.checkout-btn:hover {
    background: #111;
    color: #fff;
}

.continue-btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 15px;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 50px;
    color: #111;
    text-decoration: none;
    transition: .3s;
}

.continue-btn:hover {
    background: #111;
    color: #fff;
}


@media(max-width:991px) {

    .cart-summary {
        margin-top: 30px;
    }

}

@media (max-width:767px) {

    .cart-section {
        padding: 20px 0;
    }

    .cart-title {
        margin-bottom: 25px;
    }

    .cart-title h2 {
        font-size: 28px;
    }

    .cart-title p {
        font-size: 14px;
    }

    .cart-box {
        padding: 15px;
    }

    .cart-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 15px 0;
    }

    .cart-image {
        flex: 0 0 85px;
    }

    .cart-image img {
        width: 85px;
        height: 85px;
        border-radius: 10px;
    }

    .cart-details {
        flex: 1;
        min-width: 0;
    }

    .cart-details h5 {
        font-size: 15px;
        margin-bottom: 5px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .cart-price {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .cart-price span {
        font-size: 12px;
    }

    .cart-qty {
        margin-top: 0;
    }

    .cart-qty button {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    .cart-qty input {
        width: 35px;
        height: 28px;
        font-size: 13px;
    }

    .cart-remove {
        flex: 0 0 auto;
    }

    .cart-remove a {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .cart-summary {
        margin-top: 20px;
        padding: 18px;
    }

    .checkout-btn,
    .continue-btn {
        padding: 12px;
        font-size: 14px;
    }

}



/* cart page end */


/* bottom nav */


:root {
    --bottom-nav-height: 70px;
}

.bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: var(--bottom-nav-height);
    background: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0 calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 15px rgba(0, 0, 0, .08);
    z-index: 9999;
    /* display: none; */
}

.bottom-nav a {
    flex: 1;
    text-decoration: none;
    color: #6a6c6e;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 15px;
    font-weight: 400;
    transition: .3s;
}

.bottom-nav a i {
    font-size: 22px;
    transition: .3s;
}

.bottom-nav a span {
    font-size: 12px;
}

.bottom-nav a:hover,
.bottom-nav a.active {
    color: #67c469;
}

.bottom-nav a:hover i,
.bottom-nav a.active i {
    transform: translateY(-2px);
}

@media (max-width:576px) {

    /* body {
        padding-bottom: var(--bottom-nav-height);
    } */

    .bottom-nav {
        display: flex;
    }
}

@media (max-width:432px) {

    .bottom-nav {
        height: 65px;
    }

    .bottom-nav a i {
        font-size: 18px;
    }

    .bottom-nav a span {
        font-size: 11px;
    }

}

/* bottom nav end */



/* contact page start */


/*==============================
CONTACT PAGE SECTION
==============================*/

.contact-page-section {
    padding: 100px 0;
    background: #f7faf7;
}

.contact-content {
    padding-right: 30px;
}

.contact-subtitle {
    color: #67c469;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.contact-content h2 {
    font-size: 40px;
    /* font-weight:700; */
    color: #000;
    line-height: 1.2;
    margin: 18px 0;
    font-family: 'Playfair Display', serif;
}

.contact-content p {
    color: #666;
    line-height: 30px;
    margin-bottom: 40px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    padding: 22px;
    border-radius: 18px;
    /* box-shadow:0 12px 35px rgba(0,0,0,.05); */
    transition: .35s;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #67c469;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
}

.contact-item span {
    color: #777;
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.contact-item h6 {
    margin: 0;
    color: #000;
    font-size: 15px;
    font-weight: 500;
}

/* Form */

.contact-form-card {
    background: #fff;
    padding: 50px;
    border-radius: 25px;
    /* box-shadow:0 20px 60px rgba(0,0,0,.08); */
}

.contact-form-card h3 {
    font-size: 28px;
    color: #000;
    font-weight: 500;
}

.contact-form-card p {
    color: #777;
    margin: 15px 0 35px;
}

.contact-form-card .form-control {
    height: 58px;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: none;
    padding: 15px 18px;
}

.contact-form-card textarea.form-control {
    height: 170px;
    resize: none;
}

.contact-form-card .form-control:focus {
    border-color: #67c469;
    box-shadow: none;
}

.contact-btn {
    background: #67c469;
    color: #fff;
    border: none;
    padding: 15px 42px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

.contact-btn:hover {
    background: #000;
    color: #fff;
}

/* Responsive */

@media(max-width:991px) {

    .contact-page-section {
        padding: 70px 0;
    }

    .contact-content {
        padding-right: 0;
    }

    .contact-content h2 {
        font-size: 36px;
    }

    .contact-form-card {
        padding: 35px;
    }

}

@media(max-width:767px) {

    .contact-content h2 {
        font-size: 25px;
    }

    .contact-form-card {
        padding: 25px;
    }

    .contact-item {
        padding: 18px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .contact-form-card h3 {
        font-size: 25px;
    }

}


/* contact page end */



/* buy now page */


.checkout-section {
    background: #f8faf8;
    padding: 50px 0;
}

.checkout-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    /* box-shadow:0 15px 40px rgba(0,0,0,.08); */
}

.checkout-card h3 {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #000;
}

.checkout-card .form-control {
    height: 56px;
    border-radius: 10px;
    border: 1px solid #ddd;
    box-shadow: none;
}

.checkout-card textarea.form-control {
    height: 130px;
    resize: none;
}

.checkout-card .form-control:focus {
    border-color: #67c469;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
    color: #555;
}

.checkout-item.total {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-top: 20px;
}

.checkout-btn {
    width: 100%;
    background: #67c469;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    transition: .3s;
}

.checkout-btn:hover {
    background: #000;
}

.form-check-input:checked {
    background: #67c469;
    border-color: #67c469;
}


@media(max-width:500px) {
    .checkout-card {
        padding: 25px;
    }
}


/* buy now page end */


/* login page */

.login-page-section {
    padding: 50px 0;
    background: #f7faf8;
}

.login-wrapper {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    /* box-shadow:0 20px 60px rgba(0,0,0,.08); */
}

.login-image {
    position: relative;
    height: 100%;
    border-radius: 25px;
}

.login-image img {
    width: 100%;
    height: 700px;
    border-radius: 25px;
    object-fit: cover;

}

.login-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 60px;
    color: #fff;
    border-radius: 25px;
}

.login-overlay span {
    color: #67c469;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

.login-overlay h2 {
    font-size: 30px;
    margin: 15px 0;
    font-weight: 500;
}

.login-overlay p {
    color: #ddd;
}

.login-card {
    padding: 70px;
}

.login-card h3 {
    font-size: 30px;
    color: #000;
    font-weight: 500;
}

.login-card p {
    color: #666;
    margin-bottom: 35px;
    font-size: 15px;
}

.login-card label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.login-card .form-control {
    height: 56px;
    border-radius: 12px;
    box-shadow: none;
}

.login-card .form-control:focus {
    border-color: #67c469;
}

.login-btn {
    width: 100%;
    background: #67c469;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

.login-btn:hover {
    background: #000;
}

.login-divider {
    text-align: center;
    margin: 35px 0;
    position: relative;
}

.login-divider:before,
.login-divider:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 42%;
    height: 1px;
    background: #ddd;
}

.login-divider:before {
    left: 0;
}

.login-divider:after {
    right: 0;
}

.google-btn {
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    padding: 14px;
    border-radius: 50px;
    font-weight: 600;
}

.register-link {
    text-align: center;
    margin-top: 30px;
}

.register-link a {
    color: #67c469;
    font-weight: 600;
    text-decoration: none;
}

@media(max-width:991px) {

    .login-card {
        padding: 40px 30px;
    }

    .login-card h3 {
        font-size: 30px;
    }

    .login-page-section {
        padding: 50px 0;
    }

}


@media (max-width: 500px) {
    .login-card h3 {
        font-size: 25px;
    }
}

/* login end */



/* register page start */


.register-page-section {
    padding: 50px 0;
    background: #f8faf8;
}

.register-wrapper {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, .08); */
}

.register-image {
    position: relative;
    height: 100%;
}

.register-image img {
    width: 100%;
    height: 820px;
    object-fit: cover;
}

.register-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .25);
    color: #fff;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.register-overlay span {
    color: #67c469;
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
}

.register-overlay h2 {
    font-size: 30px;
    font-weight: 500;
    margin: 15px 0;
}

.register-overlay p {
    color: #ddd;
    line-height: 30px;
}

.register-form {
    padding: 70px;
}

.register-form span {
    color: #67c469;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.register-form h3 {
    font-size: 30px;
    color: #000;
    margin: 10px 0;
    font-weight: 500;
}

.register-form p {
    color: #777;
    margin-bottom: 35px;
}

.register-form .form-control {
    height: 58px;
    border-radius: 12px;
    border: 1px solid #ddd;
    box-shadow: none;
    padding: 15px;
}

.register-form .form-control:focus {
    border-color: #67c469;
}

.form-check-input:checked {
    background: #67c469;
    border-color: #67c469;
}

.register-btn {
    width: 100%;
    height: 58px;
    border: none;
    border-radius: 50px;
    background: #67c469;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    transition: .3s;
}

.register-btn:hover {
    background: #000;
}

.login-link {
    margin-top: 30px;
    text-align: center;
    color: #666;
}

.login-link a {
    color: #67c469;
    font-weight: 600;
    text-decoration: none;
}

.login-link a:hover {
    color: #000;
}

/* Responsive */

@media(max-width:991px) {

    .register-page-section {
        padding: 50px 0;
    }

    .register-form {
        padding: 40px 30px;
    }

    .register-form h3 {
        font-size: 30px;
    }

}

@media(max-width:767px) {

    .register-form {
        padding: 25px;
    }

    .register-form h3 {
        font-size: 25px;
    }

}

/* register page end */




/* user profile page start  */


.user-dashboard-section {
    padding: 50px 0;
    background: #f5f8f5;
}

/* Sidebar */

.dashboard-sidebar {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.user-box {
    background: #000;
    padding: 35px 20px;
    color: #fff;
}

.user-box img {
    width: 95px;
    height: 95px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #67c469;
    margin-bottom: 15px;
}

.user-box h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px;
}

.user-box span {
    color: #67c469;
    font-size: 14px;
}

.dashboard-menu {
    padding: 25px;
    margin: 0;
    list-style: none;
}

.dashboard-menu li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 18px;
    border-radius: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: .35s;
    font-weight: 500;
    color: #444;
}

.dashboard-menu li i {
    width: 22px;
    font-size: 18px;
    color: #67c469;
}

.dashboard-menu li:hover,
.dashboard-menu li.active {
    background: #67c469;
    color: #fff;
}

.dashboard-menu li:hover i,
.dashboard-menu li.active i {
    color: #fff;
}

/* Banner */

.dashboard-banner {
    background: linear-gradient(135deg, #000, #1d1d1d);
    border-radius: 20px;
    padding: 45px;
    color: #fff;
    overflow: hidden;
}

.dashboard-banner span {
    color: #67c469;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
}

.dashboard-banner h2 {
    font-size: 30px;
    font-weight: 500;
    margin: 15px 0;
}

.dashboard-banner p {
    color: #d8d8d8;
    line-height: 30px;
    margin: 0;
    font-size: 15px;
}

.dashboard-banner img {
    max-height: 220px;
}

/* Dashboard Cards */

.dashboard-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    text-align: center;
    /* box-shadow: 0 8px 25px rgba(0, 0, 0, .06); */
    transition: .35s;
    height: 100%;
}

.dashboard-card:hover {
    transform: translateY(-8px);
}

.dashboard-card i {
    width: 70px;
    height: 70px;
    background: #67c469;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    font-size: 26px;
    margin-bottom: 20px;
}

.dashboard-card h3 {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #000;
}

.dashboard-card span {
    color: #777;
}

/* Orders */

.orders-section {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
}

.orders-section h3 {
    font-size: 25px;
    font-weight: 500;
}

.view-all {
    color: #67c469;
    text-decoration: none;
    font-weight: 400;
}

.order-card {
    padding: 25px;
    border: 1px solid #ececec;
    border-radius: 18px;
    margin-bottom: 20px;
    transition: .3s;
}

.order-card:hover {
    border-color: #67c469;
    transform: translateY(-5px);
}

.order-card img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 15px;
}

.order-card h5 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 500;
}

.order-card p,
.order-card small {
    color: #777;
}

.status {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.delivered {
    background: #67c469;
}

.shipping {
    background: #ff9800;
}

.processing {
    background: #2196f3;
}

.cancelled {
    background: #f44336;
}

/* Button */

.order-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    text-decoration: none;
    padding: 8px 11px;
    border-radius: 40px;
    transition: .3s;
    font-size: 14px;
    font-weight: 400;
}

.order-btn:hover {
    background: #67c469;
    color: #fff;
}

/* Table */

.table {
    margin: 0;
}

.table td,
.table th {
    vertical-align: middle;
}

/* Responsive */

@media(max-width:991px) {

    .dashboard-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 30px;
    }

    .dashboard-banner {
        padding: 30px;
        text-align: center;
    }

    .dashboard-banner img {
        margin-top: 30px;
    }


    .status {
        margin-bottom: 10px;
    }

    /* .dashboard-banner {
        text-align: center !important;
    } */

    .dashboard-banner h2 {
        font-size: 30px;
    }

    .orders-section {
        padding: 25px;
    }

    .order-card {
        text-align: center;
    }

    .order-card img {
        margin-bottom: 20px;
    }

    .order-btn {
        /* width: 100%; */
        margin-top: 15px;
    }

}

@media(max-width:767px) {

    .user-dashboard-section {
        padding: 50px 0;
    }

    .user-box {
        padding: 25px;
    }

    .dashboard-menu {
        padding: 15px;
    }

    .dashboard-menu li {
        padding: 14px;
        font-size: 15px;
    }

    .dashboard-banner {
        padding: 25px;
    }

    .dashboard-banner h2 {
        font-size: 24px;
    }

    .dashboard-card {
        padding: 20px;
    }

    .dashboard-card h3 {
        font-size: 28px;
    }

    .orders-section {
        padding: 20px;
    }

    .orders-section h3 {
        font-size: 22px;
    }

    .order-card img {
        width: 90px;
        height: 90px;
    }

}


@media(max-width:500px) {

    .dashboard-card i {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }

    .dashboard-card h3 {
        font-size: 20px;
    }

    .dashboard-card span {
        font-size: 13px;
    }


    .orders-section h3 {
        font-size: 20px;
    }

}


/* user dashboard end */


/* mission */


.mission-vision-section {
    padding: 50px 0;
    background: #f8fbf8;
}

.mission-title span {
    color: #67c469;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.mission-title h2 {
    font-size: 35px;
    font-weight: 500;
    color: #000;
    margin: 15px 0;
    font-family: 'Playfair Display', serif;
}

.mission-title p {
    color: #666;
    line-height: 30px;
}

.mission-card,
.vision-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 25px;
    /* box-shadow: 0 20px 45px rgba(0, 0, 0, .08); */
    transition: .4s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.vision-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #67c469;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
}

.mission-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #67c469;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    margin-bottom: 30px;
}

.mission-card h3,
.vision-card h3 {
    font-size: 25px;
    font-weight: 500;
    color: #000;
    margin-bottom: 20px;
}

.mission-card p,
.vision-card p {
    color: #666;
    line-height: 30px;
    font-size: 15px;
}

/* Responsive */

@media(max-width:991px) {

    .mission-vision-section {
        padding: 80px 0;
    }

    .mission-title h2 {
        font-size: 36px;
    }

}

@media(max-width:767px) {

    .mission-vision-section {
        padding: 60px 0;
    }

    .mission-title h2 {
        font-size: 28px;
    }

    .mission-card,
    .vision-card {
        padding: 35px 25px;
    }

    .mission-icon {
        width: 65px;
        height: 65px;
        font-size: 24px;
    }

    .mission-card h3,
    .vision-card h3 {
        font-size: 24px;
    }

}


/* mision ned */



/* privacy policy */


.privacy-policy-section{
    padding:100px 0;
    background:#f8faf8;
}

.privacy-policy-box{
    background:#ffffff;
    padding:60px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.privacy-policy-title{
    margin-bottom:50px;
}

.privacy-policy-title span{
    display:inline-block;
    color:#67c469;
    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.privacy-policy-title h2{
    font-size:42px;
    font-weight:700;
    color:#000;
    margin-bottom:20px;
}

.privacy-policy-title p{
    color:#666;
    line-height:30px;
}

.privacy-item{
    padding:25px 0;
    border-bottom:1px solid #ececec;
}

.privacy-item:last-child{
    border-bottom:none;
}

.privacy-item h4{
    font-size:24px;
    font-weight:600;
    color:#000;
    margin-bottom:15px;
}

.privacy-item h4 i{
    color:#67c469;
    margin-right:12px;
}

.privacy-item p{
    color:#666;
    line-height:30px;
    margin:0;
}

/* Responsive */

@media(max-width:991px){

.privacy-policy-box{
    padding:40px;
}

.privacy-policy-title h2{
    font-size:34px;
}

}

@media(max-width:767px){

.privacy-policy-section{
    padding:70px 0;
}

.privacy-policy-box{
    padding:25px;
}

.privacy-policy-title h2{
    font-size:28px;
}

.privacy-item h4{
    font-size:20px;
}

}


/* privacy end */


/* terms and conditions */



.terms-condition-section{
    padding:100px 0;
    background:#f8faf8;
}

.terms-condition-box{
    background:#fff;
    padding:60px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.terms-title{
    margin-bottom:50px;
}

.terms-title span{
    display:inline-block;
    color:#67c469;
    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.terms-title h2{
    font-size:42px;
    font-weight:700;
    color:#000;
    margin-bottom:20px;
}

.terms-title p{
    color:#666;
    line-height:30px;
}

.terms-item{
    padding:25px 0;
    border-bottom:1px solid #ececec;
}

.terms-item:last-child{
    border-bottom:none;
}

.terms-item h4{
    font-size:24px;
    font-weight:600;
    margin-bottom:15px;
    color:#000;
}

.terms-item h4 i{
    color:#67c469;
    margin-right:12px;
}

.terms-item p{
    color:#666;
    line-height:30px;
    margin:0;
}

/* Responsive */

@media(max-width:991px){

.terms-condition-box{
    padding:40px;
}

.terms-title h2{
    font-size:34px;
}

}

@media(max-width:767px){

.terms-condition-section{
    padding:70px 0;
}

.terms-condition-box{
    padding:25px;
}

.terms-title h2{
    font-size:28px;
}

.terms-item h4{
    font-size:20px;
}

}