/* Start custom CSS for html, class: .elementor-element-ca72eef *//* ============================================================
   PENDELTÜR KONFIGURATOR – FINAL HIGH-END TECHNICAL CSS
   ============================================================ */

:root {
    --pk-teal: #0f6a7a;
    --pk-teal-dark: #0a4f5c;
    --pk-teal-light: #f0f7f8;
    --pk-border: #e0eaea;
    --pk-bg: #ffffff;
    --pk-text: #333333;
    --pk-text-light: #666666;
    --pk-text-muted: #999999;
    --pk-red: #e53e3e;
    --pk-green: #27ae60;
    --pk-orange: #d35400;
    --pk-shadow: 0 12px 40px rgba(0,0,0,0.08);
    --pk-radius: 16px;
    --pk-radius-sm: 10px;
    --pk-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --pk-font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

#pk-konfigurator {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    font-family: var(--pk-font);
    color: var(--pk-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* --- STEPPER NAVIGATION --- */
.pk-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 35px;
    padding: 0 10px;
    position: relative;
}

.pk-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    cursor: pointer;
    z-index: 1;
}

.pk-step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 18px;
    left: calc(50% + 20px);
    width: calc(100% - 40px);
    height: 3px;
    background: var(--pk-border);
    transition: background var(--pk-transition);
}

.pk-step-item.pk-done:not(:last-child)::after {
    background: var(--pk-teal);
}

.pk-step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--pk-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    color: var(--pk-text-muted);
    transition: all var(--pk-transition);
    position: relative;
    z-index: 2;
}

.pk-step-item.pk-active .pk-step-circle {
    border-color: var(--pk-teal);
    background: var(--pk-teal);
    color: #fff;
    box-shadow: 0 0 0 6px rgba(15,106,122,0.15);
}

.pk-step-item.pk-done .pk-step-circle {
    border-color: var(--pk-teal);
    background: var(--pk-teal);
    color: #fff;
}

.pk-step-label {
    margin-top: 8px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--pk-text-muted);
    text-align: center;
    transition: color var(--pk-transition);
    white-space: nowrap;
}

.pk-step-item.pk-active .pk-step-label,
.pk-step-item.pk-done .pk-step-label {
    color: var(--pk-teal);
}

/* --- MAIN LAYOUT (WITH PREVIEW) --- */
.pk-main-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 25px;
    align-items: start;
}

.pk-preview-card {
    order: 2;
}

.pk-card {
    order: 1;
}

/* --- CARD CONTAINER --- */
.pk-card {
    background: var(--pk-bg);
    border: 1px solid var(--pk-border);
    border-radius: var(--pk-radius);
    padding: 35px;
    box-shadow: var(--pk-shadow);
    position: relative;
    overflow: hidden;
    min-height: 550px;
}

/* --- LIVE PREVIEW PANEL --- */
.pk-preview-card {
    background: #fff;
    border: 1px solid var(--pk-border);
    border-radius: var(--pk-radius);
    padding: 20px;
    box-shadow: var(--pk-shadow);
    position: sticky;
    top: 20px;
    text-align: center;
}

.pk-preview-title {
    font-size: 11px;
    font-weight: 800;
    color: var(--pk-teal);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--pk-border);
}

.pk-preview-svg-wrap {
    width: 100%;
    aspect-ratio: 3/4;
    background: #fcfdfd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border: 1px dashed #e0eaea;
}

.pk-preview-svg-wrap {
    position: relative;
}

.pk-preview-svg-wrap svg {
    width: 85%;
    height: 85%;
}

.pk-preview-status {
    text-align: left;
    font-size: 11px;
    color: var(--pk-text-light);
}

.pk-status-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid #f4f7f7;
}

.pk-status-row strong {
    color: var(--pk-teal);
    text-align: right;
    padding-left: 10px;
}

/* --- MOTIV LABEL --- */
.pk-motiv-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(15, 106, 122, 0.95);
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    pointer-events: none;
    z-index: 10;
    display: none;
}

.pk-motiv-label.pk-visible {
    display: block;
}

/* --- BREADCRUMBS (SUB-STEPS) --- */
.pk-breadcrumbs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pk-bc-item {
    color: var(--pk-text-muted);
    cursor: pointer;
    transition: color 0.2s;
}

.pk-bc-item.pk-active {
    color: var(--pk-teal);
}

.pk-bc-item:not(:last-child)::after {
    content: '>';
    margin-left: 8px;
    color: var(--pk-border);
}

.pk-bc-item:hover:not(.pk-active) {
    color: var(--pk-text-light);
}

/* --- STEP PANELS --- */
.pk-panel {
    display: none;
    animation: pkFadeSlideIn 0.4s ease-out;
}

.pk-panel.pk-panel-active {
    display: block;
}

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

/* --- SUB-STEP ANIMATIONS --- */
.pk-sub-step {
    display: none;
}

.pk-sub-step.pk-active {
    display: block;
    animation: pkSubStepIn 0.4s ease-out;
}

