body{ background: #f9f9f9 !important}

@media (min-width: 1200px) {
    .collections-list {
        max-width: 1280px !important;
    }
}
.collections-list .catergories-title{margin-bottom: 30px;font-size: 30px;font-weight:600}
.collections-list .product-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 25px;
            background: #fff;
        }
        
        .collections-list .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .collections-list .product-img-container {
            overflow: hidden;
            position: relative;
        }
        
        .collections-list .product-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
			padding:30px;
        }
        
        .collections-list .product-card:hover .product-img {
            transform: scale(1.05);
        }
        
        .collections-list .product-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #ff6b6b;
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
        }
        
        .collections-list .product-body {
            padding: 20px;
        }
        
        .collections-list .product-title {
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
            height: 48px;
            overflow: hidden;
        }
.collections-list .product-title a{color:#333}
        .collections-list .product-price {
            font-weight: bold;
            color: #ff6b6b;
            font-size: 18px;
        }
.collections-list .product-title a:hover{color:#007bff}

        
        .collections-list .original-price {
            text-decoration: line-through;
            color: #999;
            font-size: 14px;
            margin-left: 8px;
        }
        
        .collections-list .star-rating {
            color: #ffc107;
            margin-bottom: 10px;
        }
        
        .collections-list .star-rating .far {
            color: #ddd;
        }
        
        .collections-list .add-to-cart {
            background: #4ecdc4;
            border: none;
            border-radius: 30px;
            padding: 8px 20px;
            color: white;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 10px;
        }
        
        .collections-list .add-to-cart:hover {
            background: #3dbeb5;
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(78, 205, 196, 0.3);
        }
        
        .collections-list .wishlist-btn {
            position: absolute;
            top: 10px;
            left: 10px;
            background: rgba(255, 255, 255, 0.8);
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ff6b6b;
            transition: all 0.3s ease;
        }
        
        .collections-list .wishlist-btn:hover {
            background: #ff6b6b;
            color: white;
        }
        
        .collections-list .pagination {
            justify-content: center;
            margin-top: 30px;
        }
        
        .collections-list .page-item.active .page-link {
            background-color: #4ecdc4;
            border-color: #4ecdc4;
        }
        
        .collections-list .page-link {
            color: #4ecdc4;
            margin: 0 5px;
            border-radius: 50% !important;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: none;
            background: transparent;
        }
        
        .collections-list .page-link:hover {
            background-color: rgba(78, 205, 196, 0.1);
            color: #3dbeb5;
        }
        
        @media (max-width: 767px) {
            .collections-list .product-img-container {
            }
            
            .collections-list .product-title {
                font-size: 16px;
                height: 40px;
            }
        }