.sps-survey-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.sps-logo {
    text-align: center;
    font-size: 24px;
    font-weight: 300;
    color: #333;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.sps-logo::before {
    content: "◻ ";
    font-size: 28px;
}

.sps-header {
    text-align: center;
    margin-bottom: 40px;
}

.sps-header h1 {
    font-size: 32px;
    font-weight: 300;
    color: #333;
    margin-bottom: 10px;
}

.sps-header p {
    font-size: 16px;
    color: #666;
}

.sps-comparison-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    min-height: 400px;
}

.sps-style-option {
    flex: 1;
    max-width: 450px;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.sps-style-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.sps-style-option img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.sps-style-option.selected {
    box-shadow: 0 0 0 4px #d4af37;
}

.sps-style-description {
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
    color: #666;
    min-height: 40px;
}

.sps-or-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.sps-or-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #999;
    font-weight: 500;
}

.sps-neither-btn {
    background: none;
    border: none;
    color: #999;
    font-size: 14px;
    text-decoration: underline;
    cursor: pointer;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

.sps-neither-btn:hover {
    color: #666;
}

.sps-progress-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 40px 0;
}

.sps-progress-dot {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #ddd;
    background: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.sps-progress-dot.completed {
    border-color: #d4af37;
}

.sps-progress-dot.active {
    border-color: #d4af37;
    transform: scale(1.1);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

.sps-progress-dot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sps-progress-dot.completed img {
    opacity: 1;
}

.sps-progress-dot:hover {
    transform: scale(1.15);
}

/* Popup Styles */
.sps-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 999999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.sps-popup-overlay.show {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.sps-popup-content {
    background: white;
    border-radius: 10px;
    padding: 40px;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.sps-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    color: #999;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.sps-popup-close:hover {
    color: #333;
}

.sps-popup-header {
    text-align: center;
    margin-bottom: 30px;
}

.sps-popup-header h2 {
    font-size: 28px;
    font-weight: 300;
    color: #333;
    margin-bottom: 10px;
}

.sps-popup-header p {
    color: #666;
    font-size: 16px;
}

.sps-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.sps-result-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.sps-result-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.sps-result-info {
    padding: 15px;
    background: #f9f9f9;
}

.sps-result-info h3 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.sps-result-info p {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.sps-no-selection {
    text-align: center;
    padding: 40px;
    color: #999;
}

/* Results Text Style */
.sps-results-text {
    padding: 10px 0;
}

.sps-style-item {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

.sps-style-name {
    font-weight: 700;
    color: #333;
}

.sps-style-desc {
    color: #666;
}

/* Email Notice */
.sps-email-notice {
    margin-top: 25px;
    text-align: center;
    padding: 15px;
    background: #e8f5e9;
    border-radius: 8px;
    border: 1px solid #c8e6c9;
}

.sps-email-notice p {
    margin: 0;
    color: #2e7d32;
    font-size: 14px;
    font-weight: 500;
}

/* Email Popup Styles */
.sps-email-popup {
    max-width: 600px;
    text-align: center;
}

.sps-email-popup-header h2 {
    font-size: 32px;
    font-weight: 300;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.sps-email-subtitle {
    color: #888;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.sps-email-form-container {
    margin-top: 30px;
}

.sps-email-instruction {
    color: #333;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 500;
}

.sps-email-input {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.sps-email-input:focus {
    outline: none;
    border-color: #d4af37;
}

.sps-email-input::placeholder {
    color: #aaa;
}

.sps-email-submit-btn {
    width: 100%;
    padding: 18px;
    background: #d4af37;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.sps-email-submit-btn:hover {
    background: #c09d2f;
}

.sps-email-submit-btn:active {
    transform: scale(0.98);
}

@media (max-width: 768px) {
    .sps-comparison-container {
        flex-direction: column;
    }

    .sps-style-option {
        max-width: 100%;
    }

    .sps-or-divider {
        flex-direction: row;
    }

    .sps-results-grid {
        grid-template-columns: 1fr;
    }

    .sps-popup-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .sps-survey-container {
        padding: 20px;
    }
}
