.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.category-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.category-count {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: white;
    font-size: 0.8rem;
}

.explore-btn {
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.explore-btn:hover {
    background: white;
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .diamond-category {
        width: 200px;
        height: 200px;
    }
    
    .category-title {
        font-size: 1.2rem;
    }
}
.kaleidoscope-category {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 30px;
    aspect-ratio: 1;
}

.kaleidoscope-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.kaleidoscope-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    transform: scale(0) rotate(45deg);
    transition: all 0.5s ease;
}

.kaleidoscope-category:hover .kaleidoscope-overlay {
    transform: scale(1.5) rotate(45deg);
}