.herbal-text {
    background: linear-gradient(135deg, rgb(210, 248, 210) 0%, rgb(210, 248, 210) 100%) !important;
    color: #000;
    padding: 25px;
    border-radius: 10px;
    animation: slideInRight 2s ease-out;
}

.herbal-text h2 {
    font-size: 2rem;
    font-weight: bold;
}

.herbal-text h4 {
    margin-top: 10px;
    font-weight: 500;
    font-size: 1.3rem;
}

.herbal-text p {
    font-size: 1rem;
    margin-top: 15px;
    line-height: 1.6;
}

.herbal-image {
    animation: slideInLeft 2s ease-out;
}

.btnbgcolor {
    background: linear-gradient(135deg, rgb(210, 248, 210) 0%, rgb(210, 248, 210) 100%) !important;
    border: 1px solid #1c4813;
    box-shadow: inset 0px 0px 5px 0px #1c4813;
}

.btnbgcolorfooter {
    background: linear-gradient(135deg, rgb(210, 248, 210) 0%, rgb(210, 248, 210) 100%) !important;
    border: 1px solid #1c4813;
    box-shadow: inset 0px 0px 5px 0px #1c4813;
}

.bodershadow {
    box-shadow: inset 0px 0px 5px 0px #1c4813;
}

.blogbgcolor {
    background: linear-gradient(135deg, rgb(210, 248, 210) 0%, rgb(210, 248, 210) 100%);
}

.patibgcolor {
    display: block;
    background: linear-gradient(135deg, rgb(210, 248, 210) 0%, rgb(210, 248, 210) 100%);
    color: #1c4813;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    font-size: 20px;
    border-radius: 5px;
}

.patibgcolor1 {
    display: block;
    color: #1c4813;
    text-align: center;
    padding: 8px 16px;
    font-weight: bold;
    font-size: 18px;
    border-radius: 5px;
}

.textcolor {
    color: #1c4813 !important;
}

.btnbgcolor:hover {
    border-color: #1c4813;
    box-shadow: inset 0px 0px 5px 0px #1c4813;
    font-weight: bold;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.product-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: inset 0px 0px 5px 0px #1c4813;
    margin-bottom: 20px;
}

.product-title {
    font-weight: bold;
    margin-top: 10px;
    font-size: 16px;
}

.product-price {
    color: #28a745;
    font-weight: 500;
    margin: 5px 0;
}

.product-buttons .btn {
    margin: 5px 3px;
    font-size: 14px;
}

.product-img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2) !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: black;
    padding: 10px;
    border-radius: 50%;
}

.carousel-item .card {
    height: 100%;
}

.blog-title {
    background-color: #0d6efd;
    color: white;
    font-weight: bold;
    font-size: 2rem;
    padding: 10px 20px;
    display: inline-block;
    border-radius: 5px;
    margin-bottom: 30px;
}

.product-card {
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
}

.product-card:hover {
    box-shadow: inset 0px 0px 5px 0px #1c4813;
    transform: translateY(-5px);
}

.bgcolorbody {
    background: linear-gradient(135deg, rgb(210, 248, 210) 0%, rgb(210, 248, 210) 100%);
}

body {
    font-family: Arial, sans-serif;
}

.sidebar {
    background-color: #2c3e50;
    color: white;
    min-height: 100vh;
}

.sidebar a {
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    display: block;
}

.sidebar a:hover {
    background-color: #34495e;
}

.navbar-custom {
    background-color: #34495e;
    border-bottom: 1px solid #ddd;
}

.content {
    padding: 20px;
}

@media (max-width: 991.98px) {
    .sidebar {
        position: absolute;
        z-index: 1000;
        width: 250px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .sidebar.show {
        transform: translateX(0);
    }
}

.btn-green {
    background-color: green !important;
    color: white !important;
    border: none !important;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: bold;
}

.btn-green:hover {
    background-color: darkgreen !important;
}

.table-bordered {
    border: 1px solid #ccc !important;
}

.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    cursor: pointer !important;
    border: 1px solid #34495e !important;
}

.card-hover:hover {
    transform: translateY(-5px) scale(1.02) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
}

.product-card {
    position: relative;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.product-icons {
    position: absolute;
    top: 20px;
    right: 20px;
}

.product-icons a i {
    font-size: 20px;
}

.product-icons a {
    background-color: #f1f5f0;
    padding: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    display: inline-block;
    transition: all 0.3s ease;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}

.textcolor {
    color: #1c4813;
}

a[data-bs-toggle="tooltip"] i.bi {
    background-color: transparent !important;
}

a[data-bs-toggle="tooltip"] {
    background-color: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    border: none !important;
    padding: 0 !important;
}

.wishlist-logged {
    border-radius: 50%;
    padding: 5px;
    font-size: 20px;
    margin-bottom: 10px;
    color: #007bff;
}

.productimg {
    width: 100%;
    height: 200px;
    object-fit: cover;
}