:root {
    --primary-green: #2e8b57; /* Matching your Green Seba color */
    --dark-green: #1a5c36;
    --light-green: #e8f5e9;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--light-gray);
}

/* Header Styles */
.top-bar {
    background-color: #f5f5f5;
    font-size: 14px;
    padding: 8px 0;
}

.navbar {
    padding: 15px 0;
    background: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 24px;
    display: flex;
    align-items: center;
}

.search-box {
    width: 100%;
    max-width: 500px;
    border-radius: 4px;
    overflow: hidden;
}

.search-input {
    border: 1px solid #ddd;
    border-right: none;
    padding: 10px 15px;
}

.search-btn {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 0 20px;
    font-weight: 500;
}

.nav-icons {
    display: flex;
    gap: 15px;
}

.nav-icon {
    color: var(--dark-gray);
    font-size: 22px;
    position: relative;
    transition: color 0.3s;
    margin-left: 14px;
}
.nav-icon i {
    color: #26a74f;
}

.nav-icon:hover {
    color: var(--primary-green);
}

.nav-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navigation Hover Effects */
.navbar-nav .nav-link {
    position: relative;
    padding: 8px 15px;
    transition: color 0.3s;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 15px;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    transition: width 0.3s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 30px);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-green);
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    border: none;
    background: none;
    font-size: 24px;
    color: var(--dark-gray);
}

.offcanvas {
    width: 300px !important;
}

.offcanvas-header {
    background: var(--primary-green);
    color: white;
}

.mobile-search {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.mobile-nav-item {
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    transition: all 0.3s;
}

.mobile-nav-item:hover {
    background-color: var(--light-green);
    color: var(--primary-green);
    padding-left: 25px;
}

.mobile-nav-item i {
    margin-right: 10px;
    color: var(--primary-green);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("https://images.unsplash.com/photo-1605000797499-95a51c5269ae?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80");
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Category Section */
.category-section {
    padding: 40px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--dark-green);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-green);
}

.category-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.category-img {
    height: 200px;
    overflow: hidden;
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.category-card:hover .category-img img {
    transform: scale(1.1);
}

.category-body {
    padding: 20px;
    background: white;
}

.category-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.category-link {
    color: var(--primary-green);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.category-link i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.category-link:hover i {
    transform: translateX(5px);
}

/* Featured Products */
.product-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: white;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.product-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-green);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.product-body {
    padding: 20px;
}

.product-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.product-price {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 1.2rem;
}

.product-old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    margin-left: 5px;
}

.product-rating {
    color: #ffc107;
    margin: 10px 0;
}

