.wow-cost-estimator {
    font-family: inherit;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.wow-cost-estimator h2 {
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--wow-primary);
}

/* Services Grid */
.wow-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.wow-service-card {
    border: 2px solid var(--wow-secondary);
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    background: #fff;
    color: #333;
}

.wow-service-card:hover {
    border-color: var(--wow-primary);
    transform: translateY(-2px);
}

.wow-service-card.selected {
    border-color: var(--wow-primary);
    background-color: #f0f8ff; /* Fallback light background */
    box-shadow: 0 0 0 1px var(--wow-primary);
}

.wow-service-card h4 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    color: inherit;
}

.wow-service-card p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

/* Form Styles */
.wow-form-group {
    margin-bottom: 20px;
}

.wow-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.wow-form-group input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
}

.wow-form-group input:focus {
    outline: none;
    border-color: var(--wow-primary);
}

/* Buttons */
.wow-btn {
    background-color: var(--wow-primary);
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: opacity 0.2s ease;
    display: inline-block;
    margin-right: 10px;
}

.wow-btn:hover {
    opacity: 0.9;
}

.wow-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.wow-btn-secondary {
    background-color: var(--wow-secondary);
}

/* Estimate Results */
.wow-estimate-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.wow-estimate-total {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--wow-primary);
    border-top: 2px solid var(--wow-secondary);
    margin-top: 10px;
}

/* Sidebar Layout for Step 1 */
.wow-sidebar-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 80px; /* space for sticky footer */
}
@media(min-width: 768px) {
    .wow-sidebar-layout {
        flex-direction: row;
    }
}
.wow-sidebar {
    flex: 0 0 250px;
    border-right: 1px solid #eee;
    padding-right: 20px;
    position: sticky;
    top: 20px;
    align-self: flex-start;
}
.wow-sidebar-item {
    padding: 12px 15px;
    margin-bottom: 5px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
    font-weight: 500;
    position: relative;
}
.wow-sidebar-item:hover {
    background-color: #f8f9fa;
}
.wow-sidebar-item.active {
    background-color: var(--wow-primary);
    color: #fff;
}
.wow-sidebar-item.wow-has-selection::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #28a745;
    border-radius: 50%;
}
.wow-sidebar-item.active.wow-has-selection::after {
    background-color: #fff;
}

.wow-content {
    flex: 1;
}

/* Radio Card Styles */
.wow-radio-card {
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 15px;
}
.wow-radio-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #ccc;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
    transition: all 0.2s;
}
.wow-radio-card.selected .wow-radio-indicator {
    border-color: var(--wow-primary);
}
.wow-radio-card.selected .wow-radio-indicator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: var(--wow-primary);
    border-radius: 50%;
}
.wow-card-content {
    flex: 1;
}

/* Sticky Footer */
.wow-sticky-footer {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #eee;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.05);
    border-radius: 0 0 12px 12px;
    z-index: 10;
}
.wow-total-wrapper {
    font-size: 1.1rem;
}
.wow-total-wrapper strong {
    font-size: 1.4rem;
    color: var(--wow-primary);
    margin-left: 10px;
}

/* Doodle Toasts */
.wow-doodle-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #fff;
    border-left: 5px solid var(--wow-primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 20px 20px 15px;
    border-radius: 8px;
    z-index: 9999;
    transform: translateX(120%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 320px;
    font-family: inherit;
}
.wow-doodle-toast.show {
    transform: translateX(0);
}
.wow-doodle-icon {
    font-size: 24px;
    position: absolute;
    top: -15px;
    left: -15px;
    background: #fff;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.wow-doodle-toast h4 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    color: var(--wow-primary);
}
.wow-doodle-toast p {
    margin: 0 0 15px 0;
    font-size: 0.9rem;
    color: #555;
}
.wow-doodle-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}
.wow-btn-add-doodle {
    padding: 6px 12px;
    font-size: 0.85rem;
    margin: 0;
}
.wow-btn-close-doodle {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #999;
    text-decoration: underline;
    font-size: 0.85rem;
    padding: 0;
}
.wow-btn-close-doodle:hover {
    color: #333;
}
