 :root {
        --primary-color: #6c5ce7;
        --secondary-color: #a29bfe;
        --accent-color: #fd79a8;
        --dark-color: #2d3436;
        --light-color: #f5f6fa;
        --gradient: linear-gradient(135deg, #6c5ce7 0%, #fd79a8 100%);
    }
    
    body {
        background-color: #f8f9fa;
        font-family: 'Poppins', sans-serif;
        color: var(--dark-color);
    }
    
    .main-content {
        padding: 2rem 0;
        max-width: 1400px;
    }
    
    .page-header {
        margin-bottom: 3rem;
        text-align: center;
        position: relative;
    }
    
    .page-title {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 1rem;
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        position: relative;
        display: inline-block;
    }
    
    .page-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: var(--gradient);
        border-radius: 2px;
    }
    
    .breadcrumb {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 0.9rem;
        color: #636e72;
    }
    
    .breadcrumb a {
        color: var(--primary-color);
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .breadcrumb a:hover {
        color: var(--accent-color);
        text-decoration: underline;
    }
    
    .breadcrumb i {
        margin: 0 10px;
        font-size: 0.7rem;
        color: #b2bec3;
    }
    
    .products-container {
        position: relative;
    }
    
    .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 2rem;
        padding: 0.4rem;
    }
    
    .product-card {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        z-index: 1;
    }
    
    .product-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--gradient);
        opacity: 0;
        z-index: -1;
        transition: opacity 0.3s ease;
    }
    
    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }
    
    .product-card:hover::before {
        opacity: 0.1;
    }
    
    .product-image {
        height: 200px;
        overflow: hidden;
        position: relative;
    }
    
    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .product-card:hover .product-image img {
        transform: scale(1.05);
    }
    
    .product-info {
        padding: 1.5rem;
        position: relative;
    }
    
    .product-category {
        display: block;
        font-size: 0.8rem;
        color: var(--primary-color);
        margin-bottom: 0.5rem;
        font-weight: 600;
    }
    
    .product-title {
        font-size: 1.2rem;
        font-weight: 700;
        margin: 0.5rem 0;
        color: var(--dark-color);
        text-decoration: none;
        display: block;
        transition: all 0.3s ease;
    }
    
    .product-card:hover .product-title {
        color: var(--primary-color);
    }
    
    .product-description {
        font-size: 0.9rem;
        color: #636e72;
        margin: 0.8rem 0;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .view-now-btn {
        display: inline-block;
        padding: 0.6rem 1.5rem;
        background: var(--gradient);
        color: white;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
        border: none;
        cursor: pointer;
        text-align: center;
        margin-top: 1rem;
    }
    
    .view-now-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
        color: white;
    }
    
    /* Floating animation */
    @keyframes float {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
        100% { transform: translateY(0px); }
    }
    
    .product-card:hover {
        animation: float 3s ease-in-out infinite;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .page-title {
            font-size: 2rem;
        }
        
        .products-grid {
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 1.5rem;
        }
    }
    
    @media (max-width: 480px) {
        .products-grid {
            grid-template-columns: 1fr 1fr;
            gap:2px
        }
    }
    
    /* Special hover effect for product types */
    #product-type:hover {
        background: rgba(253, 121, 168, 0.05);
    }
    
    #product-type:hover::before {
        background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
    }
    
    #product-type .view-now-btn {
        background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
        box-shadow: 0 4px 15px rgba(253, 121, 168, 0.3);
    }
    
    #product-type:hover .product-title {
        color: #fd79a8;
    }
    
    /* Floating particles background effect */
    .particles {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        overflow: hidden;
    }
    
    .particle {
        position: absolute;
        background: rgba(108, 92, 231, 0.2);
        border-radius: 50%;
        animation: float-particle 15s infinite linear;
    }
    
    @keyframes float-particle {
        0% {
            transform: translateY(0) translateX(0);
            opacity: 0;
        }
        10% {
            opacity: 1;
        }
        90% {
            opacity: 1;
        }
        100% {
            transform: translateY(-100vh) translateX(100px);
            opacity: 0;
        }
    }