/* Single Product Customizer Welcome Page Styling */

.sppcfw-welcome {
    max-width: 800px;
    margin: 20px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.sppcfw-header {
    background: linear-gradient(135deg, #040C47 0%, #1a237e 100%);
    color: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.sppcfw-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0073aa, #00a0d2);
}

.sppcfw-header h1 {
    font-size: 2.3em;
    margin: 0 0 10px 0;
    font-weight: 600;
    line-height: 1.3;
}

.sppcfw-header p {
    font-size: 1.2em;
    opacity: 0.9;
    margin: 0;
}

.sppcfw-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #e1e1e1;
}

.sppcfw-form-group {
    margin-bottom: 25px;
}

.sppcfw-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #23282d;
    font-size: 14px;
}

.sppcfw-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e1e1;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.sppcfw-input:focus {
    border-color: #0073aa;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
    outline: none;
}

.sppcfw-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.sppcfw-btn {
    flex: 1;
    padding: 15px 12px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.sppcfw-btn-primary {
    background: linear-gradient(135deg, #0073aa 0%, #00a0d2 100%);
    color: white;
}

.sppcfw-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 115, 170, 0.4);
}

.sppcfw-btn-secondary {
    background: #f8f9fa;
    color: #6c757d;
    border: 2px solid #e1e1e1;
}

.sppcfw-btn-secondary:hover {
    background: #e9ecef;
    border-color: #6c757d;
}

.sppcfw-btn-dashboard {
    background: #040C47;
    color: white;
}

.sppcfw-btn-dashboard:hover {
    background: #1a237e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(4, 12, 71, 0.4);
}

.webcartisan-another-plugins {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e1e1e1;
}

.sppcfw-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.sppcfw-feature {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #0073aa;
    transition: all 0.3s ease;
}

.sppcfw-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sppcfw-feature h3 {
    margin: 0 0 10px 0;
    color: #23282d;
    font-size: 1.1em;
}

.sppcfw-feature p {
    margin: 0;
    color: #6c757d;
    font-size: 14px;
    line-height: 1.5;
}

.sppcfw-section-title {
    color: #040C47;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .sppcfw-buttons {
        flex-direction: column;
    }
    .sppcfw-header, .sppcfw-content {
        padding: 30px 20px;
    }
    .sppcfw-features {
        grid-template-columns: 1fr;
    }
}