/* Footer Styles */
footer {
    background: var(--dark-gray);
    color: white;
    padding: 40px 0 20px;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-social a {
    color: white;
    font-size: 20px;
    margin-right: 15px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    border-top: 1px solid #495057;
    padding-top: 20px;
    margin-top: 30px;
}

@media (max-width: 991px) {
    .search-box {
        margin: 15px 0;
    }

    .nav-icons {
        margin-left: auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .top-bar {
        text-align: center;
        padding: 8px 15px;
    }

    .navbar-brand {
        font-size: 20px;
    }

    .footer-section {
        margin-bottom: 30px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

/* Dropdown button */
.dropdown-toggle {
    padding: 10px 20px;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
}

/* Category list */
.category-list {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    background-color: white;
    border: 1px solid #ddd;
    width: 200px;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.category-item:last-child {
    border-bottom: none;
}

.category-item a {
    text-decoration: none;
    color: #333;
}

.dropdown {
    position: relative;
    display: inline-block;
}

#categoryButton {
    /* padding: 8px 16px; */
    color: white;
    border: none;
    cursor: pointer;
}

.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.category-item {
    position: relative;
}

.category-item > a {
    text-decoration: none;
    display: block;
    padding: 5px;
    color: #333;
}

.category-item:hover > a {
    background-color: #26a74f;
    color: white;
}

.category-item:hover > .subcategory-list {
    display: block;
}

.dropdown:hover .category-list {
    display: block;
}
.product-image:hover {
    opacity: 0.8;
    transition: 0.5s;
}

.category-list {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    position: absolute;
    z-index: 999;
    width: 200px;
}

.category-item {
    position: relative;
}

.category-item > a {
    display: block;
    padding: 6px 10px;
    text-decoration: none;
    color: #26a74f;
    background: #fff;
    border-bottom: 1px solid #26a74f;
}

.subcategory-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    left: 100%;
    display: none;
    background-color: #f0f0f0;
    border: 1px solid #26a74f;
    width: 200px;
}

.subcategory-list li {
    padding: 0;
    width: 100%;
}

.subcategory-list li a {
    display: block;
    color: #26a74f;
    padding: 6px 12px;
    background: #fff;
    border-bottom: 1px solid #26a74f;
    width: 100%;
    text-decoration: none;
    transition: all 0.4s;
}

.subcategory-list li a:hover {
    background: #26a74f;
    color: #fff;
}

.category-item:hover > .subcategory-list {
    display: block;
}

#categoryButton {
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
}

.dropdown {
    position: relative;
}

.link-dark:hover {
    color: #fcbf09 !important;
    opacity: 0.8;
    transition: 0.5s;
}

.order-button {
    font-weight: 600;
    text-transform: uppercase;
}

.order-button:hover {
    font-weight: 600;
    text-transform: uppercase;
    background: #e4ad09 !important;
}

.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.max-lines {
    max-width: 100%;
    display: block; /* or inline-block */
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: break-word;
    overflow: hidden;
    max-height: 4.5em;
    line-height: 1.5em;
}

.btn_primary {
    background-color: #26a74f;
    border: 1px solid #26a74f;
}

.btn_primary:hover {
    background-color: #2d8f4c;
    border: 1px solid #2d8f4c;
    color: #fff;
}

.bg_primary {
    /* background-color: green; */
    background-color: #26a74f;
}
.card_btn_bg {
    background-color: #26a74f !important;
}

.menu_link {
    text-decoration: none;
    color: white;
    padding: 10px 15px !important;
    margin: 0px !important;
    transition: all linear 0.45s;
}

.menu_link:hover {
    color: #ffffff;
    background: #16652f;
    padding: 10px 15px;
}
.menu_nav .menu_link:hover {
    color: #ffffff !important;
    background: #16652f;
    padding: 10px 15px;
}

.btn-ecomm {
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 25px;
    transition: all linear 0.3s;
}
.btn-ecomm:hover {
    background: #26a74f !important;
    color: #fff !important;
    border-color: #28a745 !important;
}

.category_row a {
    text-decoration: none;
    color: #fff;
    padding: 10px 15px;
    transition: all linear 0.4s;
}
.category_row a:hover {
    background-color: #124b24;
    color: white;
}

.banner-container {
    position: relative;
    height: 300px;
    width: 100%;
    overflow: hidden;
}

.banner-slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 80%;
    max-width: 800px;
}

.slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.banner-btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: #ff6b6b;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.banner-btn:hover {
    background-color: #ff5252;
    transform: scale(1.05);
}

.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #26a74f;
    color: white;
    border: none;
    /* font-size: 2rem; */
    padding: 7px 11px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    transition: all 0.4s;
}

.prev-btn {
    left: 20px;
}

.next-btn:hover {
    background-color: #ffffff;
    color: #26a74f;
}
.prev-btn:hover {
    background-color: #ffffff;
    color: #26a74f;
}

.next-btn {
    right: 20px;
}

@media (max-width: 768px) {
    .banner-container {
        position: relative;
        height: 150px;
        width: 100%;
        overflow: hidden;
    }
    .slide-content h2 {
        font-size: 1.8rem;
    }

    .slide-content p {
        font-size: 1rem;
    }
}

.separator {
    display: flex;
    align-items: center;
}

.separator .line {
    height: 1px;
    flex: 1;
    background-color: #a5a6a7;
}

.separator .separator-title {
    padding: 0 1rem;
    text-transform: uppercase;
}
.separator .separator-title a {
    color: #26a74f;
    text-decoration: none;
    font-weight: 600;
    font-size: 24px;
}

.product_name_style h6 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
    margin-left: 5px;
}
.product_name_style h6 a {
    color: #000;
    text-decoration: none;
}
.product_name_style h6 a:hover {
    color: #26a74f !important;
}
.price_style {
    font-size: 16px;
    font-weight: 600;
    margin-left: 5px;
    color: #000;
}

.order_now_style a {
    color: #fff !important;
    font-weight: 600;
    text-decoration: none;
    background: #26a74f !important;
    color: #000 !important;
    padding: 7px 10px;
    width: 100%;
    font-size: 14px;
    border-radius: 0px;
    text-align: center;
    text-transform: uppercase;
    transition: all linear 0.3s;
}
.order_now_style a:hover {
    background: #26a74f !important;
    color: #fff !important;
    text-decoration: none;
}

.custom-prev,
.custom-next {
    background-color: #198754; /* green */
    color: white;
    font-size: 16px;
    padding: 7px 10px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.4s ease;
}

.custom-prev:hover,
.custom-next:hover {
    background-color: #fff;
    color: #198754;
}