@keyframes pkSubStepIn {
    from { opacity: 0; transform: translateX(15px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Flash Effect */
.pk-flash-effect {
    animation: pkFlash 0.5s ease-out;
}

@keyframes pkFlash {
    0% { background-color: transparent; }
    30% { background-color: rgba(15,106,122,0.1); }
    100% { background-color: transparent; }
}

/* --- SECTION HEADER --- */
.pk-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.pk-badge-num {
    background: var(--pk-teal);
    color: #fff;
    padding: 3px 14px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 12px;
}

.pk-badge-label {
    color: var(--pk-teal);
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pk-section-title {
    font-size: 22px;
    font-weight: 900;
    color: var(--pk-teal);
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
}

.pk-section-title span {
    color: var(--pk-text);
}

/* --- INFO BOX --- */
.pk-info-box {
    background: var(--pk-teal-light);
    border-left: 4px solid var(--pk-teal);
    padding: 14px 20px;
    border-radius: 4px 12px 12px 4px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 30px;
    font-size: 13px;
    color: var(--pk-text-light);
    line-height: 1.5;
}

.pk-info-icon {
    background: var(--pk-teal);
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* --- FORM ELEMENTS --- */
.pk-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 10px;
}

.pk-label {
    display: block;
    font-weight: 800;
    color: var(--pk-teal);
    font-size: 10px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pk-input {
    width: 100%;
    border: 2px solid var(--pk-border);
    border-radius: var(--pk-radius-sm);
    padding: 10px 12px;
    font-size: 14px;
    font-family: var(--pk-font);
    transition: all var(--pk-transition);
    background: #fff;
}

.pk-input:focus {
    border-color: var(--pk-teal);
    outline: none;
    background: var(--pk-teal-light);
}

/* --- OPTION CARDS --- */
.pk-options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 10px;
}

.pk-options-grid-2 { grid-template-columns: 1fr 1fr; }
.pk-options-grid-3 { grid-template-columns: repeat(3, 1fr); }

.pk-option-card { position: relative; cursor: pointer; }
.pk-option-card input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }

.pk-option-box {
    border: 2px solid var(--pk-border);
    border-radius: var(--pk-radius);
    padding: 15px 10px;
    text-align: center;
    transition: all var(--pk-transition);
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.pk-option-card input:checked + .pk-option-box {
    border-color: var(--pk-teal);
    background: var(--pk-teal-light);
}

.pk-option-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 5px;
}

.pk-option-title { font-weight: 800; color: var(--pk-teal); font-size: 12px; }
.pk-option-sub { font-size: 9px; color: var(--pk-text-muted); }

/* --- IMAGE OPTION CARDS --- */
.pk-img-option {
    border: 2px solid var(--pk-border);
    border-radius: var(--pk-radius);
    overflow: hidden;
    transition: all var(--pk-transition);
    background: #fff;
    height: 100%;
}

.pk-option-card input:checked + .pk-img-option {
    border-color: var(--pk-teal);
    background: var(--pk-teal-light);
}

.pk-img-wrap { width: 100%; aspect-ratio: 1.2; overflow: hidden; }
.pk-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.pk-img-info { padding: 10px; text-align: center; }
.pk-img-info strong { display: block; color: var(--pk-teal); font-size: 12px; }

/* --- HARDWARE PRODUCT CARD --- */
.pk-hw-card {
    border: 2px solid var(--pk-border);
    border-radius: var(--pk-radius);
    padding: 15px;
    text-align: center;
    transition: all var(--pk-transition);
    background: #fff;
}

.pk-option-card input:checked + .pk-hw-card {
    border-color: var(--pk-teal);
    background: var(--pk-teal-light);
}

.pk-hw-img { height: 60px; margin-bottom: 10px; display: flex; align-items: center; justify-content: center; }
.pk-hw-img img { max-height: 100%; width: auto; }
.pk-hw-card strong { display: block; font-size: 11px; color: var(--pk-teal); }

/* --- BLACK EDITION INFO --- */
.pk-black-info {
    background: var(--pk-teal-light);
    border-left: 4px solid var(--pk-teal);
    padding: 14px 18px;
    margin-top: 20px;
    border-radius: 4px 10px 10px 4px;
    font-size: 12px;
    color: var(--pk-text-light);
}

/* --- SUMMARY TABLE --- */
.pk-summary-wrap {
    border: 1px solid var(--pk-border);
    border-radius: var(--pk-radius-sm);
    overflow: hidden;
    margin-bottom: 20px;
}

.pk-summary-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.pk-summary-table thead th { background: var(--pk-teal); color: #fff; padding: 10px; text-align: left; font-size: 10px; text-transform: uppercase; }
.pk-summary-table td { padding: 8px 12px; border-bottom: 1px solid #f4f7f7; }
.pk-summary-table td:first-child { font-weight: 700; width: 40%; }

/* --- NAVIGATION BUTTONS --- */
.pk-nav-row { display: flex; justify-content: space-between; align-items: center; margin-top: 25px; gap: 15px; }
.pk-btn { padding: 10px 25px; border-radius: 50px; font-weight: 800; font-size: 12px; cursor: pointer; transition: all var(--pk-transition); border: none; font-family: var(--pk-font); }
.pk-btn-back { background: #f0f0f0; color: var(--pk-text-light); }
.pk-btn-next { background: var(--pk-teal); color: #fff; }
.pk-btn-submit { background: var(--pk-teal); color: #fff; padding: 14px; width: 100%; font-size: 14px; border-radius: 50px; margin-top: 15px; }

/* --- SUCCESS OVERLAY --- */
.pk-success-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15,106,122,0.95); z-index: 99999; align-items: center; justify-content: center; }
.pk-success-overlay.pk-visible { display: flex; }
.pk-success-card { background: #fff; padding: 40px; border-radius: 20px; text-align: center; max-width: 400px; }

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .pk-main-layout { grid-template-columns: 1fr; }
    .pk-preview-card { position: relative; top: 0; margin-bottom: 20px; order: 2; margin-top: 30px; }
    .pk-card { order: 1; }
    .pk-preview-svg-wrap { aspect-ratio: 16/9; }
}

@media (max-width: 600px) {
    .pk-card { padding: 20px; }
    .pk-options-grid { grid-template-columns: 1fr 1fr; }
    .pk-form-grid { grid-template-columns: 1fr; }
}/* End custom CSS */