:root {
    --base-color: #F4C025;
    --secondary-color: #F8F8F5;
    --third-color: #F4F0E7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    /* font-family: 'Montserrat', sans-serif; */
    font-family: "Hind Siliguri";
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* login css */

.login-section {
    min-height: 100vh;
}

.login-left {
    background: #f8f9fa;
    display: flex;
    align-items: center;
}

.login-form {
    max-width: 420px;
    width: 100%;
}

.login-img {
    background: url('../images/bg_1.jpg') center/cover no-repeat;
    min-height: 100vh;
}

.btn-login {
    background: #f59e0b;
    border: none;
    color: #fff;
    padding: 12px;
}

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

/* login css end */

/* header */
#header {
    background: var(--secondary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 0;

}

#header .navbar {
    padding: 0 !important;
}

#header .navbar-brand,
#header .nav-link {
    color: white;
}

.nav-item.custom-dropdown {
    position: relative;
}

.nav-item.custom-dropdown .dropdown-menu {
    position: absolute;
    left: 0;
    top: 100%;
    display: none;
    min-width: 200px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.nav-item.custom-dropdown:hover .dropdown-menu,
.nav-item.custom-dropdown:hover .user-dropdown {
    display: block;
}

.nav-item.custom-dropdown .user-dropdown {
    position: absolute;
    right: 0 !important;
    top: 100%;
    display: none;
    min-width: 200px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.nav-item.custom-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu .dropdown-header,
.user-dropdown .dropdown-header {
    padding: 10px;
    font-weight: bold;
    background-color: #f8f9fa;
}

.dropdown-menu .dropdown-item,
.user-dropdown .dropdown-item {
    padding: 8px 15px;
    display: block;
    color: #212529;
    text-decoration: none;
}

.dropdown-menu .dropdown-item:hover,
.user-dropdown .dropdown-item:hover {
    background-color: #f1f1f1;
}

.navbar-nav .nav-link:hover {
    color: #F4C025 !important;
}

.navbar-nav .nav-link.active {
    color: #F4C025 !important;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #F4C025;
    color: #fff;
}

/* header End */


/* Search bar styling */
.search-pill {
    border-radius: 50px;
    border: 1px solid #ddd;
    height: 45px;
    max-width: 300px;
    overflow: hidden;
}

.search-pill .form-control {
    height: 100%;
    border-radius: 0;
    box-shadow: none;
    background-color: var(--third-color);
}

.search-pill .form-control:focus {
    box-shadow: none;
}

.search-pill .input-group-text {
    border-radius: 0;
    padding-left: 15px;
    padding-right: 10px;
    height: 100%;
    background-color: var(--third-color) !important;
}

.search_item_box {
    position: absolute;
    top: 55px;
    width: 300px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    z-index: 9999;
    max-height: 350px;
    overflow-y: auto;
}

.product_item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-bottom: 1px solid #f1f1f1;
    transition: background 0.2s ease;
}

.product_item:hover {
    background: #f8f8f8;
}

.product_item:last-child {
    border-bottom: none;
}

.product_item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
}

.product_item div {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.search_item_box a {
    text-decoration: none;
}

/* search css end */


/* header icon */

.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--third-color);
    text-align: center;
}

/* header icon css end*/

/* slider start */
#slider {
    background: #fdfcf7;
}

.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-image-wrapper {
    width: 100%;
    height: 500px;
    margin: auto;
    overflow: hidden;
    border-radius: 30px;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (min-width: 1400px) {
    .slider-image-wrapper {
        height: 700px;
    }
}

.slider-content {
    position: absolute;
    left: 6%;
    max-width: 420px;
}

.slider-subtitle {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 12px;
    background-color: var(--base-color);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 600;
}

.slider-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 20px;
}

.slider-description {
    color: #fff;
    text-align: justify;
}


.slider-buttons {
    display: flex;
    gap: 15px;
}

.btn-honey {
    background: var(--base-color);
    color: black;
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 600;
}

.btn-honey:hover {
    background: #e0a800;
    color: black;
}

.btn-outline-story {
    border: 2px solid #ddd;
    color: #ddd;
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 600;
}

.btn-outline-story:hover {
    border-color: #ddd;
    color: #ddd;
}

/* RESPONSIVE */

@media (max-width: 768px) {

    .slider-title {
        font-size: 24px;
        font-weight: 700;
        line-height: 1.2;
        color: #fff;
        margin-bottom: 20px;
    }

    .slider-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: start;
    }

    .slider-image-wrapper {
        width: 100%;
        height: 400px;
        margin: auto;
        overflow: hidden;
        border-radius: 30px;
    }

    .slider-description {
        color: #fff;
        text-align: left;
    }
}

/* slider end */


