:root {
    --primary-color: #2e7d32;
    --secondary-color: #7cb342;
    --accent-color: #ff5722;
    --light-color: #f1f8e9;
    --dark-color: #1b5e20;
}
* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}


body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    overflow-x: hidden;

}

.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color);
}

.nav-link {
    font-weight: 500;
    color: #333;
    transition: color 0.3s;
}

.nav-item {
    padding-right: 20px;
    margin-left: 10px;
}

.nav-link:hover {
    color: var(--primary-color);

}

p {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--dark-color);
    border-color: var(--dark-color);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

.about-section {
    width: fit-content;
}

.about-section p {
    margin-left: 40px;
}

.gi-contain {
    margin-left: 25px;
}

.as-sec {
    margin-left: 20px;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    margin-bottom: 50px;
}

.section-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 15px;
    text-align: center;
    margin-top: 10px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.plant-card {
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 20px;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.plant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: solid 2px;
}

.plant-card img {
    height: 200px;
    /* object-fit: cover; */
}


.like-btn,
.cart-btn {
    border: none;
    background: none;
    font-size: 1.2rem;
    transition: color 0.3s;
    cursor: pointer;
}

.like-btn {
    color: #ccc;
}

.like-btn.active {
    color: #e91e63;
}

.cart-btn {
    color: var(--primary-color);
}

.navbar-brand i {
    color: green;
}

.navbar-brand i:hover {
    color: black;
}

.category-card {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background-color: var(--light-color);
}

.category-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

footer {
    background-color: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

.payment-methods i {
    font-size: 2rem;
    margin-right: 10px;
    color: #ddd;
}

.cart-count,
.wishlist-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-vision {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    padding-left: 40px;

}


.cart-icon,
.wishlist-icon {
    position: relative;
}

/* Cart Modal Styles */
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.cart-item-details {
    flex-grow: 1;
    padding: 0 15px;
}

.cart-item-price {
    font-weight: bold;
    color: var(--primary-color);
}

.cart-total {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: right;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 2px solid #eee;
}

.empty-cart-message {
    text-align: center;
    padding: 30px;
    color: #6c757d;
}

.plant-types {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    background-color: #f0f0f0;
    margin-top: 20px;
}

/* indoor plants css */
.plant-types img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: solid 2px #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;

}

.plant-types img:hover {
    transform: scale(1.05);
    border-color: rgb(0, 42, 0);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.plant-types div p {
    padding-left: 50px;
    margin-top: 10px;
}

.header-container h1 {
    padding-top: 20px
}

#hc-sec {
    padding-right: 20px
}

.popluar-plants1 img {
    width: 400px;
    height: 400px;
    display: flex;
}

.pop-section {
    display: flex;
    padding-left: 30px;
}

.popluar-plants1 img {
    padding-left: 20px;
}

.popluar-plants3 {
    padding-left: 40px;
}

.popluar-plants2 {
    padding-left: 20px;
}

.popluar-plants2 img {
    width: 400px;
    height: 400px;
    padding-top: 20px;
}

.popluar-plants3 img {
    width: 1000px;
    height: 400px;

}

.pop-section1 {
    display: flex;
    padding-left: 30px;
}

.popluar-plants4 img {
    padding-top: 20px;
    padding-left: 20px;
    width: 1000px;
    height: 400px;
}

.action-side {
    width: 100%;
    height: 150px;
    margin-top: 20px;
    background-color: #f0f0f0;

}

.action-side img {
    width: 100px;
    height: 100px;
    margin-left: 100px;
    margin-top: 20px;
}

@media screen and (max-width: 600px) {
    .plant-types {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
   

    .plant-types img {
        width: 100px;
        height: 100px;
    }

    .plant-types div p {
        padding-left: 10px;
    }

    .about-vision {
        display: inline;
        padding-top: 20px;
        margin-left: 20px;

    }


}