.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;
    }
}
.morph-category {
    position: relative;
    margin-bottom: 30px;
    aspect-ratio: 1;
    padding: 20px;
}

.morph-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transition: all 0.5s ease;
}

.morph-category:hover .morph-inner {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
}

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

.morph-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease;
}

.morph-category:hover .morph-overlay {
    opacity: 1;
}