/* categories start */
#categories {
    background: #f6f2e8;
}

.view-all {
    text-decoration: none;
    font-weight: 600;
    color: #f4b400;
}

.view-all:hover {
    text-decoration: underline;
}

.category-card {
    background: #fff;
    border-radius: 20px;
    padding: 10px;
    text-align: center;
    transition: 0.3s ease;
    height: 97%;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {

    .view-all {
        white-space: nowrap;
    }
}

/* categories end */


/* product start */

.product-card {
    background: #fff;
    border: 1px solid #e5dcdc;
    border-radius: 14px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all .25s ease;
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-body {
    padding: 12px;
}

.product-img {
    width: 100%;
    height: 150px;
    margin: 0;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}

.rating-pill {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ffffff;
    border-radius: 999px;
    padding: 3px 7px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #1f2937;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.rating-pill i {
    font-size: 11px;
    color: var(--base-color);
}

.rating-pill i,
.rating-pill svg {
    color: var(--base-color) !important;
    fill: var(--base-color) !important;
}

.product-units {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 4px 0 8px;
}

.product-unit-pill {
    padding: 2px 10px;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
    color: #6b7280;
    background: #f3f4f6;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.product-unit-pill:hover {
    background: #fde68a;
    color: #92400e;
}

.product-unit-pill.active {
    background: var(--base-color);
    color: #fff;
}

.product-name {
    white-space: nowrap;
    position: relative;
    top: 13px;
}

.cart-btn {
    width: 30px;
    height: 30px;
    background: var(--base-color);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cart-btn:hover {
    background: #f59e0b;
    transform: scale(1.1);
}

.cart-btn i {
    pointer-events: none;
}

.cart-badge {
    position: absolute;
    top: 12px;
    right: 87px;
    background: #f59e0b;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    border-radius: 50%;
    text-align: center;
    padding: 0 4px;
}

@media (max-width: 768px) {
    .cart-badge {
        position: absolute;
        top: 12px;
        right: 78px;
        background: #f59e0b;
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        min-width: 18px;
        height: 18px;
        line-height: 18px;
        border-radius: 50%;
        text-align: center;
        padding: 0 4px;
    }
}

/* product end */


/* gallery start */
#gallery {
    background-color: #F8F8F5;
}

.gallery-card {
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
}

.gallery-card img {
    transition: transform 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.02);
}

.gallery-slider .slick-slide {
    padding: 0 4px;
}

.gallery-slider {
    margin: 0 -8px;
}

/* gallery end */


/* review card start */

.review-card {
    background-color: #F8F8F5;
    max-width: 400px;
}

.review-slider .slick-slide {
    padding: 0 4px;
}

.review-slider {
    margin: 0 -8px;
}

/* review card end */


/* Trust Section start*/
.trust-section {
    background: #1C180D;
}

.trust-left {
    background: #1C180D;
}

.trust-right {
    background: #282419;
    border: 1px solid rgba(255, 193, 7, 0.15);
}

.trust-point {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #fff;
    font-weight: 500;
}

.trust-point i {
    width: 38px;
    height: 38px;
    border: 2px solid #ffc107;
    border-radius: 50%;
    color: #ffc107;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.trust-point svg {
    width: 20px;
    height: 20px;
    border: 2px solid #ffc107;
    border-radius: 50%;
    color: #ffc107;
    background: #473911;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.trust-point .text {
    text-align: left;
}


.cert-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid #ffc107;
    color: #ffc107;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

@media (max-width: 768px) {

    .trust-left,
    .trust-right {
        text-align: center;
    }

    .trust-point {
        justify-content: center;
    }

    .trust-right .d-flex {
        justify-content: center;
    }
}

/* Trust Section end*/


/* article start */

.fixed-card-img {
    height: 220px;
    object-fit: cover;
    width: 100%;
    border-radius: 1rem;
}

/* article end */


/* footer css start */
#footer {
    background: #F8F8F5;
}

.footer-links a:hover {
    color: #F4C025 !important;
}

.footer-newsletter button {
    position: relative;
    left: 81%;
}

.footer-explore{
    position: relative;
    left: 65px;
}

.footer-explore{
    position: relative;
    left: 35px;
}

@media (max-width: 768px) {

    .footer-newsletter button {
        position: relative;
        left: 76%;
    }

    .footer-explore{
        position: relative;
        left: 0px;
    }

    .footer-explore{
        position: relative;
        left: 0px;
    }
}

@media (min-width: 1400px) {

    #footer .form-control {
        width: 94%;
    }
}

/* footer css end */


/* blog page start */

#blog {
    padding: 20px 0 40px;
    background: #FAF8F3;
}

.blog-small {
    font-size: 14px;
    letter-spacing: 2px;
    color: #ffc107;
    font-weight: 600;
}