.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 10px;
}

.owl-nav button {
    background: none;
    border: none;
    outline: none;
}

:root {
    --primary-color: #26a74f;
}

.product-container {
    /* background: white; */
    border-radius: 10px;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); */
    overflow: hidden;
}

.main-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fefefe;
}

.main-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.main-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    cursor: zoom-in;
    transition: transform 0.3s;
}

.main-image.zoomed {
    transform: scale(2);
    cursor: zoom-out;
}

.zoom-lens {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 2px solid var(--primary-color);
    background: rgba(255, 255, 255, 0);
    cursor: none;
    display: none;
    pointer-events: none;
    z-index: 100;
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #ff4757;
    color: white;
    padding: 3px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 10;
}

.thumbnails-container {
    display: flex;
    gap: 10px;
    padding: 15px;
    overflow-x: auto;
    background: #f8f9fa;
    border-top: 1px solid #eee;
    scroll-behavior: smooth;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary-color);
}

.thumbnail.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}
.product-info {
    padding: 20px;
    height: 400px;
    background: #ffffff;
    padding-right: 0px !important;
}

@media (max-width: 768px) {
    .main-image-wrapper {
        height: 300px;
    }
}

.product-info .product_name {
    font-size: 26px !important;
}
.product-info .product_warranty {
    font-size: 20px !important;
}
.product-info .product_category {
    font-size: 15px !important;
    font-weight: 600;
}
.product-info .product_category a {
    text-decoration: none;
    color: #0d6efd;
    transition: all 0.3s;
}
.product-info .product_category a:hover {
    text-decoration: none;
    color: #26a74f;
}
.product_all_details {
    padding-right: 0px !important;
}
.product_all_details2 {
    padding-left: 0px !important;
}
.product_details {
    background: #f2f2f2;
    height: 400px;
    margin: 0px;
    border-radius: 0px;
    padding: 20px;
}
.product_made_in {
    font-size: 20px;
    font-weight: 500;
}
.add_to_card_details {
    margin-left: 30px;
}
.add_to_card_style {
    font-weight: 600;
    width: 100%;
    text-transform: uppercase;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 0px;
    transition: all linear 0.3s;
}

.add_to_card_style:hover {
    background: #26a74f !important;
    color: #fff !important;
    border-color: #28a745 !important;
}

.qty_btn_design {
    width: 170px;
}

.qty_btn_design input {
    border: 1px solid #26a74f;
}
.qty_btn_design .qty_btn_design_icon {
    border: 1px solid #26a74f;
    transition: all 0.4s;
}
.qty_btn_design .qty_btn_design_icon:hover {
    background: #26a74f;
    color: #fff;
}
.cart_close_btn {
    border: 1px solid #26a74f;
    background: #26a74f;
    color: #ff0707;
    font-size: 16px;
    transition: all 0.4s;
}
.cart_close_btn:hover {
    background: #ff0707;
    border: 1px solid #ff0707;
    color: #fff;
}
.shipping_address {
    background: #fff;
    /* border: 1px solid black; */
    margin: 10px;
    padding: 0px 10px;
    box-shadow: #000;
}
.order_summary {
    margin: 10px;
    padding: 0px 20px;
    background: #fff;
    box-shadow: #000;
}

/* Checkout Cart Styles */
.checkout-cart-item {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    position: relative;
    align-items: center;
}

.checkout-cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 4px;
}

.checkout-cart-item-details {
    flex: 1;
    font-size: 14px;
}

.checkout-text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 5px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
}

.checkout-cart-item-details p {
    margin: 5px 0;
    color: #555;
    font-size: 14px;
}

.checkout-price-text,
.checkout-qty-text,
.checkout-subtotal-text {
    font-weight: 600;
    color: #333;
}

.checkout-cart-item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.checkout-qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #ddd;
    background: #f8f8f8;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.2s;
}

.checkout-qty-btn:hover {
    background: #eee;
}

.checkout-remove-btn {
    position: absolute;
    top: 10px;
    right: 0;
    background: none;
    border: none;
    color: #ff5252;
    cursor: pointer;
    font-size: 16px;
    padding: 5px;
}

.checkout-remove-btn:hover {
    color: #ff0000;
}

