	@media (min-width: 1200px) {
    .collections-list .container {
        max-width: 1280px !important;
    }
}
        .collections-list {
            background: linear-gradient(168deg, #f5f7fa 0%, #e4e8eb 100%);
            min-height: 100vh;
        }
        
        .collections-list .page-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 3.5rem;
            font-weight: 900;
            padding: 40px 0;
            text-align: center;
            color: transparent;
            background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            background-clip: text;
            text-shadow: 3px 3px 0 rgba(0,0,0,0.05);
            position: relative;
            letter-spacing: 2px;
            animation: titleGlow 2s ease-in-out infinite alternate;
        }
        
        @keyframes titleGlow {
            0% { text-shadow: 3px 3px 0 rgba(0,0,0,0.05); }
            100% { text-shadow: 0 0 15px rgba(102, 126, 234, 0.5), 0 0 30px rgba(118, 75, 162, 0.3); }
        }
        
        .collections-list .card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            margin-bottom: 30px;
            background: white;
            position: relative;
            transform-style: preserve-3d;
            perspective: 1000px;
        }
        
        .collections-list .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }
        
        .collections-list .card:hover {
            transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }
        
        .collections-list .card:hover::before {
            transform: scaleX(1);
        }
        
        .collections-list .card-img-container {
            overflow: hidden;
            position: relative;
        }
        
        .collections-list .card-img-top {
            height: 100%;
            width: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
			padding:30px;
        }
        
        .collections-list .card:hover .card-img-top {
            transform: scale(1.1) rotate(1deg);
        }
        
        .collections-list .card-body {
            padding: 25px;
            position: relative;
            z-index: 1;
        }
        
        .collections-list .product-title {
font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2d3748;
    position: relative;
    display: inline-block;
    overflow: hidden;
    height: 46px;
        }
        
        .collections-list .product-title::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
            transition: width 0.3s ease;
        }
        
        .collections-list .card:hover .product-title::after {
            width: 100%;
        }
        
        .collections-list .price-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 15px;
        }
        
        .collections-list .price {
            font-weight: 700;
            font-size: 1.4rem;
            color: #667eea;
            position: relative;
        }
        

        
        .collections-list .original-price {
            text-decoration: line-through;
            color: #a0aec0;
            font-size: 1rem;
            margin-left: 5px;
        }
        
        .collections-list .rating {
            color: #ffc107;
            margin-bottom: 10px;
            font-size: 0.9rem;
        }
        
        .collections-list .rating .fa-star {
            margin-right: 2px;
            text-shadow: 0 1px 2px rgba(0,0,0,0.1);
        }
        
        .collections-list .rating-count {
            color: #a0aec0;
            font-size: 0.8rem;
            margin-left: 5px;
        }
        
        .collections-list .badge-new {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(45deg, #ff416c, #ff4b2b);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            box-shadow: 0 4px 15px rgba(255, 65, 108, 0.4);
            animation: pulse 1.5s infinite;
            z-index: 2;
        }
        
        .collections-list .badge-sale {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(45deg, #4facfe, #00f2fe);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            box-shadow: 0 4px 15px rgba(0, 242, 254, 0.4);
            z-index: 2;
        }
        
        .collections-list .badge-featured {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(45deg, #43e97b, #38f9d7);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            box-shadow: 0 4px 15px rgba(67, 233, 123, 0.4);
            z-index: 2;
        }
        
        .collections-list .pagination {
            margin-top: 50px;
            justify-content: center;
        }
        
        .collections-list .page-item.active .page-link {
            background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
            border-color: transparent;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
            transform: translateY(-2px);
        }
        
        .collections-list .page-link {
            color: #667eea;
            margin: 0 8px;
            border-radius: 10px !important;
            border: none;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
        }
        
        .collections-list .page-link:hover {
            color: white;
            background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
        }
        
        .collections-list .add-to-cart {
            background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 25px;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(10px);
        }
        
        .collections-list .card:hover .add-to-cart {
            opacity: 1;
            transform: translateY(0);
        }
        
        .collections-list .add-to-cart:hover {
            transform: translateY(-2px) !important;
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .collections-list .product-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .collections-list .product-category {
            background: #edf2f7;
            color: #4a5568;
            padding: 3px 10px;
            border-radius: 15px;
            font-size: 0.7rem;
            font-weight: 600;
        }
        
        /* 3D floating effect */
        .collections-list .card:nth-child(3n+1) {
            animation: float 6s ease-in-out infinite;
        }
        
        .collections-list .card:nth-child(3n+2) {
            animation: float 6s ease-in-out 2s infinite;
        }
        
        .collections-list .card:nth-child(3n+3) {
            animation: float 6s ease-in-out 4s infinite;
        }
        
        @keyframes float {
            0% { transform: translateY(0px) rotateX(0deg) rotateY(0deg); }
            50% { transform: translateY(-10px) rotateX(2deg) rotateY(2deg); }
            100% { transform: translateY(0px) rotateX(0deg) rotateY(0deg); }
        }
        
        /* Responsive adjustments */
        @media (max-width: 991px) {
            .collections-list .page-title {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 767px) {
            .collections-list .page-title {
                font-size: 2.2rem;
            }
            
            .collections-list .card {
                margin-bottom: 25px;
            }
            
            .collections-list .card-img-container {
            }
        }