.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;
}

.shutter-category {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 30px;
    aspect-ratio: 1;
}

.shutter-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shutter-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;
}

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

.shutter-content {
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.shutter-category:hover .shutter-content {
    transform: translateY(0);
}
