/* Service Style Cards - Step 3 */

.service-style-card {
    background: rgba(58, 63, 68, 0.9);
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.service-style-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-style-card.selected {
    border-color: var(--primary-color);
    background: rgba(223, 105, 26, 0.1);
}

.style-icon {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
}

.style-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.style-description {
    font-size: 0.95rem;
    color: #e2e6ea;
    margin-bottom: 1.5rem;
}

.style-tag {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: auto;
    padding-top: 0.5rem;
}