.blog-title {
    font-size: 48px;
    font-weight: 800;
}

.blog-sub {
    color: #6c757d;
    max-width: 600px;
}

.featured-card {
    position: relative;
    height: 380px;
    border-radius: 30px;
    overflow: hidden;
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    padding: 40px;
    color: #fff;
}

.badge-featured {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #f4b400;
    color: #000;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.blog-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    position: relative;
}

.blog-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    border-radius: 30px;
}

.blog-card .card-body {
    padding: 20px;
}

.meta {
    font-size: 13px;
    color: #999;
}

.blog-card h5 {
    font-weight: 700;
    margin: 10px 0;
}

.desc {
    font-size: 14px;
    color: #666;
}

.read-more {
    color: #f4b400;
    font-weight: 600;
    text-decoration: none;
}

.badge-category {
    position: absolute;
    margin: 15px;
    background: #eee;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.sidebar-card {
    background: #F4F0E7;
    padding: 25px;
    border-radius: 25px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.sidebar-categories {
    background: #fff;
    padding: 25px;
    border-radius: 25px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.subscribe-card {
    background: #FBF5E2;
    padding: 25px;
    border-radius: 25px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.subscribe-icon i,
.subscribe-icon svg {
    color: #f4b400;
    font-size: 30px;
}

.recent-posts {
    background: #fff;
    padding: 25px;
    border-radius: 25px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.recent-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.recent-item:last-child {
    margin-bottom: 0;
}

.recent-item img {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    object-fit: cover;
}

.recent-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.recent-date {
    font-size: 12px;
    color: #999;
}

.search-box {
    display: flex;
    background: #f6f3ee;
    border-radius: 50px;
    overflow: hidden;
}

.search-box input {
    border: none;
    padding: 10px 15px;
    flex: 1;
}

.search-box button {
    border: none;
    background: #f4b400;
    padding: 0 20px;
}

.category-list {
    list-style: none;
    padding: 0;
}

.sidebar-categories h6 {
    padding: 10px 0;
    border-bottom: 1px solid lightgray;
}

.category-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
}

.subscribe-card input {
    width: 100%;
    padding: 10px;
    border-radius: 50px;
    border: none;
    margin: 10px 0;
}

.recent-post-title {
    padding: 10px 0;
    border-bottom: 1px solid lightgray;
}

.btn-subscribe {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 50px;
    background: #f4b400;
    font-weight: 600;
}

.page-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    margin: 0 5px;
    background: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-btn.active {
    background: #f4b400;
}

/* blog page end */

/* blog details page start */

.custom-breadcrumb {
    --bs-breadcrumb-divider: '>';
    font-size: 14px;
}

.custom-breadcrumb .breadcrumb-item a {
    text-decoration: none;
    color: #B9AC8C;
}

.custom-breadcrumb .breadcrumb-item a:hover {
    color: #f4b400;
}

.custom-breadcrumb .breadcrumb-item.active {
    color: #000;
    font-weight: 500;
}

.blog-tags {
    display: flex;
    gap: 14px;
}

.tag-pill {
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}


.tag-education {
    background: #F7ECCB;
}

.tag-health {
    background: #E8E4D8;
}

.tag-pill:hover {
    opacity: 0.85;
}

.article-title {
    font-size: 35px;
}

.blog-meta-icons .meta-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;
    color: #000;

    background-color: #E8E4D8;
    border-radius: 50%;
    border: 1px solid #E8E4D8;

    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
}

.custom-alert {
    background-color: #F7F2E0;
    padding: 20px 24px;
    border-radius: 14px;
    color: #555;
    border-left: 3px solid #F4B400;
}

.btn-facebook {
    background-color: #1877F2;
    border: none;
}

.btn-facebook:hover {
    background-color: #145dbf;
}

.btn-whatsapp {
    background-color: #25D366;
    border: none;
}

.btn-whatsapp:hover {
    background-color: #1ebe57;
}

.recommend-card {
    padding: 25px;
    border-radius: 25px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.tag-card {
    padding: 25px;
    border-radius: 25px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

/* blog details page end */

/* product details page start */

.main-product-img {
    max-width: 480px;
}

.main-product-img .product-img {
    width: 100%;
    height: 420px;
    object-fit: contain;
    border-radius: 35px;
}

.product-title {
    font-size: 42px;
    letter-spacing: -0.5px;
}

.premium-badge {
    background: #F7ECCA;
    color: gray;
    font-size: 11px;
    padding: 2px 14px;
    border-radius: 30px;
    font-weight: 600;
}

.new-badge {
    top: 20px;
    right: 20px;
    background: #fff;
    color: #000;
    font-size: 11px;
    padding: 6px 14px;
    border-radius: 30px;
    font-weight: 600;
}

.price .current-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--base-color);
    margin-right: 10px;
}

.price .old-price {
    text-decoration: line-through;
    color: #d4a017;
    font-size: 16px;
}

.weight-btn {
    border: 1px solid #ddd;
    background: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.weight-btn.active {
    background: #f4b400;
    border-color: #f4b400;
    color: #fff;
}

.product-details .add-cart-btn {
    border: 2px solid #f4b400;
    border-radius: 40px;
    font-weight: 600;
    background: transparent;
    padding: 10px 40px;
}

.product-details .buy-now-btn {
    background: #f4b400;
    color: #fff;
    border-radius: 40px;
    font-weight: 600;
    padding: 10px 53px;
}

.feature-text {
    font-size: 11px;
    margin-top: 8px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #555;
}

.thumb-slider .slick-slide {
    padding: 0 8px;
}

.thumb-img {
    width: 78%;
    height: 90px;
    object-fit: contain;
    border-radius: 15px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s ease;
}

.thumb-img.active {
    border-color: #f4b400;
    box-shadow: 0 0 10px rgba(244, 180, 0, 0.5);
}

.thumb-img:hover {
    border-color: #f4b400;
}

.thumb-video {
    width: 90%;
    height: 90px;
    border-radius: 15px;
    background: #f3f3f3;
    cursor: pointer;
}

.nav-tabs .nav-link {
    border: none;
    color: #999;
    font-weight: 600;
}

.nav-tabs .nav-link.active {
    color: #000;
    border-bottom: 3px solid #f4b400;
}

.weight-guide {
    font-size: 12px;
    color: #d4a017;
    text-decoration: none;
}

.product-features {
    position: relative;
    right: 10%;
}

.thumb-slider .slick-slide {
    padding: 0 8px;
}

@media (max-width: 768px) {

    .product-features {
        position: relative;
        right: 0%;
    }

    .product-details .add-cart-btn {
        padding: 10px 15px;
        font-size: 14px;
    }

    .product-details .buy-now-btn {
        padding: 10px 27px;
        font-size: 14px;
    }
}

/* product details page end */


/* offcanvas css start */
.offcanvas-right {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100%;
    background: #fff;
    z-index: 99999;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
}

.offcanvas-right.active {
    right: 0;
}

.offcanvas-header {
    padding: 15px;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.offcanvas-body {
    padding: 15px;
    font-size: small;
}

.close-offcanvas {
    background: none;
    border: none;
    font-size: 24px;
    float: right;
    cursor: pointer;
}

.offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1049;
}

.offcanvas-overlay.active {
    display: block;
}

.cart-item-card {
    display: flex;
    /* gap: 32%; */
    padding: 10px;
    border-bottom: 1px solid gray;
    align-items: center;
}

.cart-item-card img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 6px;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 1;
}

.cart-item-name {
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    width: 100%;
}

.cart-item-unit {
    font-size: 14px;
    position: relative;
    left: 42%;
}

.item-price {
    margin-top: 4px;
    font-weight: bold;
    font-size: 14px;
}

.qty-box {
    display: flex;
    gap: 6px;
    align-items: center;
}

.qty-btn {
    width: 26px;
    height: 26px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    font-weight: bold;
    border-radius: 4px;
}

.qty-input {
    width: 40px;
    text-align: center;
    border: 1px solid #ddd;
    height: 26px;
    border-radius: 4px;
}

.unit-remove-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.remove-cart-item {
    background-color: #e74c3c;
    color: #fff;
    border: none;
    padding: 3px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 22px;
    align-self: flex-start;
}

.cart-subtotal {
    font-weight: bold;
    margin-top: 15px;
    font-size: 0.9rem;
}

.checkout-btn {
    margin-top: 10px;
}

@media only screen and (max-width:768px) {
    .offcanvas-right {
        width: 100%;
        right: -100%;
        transition: right 0.3s ease;
    }
}

/* offcanvas css start */


/* checkout modal overlay start */

.checkout-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);

    z-index: 1050;
}

#checkoutModal {
    z-index: 1100;
}

.checkout-input {
    border-radius: 50px;
}

@media (max-width:768px) {
    .checkout-input {
        border-radius: 10px;
    }
}

/* checkout modal overlay end */

/* about us start */

.about-page .main-title {
    font-size: 30px;
}


.about-page .sc-center-position figure img{
    width:100%;
    height:500px;
    object-fit:cover;
}

.why-choose-us-block h6{
    font-size:16px;
}

.why-choose-us-block p{
    line-height:1.6;
}

/* about us end */

/* contact us start */

.contact .card-body{
    background-color: #fff;
    border-radius: 4px;
    margin-bottom: 20px;
    border-top: 2px solid #F4C025;
}

/* contact us end */