.event-category-selector {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.category-title {
    font-size: 20px;
    font-weight: 700;
    color: #2B2B2B;
    margin-bottom: 0.25rem;
    text-align: center;
    font-family: 'Didot', serif;
}

.category-subtitle {
    font-size: 13px;
    color: #6b7280;
    text-align: center;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.category-groups {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.category-group {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid #e5e7eb;
}

.category-group-title {
    font-size: 14px;
    font-weight: 700;
    color: #90684A;
    margin-bottom: 0.75rem;
    padding-bottom: 0.375rem;
    border-bottom: 1.5px solid #CBBBA0;
}

.category-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.5rem;
}

.category-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: white;
}

.category-option:hover {
    background-color: rgba(203, 187, 160, 0.1);
    border-color: #CBBBA0;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.category-option.selected {
    background: linear-gradient(135deg, rgba(203, 187, 160, 0.2) 0%, rgba(203, 187, 160, 0.1) 100%);
    border-color: #90684A;
    border-width: 2px;
    box-shadow: 0 2px 8px rgba(144, 104, 74, 0.15);
}

.category-checkbox {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #90684A;
    font-size: 14px;
}

.category-option.selected .category-checkbox {
    color: #90684A;
}

.category-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f3f4f6;
    border-radius: 4px;
    color: #90684A;
    font-size: 14px;
    transition: all 0.2s ease;
}

.category-option.selected .category-icon {
    background: linear-gradient(135deg, #90684A 0%, #CBBBA0 100%);
    color: white;
    transform: scale(1.05);
}

.category-info {
    flex: 1;
    min-width: 0;
}

.category-name {
    font-weight: 500;
    font-size: 13px;
    color: #2B2B2B;
    cursor: pointer;
    line-height: 1.3;
}

.category-option.selected .category-name {
    font-weight: 600;
    color: #90684A;
}

.selected-categories-summary {
    margin-top: 1.5rem;
    padding: 0;
    background: transparent;
    color: #90684A;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Avenir Next', sans-serif;
}

.selected-categories-summary strong {
    font-size: 18px;
    font-weight: 700;
    color: #5B4636;
    margin-right: 0.5rem;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 1rem;
    color: #90684A;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Avenir Next', sans-serif;
}

.scroll-indicator-text {
    text-align: center;
}

.scroll-indicator-icon {
    animation: bounce 2s infinite;
    font-size: 20px;
    color: #90684A;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

@media (max-width: 768px) {
    .category-groups {
        grid-template-columns: 1fr;
    }
    
    .category-options {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .category-group {
        padding: 0.875rem;
    }

    .category-option {
        padding: 0.5rem;
    }

    .category-name {
        font-size: 12px;
    }
}
