/* Headshot Types Selection Styles - List-Based Design */

.headshot-types-selection {
    width: 100%;
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.headshot-types-selection h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    text-align: center;
}

.selection-subtitle {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

/* Category Sections */
.headshot-category {
    margin-bottom: 2.5rem;
}

.headshot-category:last-child {
    margin-bottom: 0;
}

.headshot-category h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.headshot-category h4 i {
    color: #4f46e5;
}

/* List Container */
.headshot-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* List Item Styling */
.headshot-type-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: #fafafa;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.headshot-type-item:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.headshot-type-item.active {
    background: #4f46e5;
    border-color: #4f46e5;
    color: #ffffff;
}

.headshot-type-item.active .type-name,
.headshot-type-item.active .type-desc {
    color: #ffffff;
}

.headshot-type-item.active .type-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.headshot-type-item.active .type-selector i {
    color: #ffffff;
    opacity: 1;
}

/* Icon */
.type-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 10px;
    font-size: 1.25rem;
    color: #4f46e5;
    transition: all 0.2s ease;
}

/* Content */
.type-info {
    flex: 1;
    min-width: 0;
}

.type-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.type-desc {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.4;
}

/* Selector */
.type-selector {
    flex-shrink: 0;
    font-size: 1.5rem;
    color: #e5e5e5;
    transition: all 0.2s ease;
}

.headshot-type-item.active .type-selector {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .headshot-types-selection {
        padding: 1.5rem;
        margin: 1rem auto;
    }

    .headshot-types-selection h3 {
        font-size: 1.5rem;
    }

    .headshot-category h4 {
        font-size: 1.1rem;
    }

    .headshot-type-item {
        padding: 0.875rem 1rem;
        gap: 0.75rem;
    }

    .type-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .type-name {
        font-size: 0.95rem;
    }

    .type-desc {
        font-size: 0.8rem;
    }

    .type-selector {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .headshot-types-selection {
        padding: 1rem;
        border-radius: 12px;
    }

    .headshot-types-selection h3 {
        font-size: 1.25rem;
    }

    .selection-subtitle {
        font-size: 0.85rem;
    }

    .headshot-type-item {
        padding: 0.75rem;
        gap: 0.6rem;
    }

    .type-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .type-name {
        font-size: 0.9rem;
    }

    .type-desc {
        font-size: 0.75rem;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.headshot-types-selection {
    animation: fadeIn 0.3s ease;
}

.headshot-type-item {
    animation: fadeIn 0.3s ease backwards;
}

.headshot-type-item:nth-child(1) { animation-delay: 0.05s; }
.headshot-type-item:nth-child(2) { animation-delay: 0.1s; }
.headshot-type-item:nth-child(3) { animation-delay: 0.15s; }
.headshot-type-item:nth-child(4) { animation-delay: 0.2s; }
.headshot-type-item:nth-child(5) { animation-delay: 0.25s; }
.headshot-type-item:nth-child(6) { animation-delay: 0.3s; }
.headshot-type-item:nth-child(7) { animation-delay: 0.35s; }
.headshot-type-item:nth-child(8) { animation-delay: 0.4s; }
.headshot-type-item:nth-child(9) { animation-delay: 0.45s; }
.headshot-type-item:nth-child(10) { animation-delay: 0.5s; }
