
        
        .tagline {
            font-size: 1rem;
            color: #888;
            letter-spacing: 3px;
        }
        
        .divider {
            width: 60px;
            height: 2px;
            background: linear-gradient(to right, #d4a89c, #e6c9c0);
            margin: 0 auto 2rem;
        }
        
        .category-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
            height: 100%;
            padding: 14px 14px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            border: none;
            width: 100%;
        }
        
        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .category-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            overflow: hidden;
            background: #f8f9fa;
            padding: 15px;
        }
        
        .category-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
        .category-title,  .category-title a{
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 0.5rem;
            letter-spacing: 2px;
            color: #444;
        }
        
        .category-desc {
            font-size: 0.9rem;
            color: #888;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }
        
        .category-link {
            color: #d4a89c;
            text-decoration: none;
            font-size: 0.9rem;
            letter-spacing: 1px;
            display: inline-flex;
            align-items: center;
            transition: color 0.3s ease;
        }
        
        .category-link:hover {
            color: #c88a7b;
        }
        
        .category-link i {
            margin-left: 0.5rem;
            transition: transform 0.3s ease;
        }
        
        .category-link:hover i {
            transform: translateX(5px);
        }
        
        /* Individual category colors */
        .blush-bg {
            background: linear-gradient(135deg, #ffafbd 0%, #ffc3a0 100%);
        }
        
        .accessories-bg {
            background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
        }
        
        .lip-bg {
            background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
        }
        
        .cream-bg {
            background: linear-gradient(135deg, #fbc2eb 0%, #a6c1ee 100%);
        }
        
        .scrubs-bg {
            background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
        }
        
        .eyeshadow-bg {
            background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
        }