<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
@media (min-width: 1200px) {
    .collections-list .container {
        max-width: 1280px
    }
}
        .collections-list {
            background-color: #f9f9f9;
            min-height: 100vh;
            padding: 40px 0;
        }
        
        .collections-list .page-title {
            text-align: center;
            margin-bottom: 50px;
            font-weight: 700;
            color: #333;
            letter-spacing: 2px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .collections-list .page-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #6c63ff, #ff6b6b);
            border-radius: 3px;
        }
        
        .collections-list .product-card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            margin-bottom: 30px;
            background: white;
            position: relative;
        }
        
        .collections-list .product-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
        }
        
        .collections-list .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .collections-list .product-card:hover:before {
            opacity: 1;
        }
        
        .collections-list .product-img-container {
            overflow: hidden;
            position: relative;
            background: #fff;
			padding:20px;
        }
        
        .collections-list .product-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        
        .collections-list .product-card:hover .product-img {
            transform: scale(1.1);
        }
        
        .collections-list .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(45deg, #6c63ff, #8a85ff);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
            box-shadow: 0 3px 10px rgba(108, 99, 255, 0.3);
            z-index: 2;
            transform: scale(0.9);
            opacity: 0;
            transition: all 0.4s ease;
        }
        
        .collections-list .product-card:hover .product-badge {
            transform: scale(1);
            opacity: 1;
        }
        
        .collections-list .product-body {
            padding: 20px;
            position: relative;
            z-index: 2;
            background: white;
        }
        
        .collections-list .product-title {
            font-weight: 600;
            margin-bottom: 12px;
            color: #333;
            font-size: 18px;
            overflow: hidden;
            text-overflow: ellipsis;
            position: relative;
            display: inline-block;
			height: 65px;
        }
        
        .collections-list .product-title:after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #6c63ff, #ff6b6b);
            transition: width 0.4s ease;
        }
        
        .collections-list .product-card:hover .product-title:after {
            width: 100%;
        }
        
        .collections-list .product-price {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .collections-list .current-price {
            font-weight: 700;
            color: #6c63ff;
            font-size: 1.2rem;
            margin-right: 10px;
        }
        
        .collections-list .original-price {
            text-decoration: line-through;
            color: #999;
            font-size: 0.9rem;
        }
        
        .collections-list .product-rating {
            margin-bottom: 15px;
        }
        
        .collections-list .product-rating .fas {
            font-size: 0.9rem;
            color: #ffc107;
        }
        
        .collections-list .product-rating .rating-count {
            color: #888;
            font-size: 0.8rem;
            margin-left: 5px;
        }
        
        .collections-list .btn-add-to-cart {
            background: linear-gradient(45deg, #6c63ff, #8a85ff);
            border: none;
            border-radius: 30px;
            padding: 10px 20px;
            font-weight: 600;
            color: white;
            transition: all 0.4s ease;
            width: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .collections-list .btn-add-to-cart:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }
        
        .collections-list .btn-add-to-cart:hover {
            background: linear-gradient(45deg, #5a52e0, #6c63ff);
            box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
        }
        
        .collections-list .btn-add-to-cart:hover:before {
            left: 100%;
        }
        
        .collections-list .pagination {
            justify-content: center;
            margin-top: 50px;
        }
        
        .collections-list .page-item.active .page-link {
            background: linear-gradient(45deg, #6c63ff, #8a85ff);
            border-color: #6c63ff;
        }
        
        .collections-list .page-link {
            color: #6c63ff;
            border: 1px solid #eee;
            margin: 0 5px;
            border-radius: 30px !important;
            transition: all 0.3s ease;
        }
        
        .collections-list .page-link:hover {
            color: white;
            background: #6c63ff;
            border-color: #6c63ff;
        }
        
        /* Animation classes */
        .collections-list .animate-delay-1 {
            animation-delay: 0.1s;
        }
        
        .collections-list .animate-delay-2 {
            animation-delay: 0.2s;
        }
        
        .collections-list .animate-delay-3 {
            animation-delay: 0.3s;
        }
        
        .collections-list .animate-delay-4 {
            animation-delay: 0.4s;
        }
        
        .collections-list .fade-in-up {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @media (max-width: 767px) {
            .collections-list .product-img-container {

            }
            
            .collections-list .product-title {
                font-size: 1rem;
            }
            
            .collections-list .current-price {
                font-size: 1.1rem;
            }
        }</pre></body></html>