:root {
    --primary: #f25239;
    --primary-dark: #d4432b;
    --gray: #f5f5f5;
    --border: #ddd;
    --text-dark: #333;
    --text-muted: #666;
    --transition: all 0.3s ease;
}

#booking-wizard {
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Segoe UI', sans-serif;
    animation: fadeIn 0.6s ease-in;
    position: relative;
}

#booking-wizard.bkntc-flow-iframe {
    max-width: none;
    margin: 0;
    padding: 10px;
}

#booking-wizard.bkntc-flow-iframe #powered-by {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wizard-step {
    display: none;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.wizard-step.active {
    display: block;
}

.wizard-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.wizard-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    width: 250px;
    transition: var(--transition);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.04);
    position: relative;
}

.wizard-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(242, 82, 57, 0.15);
}

.wizard-card.selected {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(242, 82, 57, 0.3);
}

.wizard-card img {
    max-width: 100px;
    height: auto;
    margin-bottom: 12px;
}

.wizard-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-dark);
}

.wizard-step-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 10px;
}

.card-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin: 10px 0;
}

.card-price {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary);
    margin: 8px 0 10px;
}

.ceramic-price,
.icon-price {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary);
}

.toggle-learn {
    margin-top: 8px;
    padding: 4px 8px;
    background: transparent;
    border: 1px solid #999;
    font-size: 13px;
    cursor: pointer;
    border-radius: 6px;
    transition: var(--transition);
    user-select: none;
}

.toggle-learn:hover {
    background: var(--gray);
}

.learn-more {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 10px;
    margin-top: 10px;
}

.learn-more p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0 0 10px;
}

.learn-more a {
    font-size: 12px;
}

.summary-box strong,
.summary-selected-label {
    font-weight: 800;
}

.svc-price {
    display: inline-block;
    font-weight: 700;
    font-size: 18px;
    color: var(--primary);
    margin-top: 8px;
}

.learn-more.show {
    max-height: 200px;
    padding: 10px;
}

.wizard-nav {
    margin-top: 30px;
}

.wizard-nav button,
#continue-booking {
    padding: 12px 24px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.wizard-nav button:hover,
#continue-booking:hover {
    background: var(--primary-dark);
}

#powered-by {
    margin-top: 50px;
    text-align: center;
    font-size: 13px;
    color: #999;
}

#powered-by a {
    color: var(--primary);
    text-decoration: none;
    font-weight: bold;
}

@media (max-width: 768px) {
    .wizard-card {
        width: 90%;
    }
}

#wizard-progress {
    display: flex;
    justify-content: space-between;
    margin: 30px auto 10px;
    padding: 0 10px;
    max-width: 600px;
}

.progress-step {
    flex: 1;
    text-align: center;
    font-size: 14px;
    color: #ccc;
    position: relative;
    font-weight: 600;
}

.progress-step::before {
    content: "";
    display: block;
    height: 6px;
    width: 100%;
    background-color: #eee;
    border-radius: 4px;
    margin-bottom: 8px;
    transition: background-color 0.3s ease;
}

.progress-step.active {
    color: #f25239;
}

.progress-step.active::before {
    background-color: #f25239;
}

.summary-text {
    font-size: 16px;
    color: var(--text-muted);
    margin-top: 10px;
}

.summary-box {
    background: #fff7f5;
    border-left: 4px solid var(--primary);
    padding: 16px;
    margin: 20px 0;
    text-align: left;
    border-radius: 8px;
    font-size: 15px;
    color: var(--text-dark);
}
