/* Start custom CSS for html, class: .elementor-element-a764ea6 *//* ============================================================
   PENDELTÜR KONFIGURATOR – MOBILE-FIRST RESPONSIVE 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;
}

/* ========== BASE / MOBILE FIRST (< 480px) ========== */

#pk-konfigurator {
    max-width: 100%;
    margin: 0;
    padding: 0px;
    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: 16px;
    padding: 0 4px;
    position: relative;
    flex-wrap: wrap;
}

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

.pk-step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 14px;
    left: calc(50% + 16px);
    width: calc(100% - 32px);
    height: 2px;
    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: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--pk-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 11px;
    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 4px 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: 4px;
    font-size: 7px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--pk-text-muted);
    text-align: center;
    transition: color var(--pk-transition);
    white-space: nowrap;
    line-height: 1.2;
}

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

/* --- MAIN LAYOUT --- */
.pk-main-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
}

.pk-preview-card {
    order: 2;
    width: 100%;
}

.pk-card {
    order: 1;
    width: 100%;
}

/* --- CARD CONTAINER --- */
.pk-card {
    background: var(--pk-bg);
    border: 1px solid var(--pk-border);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    min-height: auto;
}

/* --- LIVE PREVIEW PANEL --- */
.pk-preview-card {
    background: #fff;
    border: 1px solid var(--pk-border);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    position: relative;
    top: 0;
    text-align: center;
}

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

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

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

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

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

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

/* --- 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: 4px 8px;
    border-radius: 3px;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
    pointer-events: none;
    z-index: 10;
    display: none;
}

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

/* --- BREADCRUMBS --- */
.pk-breadcrumbs {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    flex-wrap: wrap;
}

.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: 4px;
    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(8px); }
    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(12px); }
    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: 6px;
    margin-bottom: 6px;
}

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

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

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

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

/* --- INFO BOX --- */
.pk-info-box {
    background: var(--pk-teal-light);
    border-left: 3px solid var(--pk-teal);
    padding: 10px 12px;
    border-radius: 3px 8px 8px 3px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 11px;
    color: var(--pk-text-light);
    line-height: 1.4;
}

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

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

.pk-form-group {
    position: relative;
}

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

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

.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: 1fr 1fr;
    gap: 6px;
    margin-bottom: 8px;
}