/* Checkout Total Styles */
.checkout-cart-total-container {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.checkout-cart-total {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    display: flex;
    justify-content: space-between;
}

.checkout-cart-total span {
    font-size: 20px;
    color: #26a74f;
}
.checkout_style h5 {
    font-size: 16px !important;
    margin: 0px !important;
    padding: 2px !important;
    font-weight: 500 !important;
}
.checkout_order_total {
    font-size: 22px !important;
}

.login_design {
    /* background: #fff; */
    /* border: 1px solid rgb(211, 211, 211); */
    margin: 30px;
    padding: 0px 10px;
    box-shadow: #000;
}

/* customer dashboard part start */

.side_menu_part {
    width: 100%;
    border-radius: 10px;
    text-align: center;
    width: 100%;
    background: #f2f2f2;
    border-radius: 10px;
    text-align: center;
}

.side_menu_part .profile_image_part .profile_image img {
    width: 150px;
    height: 150px;
    text-align: center;
    border-radius: 50%;
    margin-top: 5px;
}

.customer_dashboard{
    margin: 20px;

}
/* Mobile-specific styles */
@media (max-width: 767px) {
    .mobile_design {
        padding: 0px !important;
    }

    .customer_dashboard{
    margin: 0px !important;

}

}

.profile_dashboard_content {
}

.dashboard_content_items a {
    background: #f2f2f2;
    color: #565656;
    transition: all 0.45s;
}
.dashboard_content_items a:hover {
    background: #26a74f;
    color: #fff;
}
.list-group-item.active {
    background: #26a74f;
    color: #fff;
    border: 1px solid #26a74f;
}

.side_menu_content_part {
    width: 100%;
}

.side_manu_dashboard {
}

.side_manu_all {
    text-align: center;
    width: 100%;
    height: 200px;
    background: #f2f2f2;
    position: relative;
    border-radius: 10px;
    box-shadow: #f2f2f2;
}

.side_manu_all h4 {
    font-size: 18px;
    font-weight: 400;
    color: #565656;
}

.side_manu_all p {
    font-weight: 700;
}

.all_icon {
    background: #26a74f;
    display: inline-block;
    padding: 15px 25px;
    font-size: 40px;
    color: #fff;
    border-radius: 50%;
    margin-top: 20px;
}

/* customer profile css */

.customer_profile {
    width: 100%;
    background: #f2f2f2;
    position: relative;
    border-radius: 10px;
    box-shadow: #f2f2f2;
}

.profile_details {
    margin: 0px 20px;
    padding: 20px 0px;
}

.profile_submit_btn {
    padding: 10px 15px;

    border-radius: 5px;
    transition: all 0.45s;
    background: #26a74f;
    color: #fff;
}
.profile_submit_btn:hover {
    background: #ffff;
    color: #26a74f;
}

/* customer address css */

.customer_address h4 {
    font-size: 24px;
    color: #565656;
    font-weight: 500;
    padding: 20px 0px;
}

.custom_table tr th {
    color: #000000;
    font-weight: 500;
    font-size: 14px;
}
.customer_order_table_btn {
    background: #656565;
    padding: 5px 7px;
    color: #fff;
    transition: all 0.45s;
}
.customer_order_table_btn:hover {
    background: #5f5f5f;
    color: #ffffff;
}
.order_table_border {
    border: 1px solid #629655;
}

/* customer dashboard part end */

/* banner part */
.banner_part {
    width: 100%;
    margin-top: 30px;
}

.banner_image {
    background-repeat: no-repeat !important;
    background-position: 100% 100% !important;
    background-size: cover !important;
    width: 100%;
    height: 300px;
    border-radius: 20px;
}

.img_content {
    height: 300px;
    text-align: left;
}
.img_content h2 {
    padding-top: 120px;
    color: #fff;
    font-size: 44px;
    font-weight: 600;
    padding-left: 30px;
}
.img_content h4 {
    padding: 6px 30px;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
}
.img_content button {
    background: #629655;
    padding: 7px 15px;
    margin-left: 30px;
    border-radius: 6px;
    color: #fff;
    transition: all 0.45s;
}
.img_content button:hover {
    background: #ffffff;
    color: #629655;
}

/* banner */
.banner_slide_item {
    background-repeat: no-repeat !important;
    background-position: 100% 100% !important;
    background-size: cover !important;
    width: 100%;
    height: 500px;
}
.banner_content {
    width: 600px;
    margin: 0 auto;
    height: 300px;
    text-align: center;
    padding: 100px 0px;
}
.arrow_rt {
    position: absolute;
    right: 10%;
    height: 50px;
    width: 50px;
    border: 1px solid #000;
    font-size: 30px;
    line-height: 50px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.34s;
}
.arrow_lf {
    position: absolute;
    left: 10%;
    height: 50px;
    width: 50px;
    border: 1px solid #000;
    font-size: 30px;
    line-height: 50px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.34s;
}
.arrow_lf:hover,
.arrow_rt:hover {
    background: #000;
    color: #fff;
}

.clr {
    clear: both;
}
