<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body{background: linear-gradient(135deg, #f5f7fa 0%, #f8f9fa 100%);}
@media (min-width: 1200px) {
    .collections-list {
        max-width: 1280px
    }
}
        .collections-list {
            
            min-height: 100vh;
            padding: 30px;
        }
.collections-list .catergories-title{margin-bottom: 30px;font-size: 30px;font-weight:600}
        
        .collections-list .product-card {
            border: none;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            margin-bottom: 10px;
            background: white;
            position: relative;
            transform-style: preserve-3d;
            perspective: 1000px;
        }
        
        .collections-list .product-card:hover {
            transform: translateY(-15px) rotateX(5deg);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .collections-list .product-img-container {
            overflow: hidden;
            position: relative;
            border-radius: 20px 20px 0 0;
			padding: 30px;
        }
        
        .collections-list .product-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
        }
        
        .collections-list .product-card:hover .product-img {
            transform: scale(1.1) rotate(1deg);
        }
        
        .collections-list .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
            color: white;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
            box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
            animation: pulse 2s infinite;
            z-index: 2;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .collections-list .product-body {
            padding: 25px;
            position: relative;
            z-index: 1;
        }
        
        .collections-list .product-title {
            font-weight: 700;
            color: #2d3436;
            margin-bottom: 15px;
            height: 50px;
            overflow: hidden;
            transition: color 0.3s ease;
        }
        
        .collections-list .product-card:hover .product-title {
            color: #ff6b6b;
        }
        
        .collections-list .product-price {
            font-weight: 800;
            color: #ff6b6b;
            font-size: 20px;
            background: linear-gradient(to right, #ff6b6b, #ff8e53);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }
        
        .collections-list .original-price {
            text-decoration: line-through;
            color: #b2bec3;
            font-size: 15px;
            margin-left: 10px;
        }
        
        .collections-list .star-rating {
            color: #ffd32a;
            margin-bottom: 15px;
            font-size: 16px;
            text-shadow: 0 2px 5px rgba(255, 211, 42, 0.3);
        }
        
        .collections-list .star-rating .far {
            color: #dfe6e9;
        }
        
        .collections-list .add-to-cart {
            background: linear-gradient(45deg, #4ecdc4, #6a89cc);
            border: none;
            border-radius: 50px;
            padding: 10px 25px;
            color: white;
            font-weight: 700;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            width: 100%;
            margin-top: 15px;
            box-shadow: 0 5px 15px rgba(78, 205, 196, 0.4);
            position: relative;
            overflow: hidden;
        }
        
        .collections-list .add-to-cart:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 10px 25px rgba(78, 205, 196, 0.5);
        }
        
        .collections-list .add-to-cart:active {
            transform: translateY(1px);
        }
        
        .collections-list .add-to-cart::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(45deg);
            transition: all 0.3s ease;
        }
        
        .collections-list .add-to-cart:hover::after {
            left: 100%;
        }
        
        .collections-list .wishlist-btn {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ff6b6b;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            z-index: 2;
        }
        
        .collections-list .wishlist-btn:hover {
            background: #ff6b6b;
            color: white;
            transform: scale(1.1) rotate(15deg);
        }
        
        .collections-list .wishlist-btn.active {
            background: #ff6b6b;
            color: white;
        }
        
        .collections-list .pagination {
            justify-content: center;
            margin-top: 50px;
        }
        
        .collections-list .page-item.active .page-link {
            background: linear-gradient(45deg, #4ecdc4, #6a89cc);
            border-color: transparent;
            transform: scale(1.1);
            box-shadow: 0 5px 15px rgba(78, 205, 196, 0.4);
        }
        
        .collections-list .page-link {
            color: #4ecdc4;
            margin: 0 7px;
            border-radius: 50% !important;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: none;
            background: transparent;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .collections-list .page-link:hover {
            background-color: rgba(78, 205, 196, 0.1);
            color: #3dbeb5;
            transform: translateY(-3px);
        }
        
        .collections-list .page-item:first-child .page-link,
        .collections-list .page-item:last-child .page-link {
            background: rgba(78, 205, 196, 0.1);
        }
        
        .collections-list .page-item:first-child .page-link:hover,
        .collections-list .page-item:last-child .page-link:hover {
            background: rgba(78, 205, 196, 0.2);
        }
        
        @media (max-width: 767px) {
            .collections-list .product-img-container {
            }
            
            .collections-list .product-title {
                font-size: 16px;
                height: 45px;
            }
            
            .collections-list .product-body {
                padding: 20px;
            }
        }
        
        /* Floating animation for featured products */
        .collections-list .featured {
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0% { transform: translateY(0px) rotateX(0deg); }
            50% { transform: translateY(-20px) rotateX(5deg); }

            100% { transform: translateY(0px) rotateX(0deg); }
        }
        
        /* Glow effect for new products */
        .collections-list .glow {
            position: relative;
        }
        
        .collections-list .glow::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: linear-gradient(45deg, #ff6b6b, #ff8e53, #4ecdc4, #6a89cc);
            background-size: 400%;
            border-radius: 25px;
            z-index: -1;
            opacity: 0;
            transition: 0.5s;
            animation: glow-border 8s linear infinite;
        }
        
        .collections-list .glow:hover::before {
            opacity: 0.8;
            filter: blur(10px);
        }
        
        @keyframes glow-border {
            0% { background-position: 0 0; }
            50% { background-position: 400% 0; }
            100% { background-position: 0 0; }
        }</pre></body></html>