    :root {
        --primary-color: #529f56;
        --secondary-color: #6c757d;
        --light-bg: #f8f9fa;
    }
    
    .plant-detail-section {
        padding: 50px 0;
    }
    
    .plant-image-main {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 15px;
    }
    
    .plant-thumbnails {
        display: flex;
        gap: 10px;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }
    
    .plant-thumbnail {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 5px;
        cursor: pointer;
        border: 2px solid transparent;
        transition: all 0.3s ease;
    }
    
    .plant-thumbnail.active, .plant-thumbnail:hover {
        border-color: var(--primary-color);
    }
    
    .plant-title {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 10px;
        color: #2c5530;
    }
    
    .plant-price {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 15px;
    }
    
    .plant-rating {
        color: #ffc107;
        margin-bottom: 15px;
    }
    
    .plant-description {
        margin-bottom: 20px;
        line-height: 1.6;
    }
    
    .plant-features {
        margin-bottom: 25px;
    }
    
    .plant-features ul {
        padding-left: 20px;
    }
    
    .plant-features li {
        margin-bottom: 8px;
    }
    
    .quantity-controls {
        display: flex;
        align-items: center;
        margin-bottom: 25px;
    }
    
    .quantity-btn {
        width: 40px;
        height: 40px;
        background-color: #f8f9fa;
        border: 1px solid #dee2e6;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 1.2rem;
    }
    
    .quantity-input {
        width: 60px;
        height: 40px;
        text-align: center;
        border: 1px solid #dee2e6;
        border-left: none;
        border-right: none;
    }
    
    .btn-add-to-cart {
        background-color: var(--primary-color);
        color: white;
        border: none;
        padding: 12px 30px;
        border-radius: 30px;
        font-weight: 600;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    
    .btn-add-to-cart:hover {
        background-color: #3e7d42;
        transform: translateY(-2px);
    }
    
    .btn-buy-now {
        background-color: #28a745;
        color: white;
        border: none;
        padding: 12px 30px;
        border-radius: 30px;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .btn-buy-now:hover {
        background-color: #218838;
        transform: translateY(-2px);
    }
    
    .plant-meta {
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid #e9ecef;
    }
    
    .plant-meta-item {
        display: flex;
        margin-bottom: 10px;
    }
    
    .meta-label {
        font-weight: 600;
        min-width: 150px;
        color: #2c5530;
    }
    
    .additional-info {
        margin-top: 50px;
    }
    
    .nav-tabs .nav-link {
        color: #495057;
        font-weight: 500;
    }
    
    .nav-tabs .nav-link.active {
        color: var(--primary-color);
        font-weight: 600;
    }
    
    .tab-content {
        padding: 20px 0;
    }
    
    .related-plants {
        margin-top: 50px;
    }
    
    .related-plant-card {
        border: 1px solid #e9ecef;
        border-radius: 8px;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .related-plant-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .related-plant-img {
        height: 180px;
        object-fit: cover;
        width: 100%;
    }
    
    .breadcrumb {
        background-color: transparent;
        padding: 0;
        margin-bottom: 30px;
    }
    
    .breadcrumb-item a {
        text-decoration: none;
        color: var(--primary-color);
    }
    
    .care-instruction {
        background-color: #f8fff9;
        border-left: 4px solid var(--primary-color);
        padding: 15px;
        margin-bottom: 15px;
        border-radius: 0 5px 5px 0;
    }
    
    .benefit-badge {
        background-color: #e8f5e9;
        color: #2c5530;
        padding: 5px 10px;
        border-radius: 20px;
        margin-right: 8px;
        margin-bottom: 8px;
        display: inline-block;
        font-size: 0.85rem;
    }

    /* css for myshop page  */
    :root {
        --primary-color: #529f56;
        --secondary-color: #6c757d;
        --light-bg: #f8f9fa;
    }
    
    .shop-header {
        background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                    url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?w=1200&q=80');
        background-size: cover;
        background-position: center;
        color: white;
        padding: 80px 0;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .filter-sidebar {
        background: white;
        border-radius: 10px;
        padding: 25px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        height: fit-content;
        position: sticky;
        top: 20px;
    }
    
    .filter-section {
        margin-bottom: 15px;
        border-bottom: 1px solid #e9ecef;
        padding-bottom: 15px;
    }
    
    .filter-section:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
    
    .filter-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        padding: 10px 0;
    }
    
    .filter-title {
        font-weight: 600;
        color: #2c5530;
        margin-bottom: 0;
        font-size: 1.1rem;
    }
    
    .filter-content {
        padding-top: 15px;
        max-height: 300px;
        overflow: hidden;
        transition: all 0.4s ease-in-out;
    }
    
    .filter-content.collapsed {
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
    }
    
    .form-check-label {
        color: #495057;
        cursor: pointer;
    }
    
    .form-check-input:checked {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }
    
    .price-range {
        width: 100%;
        margin: 10px 0;
    }
    
    .price-inputs {
        display: flex;
        gap: 10px;
        margin-top: 10px;
    }
    
    .price-inputs input {
        width: 100%;
        padding: 8px;
        border: 1px solid #dee2e6;
        border-radius: 5px;
    }
    
    .product-card {
        border: 1px solid #e9ecef;
        border-radius: 10px;
        overflow: hidden;
        transition: all 0.3s ease;
        background: white;
        height: 100%;
    }
    
    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    
    .product-image {
        height: 200px;
        overflow: hidden;
        position: relative;
    }
    
    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .product-card:hover .product-image img {
        transform: scale(1.05);
    }
    
    .product-badge {
        position: absolute;
        top: 10px;
        left: 10px;
        background: var(--primary-color);
        color: white;
        padding: 5px 10px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 500;
    }
    
    .product-content {
        padding: 20px;
    }
    
    .product-title {
        font-weight: 600;
        color: #2c5530;
        margin-bottom: 8px;
        font-size: 1.1rem;
    }
    
    .product-price {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 10px;
    }
    
    .product-rating {
        color: #ffc107;
        margin-bottom: 12px;
    }
    
    .product-description {
        color: #6c757d;
        font-size: 0.9rem;
        margin-bottom: 15px;
        line-height: 1.4;
    }
    
    .btn-add-cart {
        background-color: var(--primary-color);
        color: white;
        border: none;
        border-radius: 25px;
        padding: 8px 15px;
        font-weight: 500;
        transition: all 0.3s ease;
        flex: 1;
    }
    
    .btn-add-cart:hover {
        background-color: #3e7d42;
        transform: translateY(-2px);
    }
    
    .btn-view-details {
        background-color: transparent;
        color: var(--primary-color);
        border: 1px solid var(--primary-color);
        border-radius: 25px;
        padding: 8px 15px;
        font-weight: 500;
        transition: all 0.3s ease;
        flex: 1;
    }
    
    .btn-view-details:hover {
        background-color: var(--primary-color);
        color: white;
        transform: translateY(-2px);
    }
    
    .button-group {
        display: flex;
        gap: 10px;
        margin-top: 15px;
    }
    
    .shop-toolbar {
        background: white;
        padding: 20px;
        border-radius: 10px;
        margin-bottom: 30px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    }
    
    .results-count {
        color: #6c757d;
        font-weight: 500;
    }
    
    .sort-select {
        border: 1px solid #dee2e6;
        border-radius: 5px;
        padding: 8px 15px;
    }
    
    .view-options button {
        border: 1px solid #dee2e6;
        background: white;
        padding: 8px 12px;
        margin-left: 5px;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    
    .view-options button.active {
        background: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
    }
    
    .pagination {
        margin-top: 50px;
    }
    
    .page-link {
        color: var(--primary-color);
        border: 1px solid #dee2e6;
    }
    
    .page-link:hover {
        background-color: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
    }
    
    .page-item.active .page-link {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }
    
    .category-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .category-tag {
        background: #e8f5e9;
        color: #2c5530;
        padding: 8px 15px;
        border-radius: 20px;
        font-size: 0.9rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .category-tag.active, .category-tag:hover {
        background: var(--primary-color);
        color: white;
    }
    
    /* List View Styles */
    .products-list .product-item {
        display: flex;
        margin-bottom: 30px;
        border: 1px solid #e9ecef;
        border-radius: 10px;
        overflow: hidden;
        background: white;
        transition: all 0.3s ease;
    }
    
    .products-list .product-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    
    .products-list .product-image {
        width: 250px;
        height: 200px;
        flex-shrink: 0;
    }
    
    .products-list .product-content {
        flex: 1;
        padding: 25px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .products-list .product-description {
        margin-bottom: 0;
    }
    
    .products-list .button-group {
        width: auto;
        align-self: flex-start;
    }
    
    @media (max-width: 768px) {
        .filter-sidebar {
            margin-bottom: 30px;
            position: static;
        }
        
        .shop-toolbar .d-flex {
            flex-direction: column;
            gap: 15px;
        }
        
        .view-options {
            align-self: flex-end;
        }
        
        .products-list .product-item {
            flex-direction: column;
        }
        
        .products-list .product-image {
            width: 100%;
            height: 200px;
        }
        
        .products-list .button-group {
            width: 100%;
        }
        
        .button-group {
            flex-direction: column;
        }
    }
    
    /* Smooth transitions for filter content */
    .filter-content .form-check,
    .filter-content .price-inputs,
    .filter-content .price-range {
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .filter-content.collapsed .form-check,
    .filter-content.collapsed .price-inputs,
    .filter-content.collapsed .price-range {
        opacity: 0;
        transform: translateY(-10px);
    }
    
    .filter-content:not(.collapsed) .form-check,
    .filter-content:not(.collapsed) .price-inputs,
    .filter-content:not(.collapsed) .price-range {
        opacity: 1;
        transform: translateY(0);
    }