.pk-options-grid-2 { grid-template-columns: 1fr 1fr; }
.pk-options-grid-3 { grid-template-columns: 1fr 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: 10px;
    padding: 10px 6px;
    text-align: center;
    transition: all var(--pk-transition);
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

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

.pk-option-icon {
    width: 130px;
    height: 130px;
    margin-bottom: 3px;
}

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

/* --- IMAGE OPTION CARDS --- */
.pk-img-option {
    border: 2px solid var(--pk-border);
    border-radius: 10px;
    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: contain; 
    object-position: center;
    display: block; }
.pk-img-info { padding: 8px; text-align: center; }
.pk-img-info strong { display: block; color: var(--pk-teal); font-size: 10px; }

/* --- HARDWARE PRODUCT CARD --- */
.pk-hw-card {
    border: 2px solid var(--pk-border);
    border-radius: 10px;
    padding: 10px;
    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: 150px; margin-bottom: 6px; 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: 10px; color: var(--pk-teal); }

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

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

.cms-description .pk-summary-table { width: 100%; border-collapse: collapse; font-size: 11px; }
.cms-description .pk-summary-table thead th { background: var(--pk-teal); color: #fff; padding: 8px; text-align: left; font-size: 9px; text-transform: uppercase; }
.cms-description .pk-summary-table td { padding: 6px 8px; border-bottom: 1px solid #f4f7f7; }
.cms-description .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: 14px; 
    gap: 8px;
    flex-wrap: wrap;
}

.pk-btn { 
    padding: 8px 16px; 
    border-radius: 50px; 
    font-weight: 800; 
    font-size: 11px; 
    cursor: pointer; 
    transition: all var(--pk-transition); 
    border: none; 
    font-family: var(--pk-font);
    flex: 1;
    min-width: 100px;
}

.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: 10px; width: 100%; font-size: 12px; border-radius: 50px; margin-top: 10px; flex: none; }

/* --- 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; padding: 20px; }
.pk-success-overlay.pk-visible { display: flex; }
.pk-success-card { background: #fff; padding: 24px; border-radius: 16px; text-align: center; max-width: 90%; }

/* --- INPUT VALIDATION STYLES --- */
.pk-input-hint {
    display: block;
    font-size: 9px;
    margin-top: 3px;
    min-height: 14px;
    color: var(--pk-text-muted);
    transition: all 0.2s;
}

.pk-hint-error {
    color: var(--pk-red);
    font-weight: 700;
}

.pk-hint-valid {
    color: var(--pk-green);
    font-weight: 700;
}

.pk-input-error {
    border-color: var(--pk-red) !important;
    background: rgba(229, 62, 62, 0.05) !important;
}

.pk-input-valid {
    border-color: var(--pk-green) !important;
    background: rgba(39, 174, 96, 0.05) !important;
}

.pk-input:focus.pk-input-error {
    background: rgba(229, 62, 62, 0.1) !important;
}

.pk-input:focus.pk-input-valid {
    background: rgba(39, 174, 96, 0.1) !important;
}

/* --- ERROR BOX --- */
.pk-error-box {
    display: none;
    background: rgba(229, 62, 62, 0.1);
    border: 1px solid var(--pk-red);
    color: var(--pk-red);
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 11px;
    font-weight: 700;
}

.pk-divider {
    height: 1px;
    background: var(--pk-border);
    margin: 12px 0;
}

/* ========== TABLET SMALL (480px - 576px) ========== */
@media (min-width: 480px) {
    #pk-konfigurator {
        padding: 10px;
    }

    .pk-stepper {
        margin-bottom: 18px;
        padding: 0 6px;
    }

    .pk-step-circle {
        width: 30px;
        height: 30px;
        font-size: 12px;
        border-width: 2px;
    }

    .pk-step-label {
        font-size: 8px;
        margin-top: 5px;
    }

    .pk-card {
        padding: 14px;
        border-radius: 13px;
    }

    .pk-preview-card {
        padding: 13px;
        border-radius: 13px;
    }

    .pk-section-title {
        font-size: 17px;
        margin-bottom: 13px;
    }

    .pk-form-grid {
        gap: 11px;
    }

    .pk-options-grid {
        gap: 7px;
    }

    .pk-btn {
        padding: 9px 18px;
        font-size: 11px;
    }
}

/* ========== TABLET MEDIUM (576px - 768px) ========== */
@media (min-width: 576px) {
    #pk-konfigurator {
        max-width: 100%;
        padding: 12px;
    }

    .pk-stepper {
        margin-bottom: 20px;
        padding: 0 8px;
    }

    .pk-step-circle {
        width: 32px;
        height: 32px;
        font-size: 13px;
        border-width: 2px;
    }

    .pk-step-label {
        font-size: 8px;
        margin-top: 6px;
    }

    .pk-card {
        padding: 16px;
        border-radius: 14px;
    }

    .pk-preview-card {
        padding: 14px;
        border-radius: 14px;
    }

    .pk-section-title {
        font-size: 18px;
        margin-bottom: 14px;
    }

    .pk-form-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

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

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

    .pk-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
	
		.pk-preview-card {padding: 16px;
    border-radius: 15px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;}
	
	.pk-preview-svg-wrap {width: 40%;}
	
}

