.wsc-configurator {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.wsc-step {
    display: none;
}

.wsc-step.active {
    display: block;
}

.wsc-form-group {
    margin-bottom: 15px;
}

.wsc-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.wsc-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.wsc-input.error {
    border-color: #dc3545;
    background-color: #f8d7da;
}

.wsc-product-display {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.wsc-product-image {
    flex-shrink: 0;
}

.wsc-product-image img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.wsc-product-info {
    flex: 1;
}

.wsc-product-info h4 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 18px;
}

.wsc-product-info p {
    margin: 0 0 15px 0;
    color: #666;
    line-height: 1.5;
}

.wsc-product-features h5 {
    margin: 15px 0 10px 0;
    color: #333;
    font-size: 14px;
    font-weight: bold;
}

.wsc-product-features ul {
    margin: 0;
    padding-left: 20px;
}

.wsc-product-features li {
    margin-bottom: 5px;
    color: #555;
}

.wsc-notice {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f8f9fa;
}

.wsc-notice-warning {
    border-color: #ffc107;
    background-color: #fff3cd;
    color: #856404;
}

.wsc-notice strong {
    display: block;
    margin-bottom: 5px;
}

.wsc-notice code {
    background-color: #e9ecef;
    padding: 2px 4px;
    border-radius: 3px;
    font-family: monospace;
}

.wsc-btn {
    padding: 10px 20px;
    background-color: #007cba;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 10px;
}

.wsc-btn:hover {
    background-color: #005a87;
}

.wsc-btn-primary {
    background-color: #28a745;
}

.wsc-btn-primary:hover {
    background-color: #1e7e34;
}

.wsc-navigation {
    margin-top: 20px;
    text-align: center;
}

.wsc-results {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.wsc-warning {
    color: #dc3545;
    font-weight: bold;
}

.wsc-success {
    color: #28a745;
    font-weight: bold;
}

.wsc-messages {
    margin-top: 20px;
}

.wsc-message {
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.wsc-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.wsc-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* WooCommerce Integration Styles */
.show_if_configurable {
    display: none;
}

.show_if_configurable.show {
    display: block !important;
}

/* Product display responsive */
@media (max-width: 768px) {
    .wsc-configurator {
        padding: 10px;
    }

    .wsc-btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .wsc-product-display {
        flex-direction: column;
        gap: 15px;
    }

    .wsc-product-image img {
        width: 100%;
        height: 120px;
    }

    .wsc-product-info h4 {
        font-size: 16px;
    }
}