/* কার্ডের ট্রানজিশন ইফেক্ট */
    .transition-hover {
        transition: all 0.3s ease-in-out;
        border-radius: 15px;
        overflow: hidden;
    }

    .transition-hover:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
        background-color: #007bff; /* হোভার করলে ব্যাকগ্রাউন্ড নীল হবে */
    }

    /* হোভার করলে টেক্সট সাদা হবে */
    .transition-hover:hover .card-title {
        color: #ffffff !important;
    }

    /* ইমেজ বক্স ডিজাইন */
    .category-image-wrapper {
        width: 100px;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f8f9fa;
        padding: 10px;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .category-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .transition-hover:hover .category-image-wrapper {
        background: #ffffff;
        transform: scale(1.1);
    }
    
    
    
    
    
    
    
    
    
    
    
/*=========== product category page css ==========*/
        .filter-sidebar {
        border-radius: 15px;
        position: sticky;
        top: 20px;
    }
    .product-card {
        border-radius: 15px;
        transition: all 0.3s ease;
        overflow: hidden;
    }
    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
    }
    .img-container {
        overflow: hidden;
        background: #f8f9fa;
    }
    .img-container img {
        transition: transform 0.5s ease;
    }
    .product-card:hover .img-container img {
        transform: scale(1.1);
    }
    .hover-overlay {
        position: absolute;
        bottom: -50px;
        left: 0;
        width: 100%;
        height: 50px;
        background: rgba(0,123,255,0.7);
        transition: bottom 0.3s ease;
    }
    .product-card:hover .hover-overlay {
        bottom: 0;
    }
    .custom-control-label {
        cursor: pointer;
    }
    .pagination .page-link {
        border-radius: 50%;
        margin: 0 5px;
        color: #007bff;
        border: none;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    .pagination .page-item.active .page-link {
        background-color: #007bff;
        color: white;
    }
    
    
    
    /*======== product details page design css =======*/
        .transition-zoom { transition: transform .5s ease; }
    .main-image:hover .transition-zoom { transform: scale(1.15); cursor: zoom-in; }
    .active-thumb { border: 2px solid #007bff !important; }
    .nav-tabs .nav-link { border: none; color: #555; }
    .nav-tabs .nav-link.active { border-bottom: 3px solid #007bff; color: #007bff; background: transparent; }
    .breadcrumb-item a { color: #888; text-decoration: none; }
    .btn-lg { font-size: 1.1rem; }
    .shadow-sm { box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important; }
    .img-thumbnail { border-radius: 10px; transition: all .3s; }
    .img-thumbnail:hover { border-color: #007bff; }
    
    