.parke-showcase {
    position: relative;
    width: 100%;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    outline: none;
    --parke-duration: 600ms;
    display: flex;
    align-items: stretch;
    gap: 16px;
    height: 580px;
}

/* ============ STAGE: Sol oda görseli ============ */
.parke-stage {
    position: relative;
    flex: 1;
    height: 100%;
    background: #f3f3f3;
    overflow: hidden;
    min-width: 0;
}

.parke-room-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.parke-room-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.parke-room-current { z-index: 1; }
.parke-room-next    { z-index: 2; opacity: 0; pointer-events: none; }

/* ============ GEÇİŞ EFEKTLERİ ============ */
.parke-effect-fade .parke-room-next.is-entering {
    animation: parke-fade-in var(--parke-duration) ease forwards;
}
@keyframes parke-fade-in { from { opacity: 0; } to { opacity: 1; } }

.parke-effect-crossfade .parke-room-next.is-entering {
    animation: parke-crossfade-in var(--parke-duration) ease forwards;
}
.parke-effect-crossfade .parke-room-current.is-leaving {
    animation: parke-crossfade-out var(--parke-duration) ease forwards;
}
@keyframes parke-crossfade-in  { from { opacity: 0; } to { opacity: 1; } }
@keyframes parke-crossfade-out { from { opacity: 1; } to { opacity: 0; } }

.parke-effect-slide .parke-room-next.is-entering {
    animation: parke-slide-in-right var(--parke-duration) cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.parke-effect-slide .parke-room-current.is-leaving {
    animation: parke-slide-out-left var(--parke-duration) cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.parke-effect-slide[data-direction="prev"] .parke-room-next.is-entering {
    animation-name: parke-slide-in-left;
}
.parke-effect-slide[data-direction="prev"] .parke-room-current.is-leaving {
    animation-name: parke-slide-out-right;
}
@keyframes parke-slide-in-right  { from { opacity: 1; transform: translateX(100%); }  to { opacity: 1; transform: translateX(0); } }
@keyframes parke-slide-out-left  { from { opacity: 1; transform: translateX(0); }     to { opacity: 1; transform: translateX(-100%); } }
@keyframes parke-slide-in-left   { from { opacity: 1; transform: translateX(-100%); } to { opacity: 1; transform: translateX(0); } }
@keyframes parke-slide-out-right { from { opacity: 1; transform: translateX(0); }     to { opacity: 1; transform: translateX(100%); } }

.parke-effect-zoom .parke-room-next.is-entering {
    animation: parke-zoom-in var(--parke-duration) cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.parke-effect-zoom .parke-room-current.is-leaving {
    animation: parke-zoom-out var(--parke-duration) cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes parke-zoom-in  { from { opacity: 0; transform: scale(1.15); } to { opacity: 1; transform: scale(1); } }
@keyframes parke-zoom-out { from { opacity: 1; transform: scale(1); }    to { opacity: 0; transform: scale(0.95); } }

.parke-effect-none .parke-room-next.is-entering { opacity: 1; }

/* ============ STAGE OKLARI ============ */
.parke-nav-stage {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.92);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    transition: background 0.2s, transform 0.15s;
    z-index: 10;
}

.parke-nav-stage:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.08);
}

.parke-prev-stage { left: 16px; }
.parke-next-stage { right: 16px; }

/* ============ PANEL: Sağ taraf ============ */
.parke-panel {
    width: 320px;
    flex-shrink: 0;
    height: 100%;
    background: #ffffff;
    color: #1a1a1a;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.parke-big-area {
    position: relative;
    flex: 0 0 auto;
    height: 45%;
    background: #eee;
    overflow: hidden;
}

.parke-big-swatch {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.parke-nav-panel {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.35);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    padding: 0;
    transition: background 0.2s, transform 0.15s;
    z-index: 5;
}

.parke-nav-panel:hover {
    background: rgba(0, 0, 0, 0.55);
    transform: translateY(-50%) scale(1.1);
}

.parke-prev-panel { left: 8px; }
.parke-next-panel { right: 8px; }

.parke-swatches {
    display: flex;
    gap: 10px;
    padding: 14px 18px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 1px solid #e8e8e8;
}

.parke-swatch {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    padding: 0;
    background-color: #eee;
    background-size: cover;
    background-position: center;
    transition: transform 0.15s, border-color 0.2s;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.parke-swatch:hover { transform: scale(1.12); }

.parke-swatch.is-active {
    border-color: #1a1a1a;
    box-shadow: inset 0 0 0 2px #fff;
}

.parke-info {
    flex: 1;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow-y: auto;
}

.parke-series-name {
    font-size: 13px;
    letter-spacing: 1.5px;
    color: #1a1a1a;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
    transition: opacity 0.2s ease;
}

.parke-model-code {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.5px;
    line-height: 1.1;
    margin: -8px 0 4px;
}

.parke-specs {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: auto;
}

.parke-spec-row {
    display: flex;
    gap: 4px;
    font-size: 13px;
    line-height: 1.6;
}

.parke-spec-label {
    color: #666666;
    font-weight: 600;
    flex-shrink: 0;
}

.parke-spec-value {
    color: #1a1a1a;
    font-weight: 400;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
    .parke-showcase {
        flex-direction: column;
        height: auto !important;
    }
    .parke-stage {
        flex: 0 0 auto;
        height: 360px;
    }
    .parke-panel {
        width: 100% !important;
        height: auto;
    }
    .parke-big-area {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .parke-stage { height: 280px; }
    .parke-big-area { height: 180px; }
    .parke-info { padding: 14px 16px; }
    .parke-model-code { font-size: 24px; }
    .parke-nav-stage { width: 36px; height: 36px; }
    .parke-prev-stage { left: 8px; }
    .parke-next-stage { right: 8px; }
}
