.configurator-container {
    padding-top: 30px;
}

/* .progress-bar {
    width: 100%;
    height: 10px;
    background-color: #e0e0e0;
    margin-bottom: 30px;
} */

/* .progress-fill {
    height: 100%;
    background-color: #ee6035;
    width: 0%;
    transition: width 0.3s ease;
} */

.step {
    display: none;
    /* padding: 20px;
    margin-bottom: 20px; */
}

.step.active {
    display: block;
}

.step h2 {
    margin-bottom: 20px;
    color: #333;
}

/* .options-container {
    display: flex;
    margin-bottom: 20px;
}

.option-card {
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
} */

.options-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    margin-bottom: 20px;
    justify-content: center;
}

.option-card {
    background: #ffffff;
    border: 1px solid #f0f8ff;
    border-radius: 8px;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: 100%;
}

@media (max-width: 900px) {
    .options-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .options-container {
        grid-template-columns: 1fr;
    }
}

.option-card:hover {
    border-color: var(--slate-blue);
    /* box-shadow: 0 2px 8px rgba(0,123,255,0.2); */
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.2);
}

/* .option-card.selected {
    border-color: var(--base-color);
    background-color: #ffffff;
} */

.option-card.selected {
    box-shadow: 0 0 0 1px rgba(0, 123, 255, 0.2), 0 8px 24px rgba(0,0,0,0.12);
    background-color: #f0f8ff;
    transform: scale(1.01);
    transition: box-shadow 0.2s, background-color 0.2s, transform 0.2s;
    border-color: transparent;
}

.option-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 10px;
}

.option-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.option-description {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.option-price {
    font-weight: bold;
    color: var(--base-color);
    margin-top: auto;
}

.navigation-buttons {
    text-align: center;
    margin-top: 30px;
}

.navigation-buttons button {
    margin: 0 10px;
    padding: 10px 20px;
}

.selected-summary {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.selected-summary ul {
    list-style: none;
    padding: 0;
}

.selected-summary li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

#total-price {
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 15px;
    color: var(--base-color);
}

.btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-primary { background-color: #007bff; color: white; }
.btn-secondary { background-color: #6c757d; color: white; }
.btn-success { background-color: #28a745; color: white; }