/* ========== TABLET LARGE (768px - 992px) ========== */
@media (min-width: 768px) {
    #pk-konfigurator {
        max-width: 100%;
        padding: 14px;
    }
	
	.pk-preview-card {padding: 16px;
    border-radius: 15px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;}
	
	.pk-preview-svg-wrap {width: 40%;}

    .pk-stepper {
        margin-bottom: 24px;
        padding: 0 10px;
    }

    .pk-step-circle {
        width: 34px;
        height: 34px;
        font-size: 14px;
        border-width: 3px;
    }

    .pk-step-label {
        font-size: 9px;
        margin-top: 7px;
    }

    .pk-card {
        padding: 20px;
        border-radius: 15px;
    }

    .pk-preview-card {
        padding: 16px;
        border-radius: 15px;
    }

    .pk-section-title {
        font-size: 19px;
        margin-bottom: 15px;
    }

    .pk-form-grid {
        grid-template-columns: 1fr 1fr;
        gap: 13px;
    }

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

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

    .pk-btn {
        padding: 10px 22px;
        font-size: 12px;
    }
}

/* ========== DESKTOP SMALL (992px - 1200px) ========== */
@media (min-width: 992px) {
    #pk-konfigurator {
        max-width: 1100px;
        margin: 0 auto;
        padding: 16px;
    }
	
	.pk-preview-card {padding: 16px;
    border-radius: 15px;
    text-align: revert;
    display: revert;
    justify-content: revert;
    align-items: revert;}
	
	.pk-preview-svg-wrap {width: 100%;}

    .pk-main-layout {
        grid-template-columns: 1fr 300px;
        gap: 20px;
    }

    .pk-stepper {
        margin-bottom: 28px;
        padding: 0 12px;
    }

    .pk-step-circle {
        width: 36px;
        height: 36px;
        font-size: 14px;
        border-width: 3px;
    }

    .pk-step-label {
        font-size: 9px;
        margin-top: 8px;
    }

    .pk-card {
        padding: 24px;
        border-radius: 16px;
        min-height: 500px;
    }

    .pk-preview-card {
        padding: 18px;
        border-radius: 16px;
        position: sticky;
        top: 20px;
    }

    .pk-preview-svg-wrap {
        aspect-ratio: 3/4;
    }

    .pk-section-title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .pk-form-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .pk-options-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

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

    .pk-btn {
        padding: 10px 25px;
        font-size: 12px;
    }
}

/* ========== DESKTOP MEDIUM (1200px - 1500px) ========== */
@media (min-width: 1200px) {
    #pk-konfigurator {
        max-width: 1200px;
        padding: 18px;
    }

    .pk-main-layout {
        grid-template-columns: 1fr 320px;
        gap: 25px;
    }

    .pk-stepper {
        margin-bottom: 30px;
        padding: 0 14px;
    }

    .pk-step-circle {
        width: 36px;
        height: 36px;
        font-size: 14px;
        border-width: 3px;
    }

    .pk-step-label {
        font-size: 10px;
        margin-top: 8px;
    }

    .pk-card {
        padding: 28px;
        border-radius: 16px;
        min-height: 550px;
    }

    .pk-preview-card {
        padding: 20px;
        border-radius: 16px;
        position: sticky;
        top: 20px;
    }

    .pk-preview-svg-wrap {
        aspect-ratio: 3/4;
    }

    .pk-section-title {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .pk-form-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .pk-options-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .pk-btn {
        padding: 10px 25px;
        font-size: 12px;
    }
}

/* ========== DESKTOP LARGE (1500px+) ========== */
@media (min-width: 1500px) {
    #pk-konfigurator {
        max-width: 1400px;
        padding: 20px;
    }

    .pk-main-layout {
        grid-template-columns: 1fr 340px;
        gap: 30px;
    }

    .pk-stepper {
        margin-bottom: 35px;
        padding: 0 16px;
    }

    .pk-step-circle {
        width: 38px;
        height: 38px;
        font-size: 15px;
        border-width: 3px;
    }

    .pk-step-label {
        font-size: 10px;
        margin-top: 9px;
    }

    .pk-card {
        padding: 32px;
        border-radius: 18px;
        min-height: 600px;
    }

    .pk-preview-card {
        padding: 22px;
        border-radius: 18px;
        position: sticky;
        top: 30px;
    }

    .pk-section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .pk-form-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

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

    .pk-btn {
        padding: 11px 28px;
        font-size: 13px;
    }
}/* End custom CSS */