/* WTS - Web Tasarım Simulator CSS - Çakışmasız class isimleri */
.wts-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.wts-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1200px;
    margin: 20px auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.wts-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.wts-header h1 {
    font-size: 2.2rem;
    margin-bottom: 8px;
    font-weight: 400;
}

.wts-header p {
    font-size: 1rem;
    opacity: 0.9;
}

.wts-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0;
    min-height: 600px;
}

.wts-form-section {
    padding: 30px;
    background: #fafafa;
}

.wts-price-section {
    background: #f8f9fa;
    padding: 30px;
    border-left: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    height: 100%;
}

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

.wts-form-group label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 1rem;
}

.wts-form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: white;
}

.wts-form-group select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

/* Slider Stilleri */
.wts-slider-container {
    position: relative;
    margin: 15px 0;
}

.wts-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #ddd;
    outline: none;
    transition: all 0.3s ease;
}

.wts-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #3498db;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
}

.wts-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 12px rgba(52, 152, 219, 0.5);
}

.wts-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #3498db;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
}

.wts-slider-value {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #2c3e50;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.wts-slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.8rem;
    color: #6c757d;
}

/* Radio Button Stilleri */
.wts-radio-group {
    display: flex;
    gap: 15px;
    margin-top: 8px;
}

.wts-radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 8px 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
}

.wts-radio-option:hover {
    border-color: #3498db;
    background: rgba(52, 152, 219, 0.05);
}

.wts-radio-option input[type="radio"] {
    margin-right: 6px;
    width: auto;
}

.wts-radio-option.wts-selected {
    border-color: #3498db;
    background: rgba(52, 152, 219, 0.1);
}

/* Toggle Switch Stilleri */
.wts-toggle-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 8px;
}

.wts-toggle-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.wts-toggle-item.wts-active {
    border-color: #27ae60;
    background: rgba(39, 174, 96, 0.05);
}

.wts-toggle-label {
    font-weight: 500;
    color: #2c3e50;
    flex: 1;
    font-size: 0.9rem;
}

.wts-toggle-price {
    font-size: 0.8rem;
    color: #7f8c8d;
    margin-left: 10px;
}

.wts-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 22px;
}

.wts-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.wts-switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 22px;
}

.wts-switch-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.wts-switch input:checked + .wts-switch-slider {
    background-color: #27ae60;
}

.wts-switch input:checked + .wts-switch-slider:before {
    transform: translateX(22px);
}

/* Paket Bilgi Kutusu */
.wts-package-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    text-align: center;
}

.wts-package-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.wts-package-desc {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Fiyat Bölümü */
.wts-price-display {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.wts-price-display h2 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 400;
}

.wts-total-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.wts-currency {
    font-size: 1rem;
    opacity: 0.9;
}

.wts-price-breakdown {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.wts-price-breakdown h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.wts-breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    padding: 8px 0;
    border-bottom: 1px solid #f8f9fa;
    font-size: 0.9rem;
}

.wts-breakdown-item:last-child {
    border-bottom: none;
    font-weight: 600;
    color: #e74c3c;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 2px solid #e9ecef;
}

.wts-breakdown-label {
    color: #2c3e50;
}

.wts-breakdown-value {
    color: #27ae60;
    font-weight: 500;
}

/* Teslim Süresi */
.wts-delivery-info {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    font-size: 0.9rem;
}

.wts-delivery-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.wts-delivery-time {
    color: #27ae60;
    font-weight: 500;
}

/* E-posta formu stilleri */
.wts-email-form {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 2px solid #e9ecef;
}

.wts-email-form h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
}

.wts-email-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.95rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.wts-email-input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.wts-email-input:invalid {
    border-color: #e74c3c;
}

.wts-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.wts-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.wts-submit-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.wts-loading {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .wts-content {
        grid-template-columns: 1fr;
    }

    .wts-price-section {
        border-left: none;
        border-top: 1px solid #e9ecef;
    }

    .wts-radio-group {
        flex-direction: column;
    }

    .wts-header h1 {
        font-size: 1.8rem;
    }
}