/* =========================================================
   INDEX - HERO SLIDER FINAL RESPONSIVE
========================================================= */

.showcase-slider-area,
.showcase-slider-area * {
    box-sizing: border-box;
}

.showcase-slider-area {
    width: 100%;
    padding: clamp(10px, 1.5vw, 18px) 0;
    background: var(--dynamic-hero-bg, #f3f4f6);
    overflow: hidden;
}

.showcase-slider-container {
    width: min(100% - 24px, 1680px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 2.15fr) minmax(300px, .85fr);
    gap: clamp(12px, 1.3vw, 20px);
    align-items: stretch;
}

.showcase-slider-left,
.showcase-slider-right {
    min-width: 0;
}

.showcase-slider-box {
    position: relative;
    overflow: hidden;
    border-radius: clamp(16px, 1.8vw, 28px);
    background: #0b1020;
    min-height: clamp(360px, 31vw, 560px);
    box-shadow: 0 16px 38px rgba(15,23,42,.10);
}

.showcase-slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform .65s ease;
    will-change: transform;
}

.showcase-slide-item {
    min-width: 100%;
    width: 100%;
    height: 100%;
    position: relative;
}

.showcase-slide-link {
    position: relative;
    display: block;
    width: 100%;
    height: clamp(360px, 31vw, 560px);
    text-decoration: none;
    overflow: hidden;
    background: #111827;
    color: inherit;
}

.showcase-slide-image-wrap {
    position: absolute;
    inset: 0;
}

.showcase-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(1.08) contrast(1.04) saturate(1.03);
}

.showcase-slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(0,0,0,.30), rgba(0,0,0,.08) 55%, rgba(0,0,0,0)),
        linear-gradient(0deg, rgba(0,0,0,.16), rgba(0,0,0,.02));
}

.showcase-slide-content {
    position: absolute;
    left: clamp(16px, 2vw, 34px);
    top: clamp(16px, 2vw, 34px);
    z-index: 2;
    width: min(460px, calc(100% - 32px));
    color: #fff;
    padding: clamp(14px, 1.4vw, 22px);
    border-radius: 20px;

    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.showcase-slide-title {
    margin: 0 0 10px;
    font-size: clamp(26px, 3.5vw, 56px);
    line-height: 1.05;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 3px 10px rgba(0,0,0,.20);
    letter-spacing: -.8px;
}

.showcase-slide-desc {
    margin: 0 0 14px;
    font-size: clamp(13px, 1vw, 16px);
    line-height: 1.6;
    color: rgba(255,255,255,.96);
}

.showcase-slide-desc p {
    margin: 0;
}

.showcase-slide-button {
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    background: var(--dynamic-button-bg, #2563eb);
    color: var(--dynamic-button-text, #ffffff);
    box-shadow: 0 10px 24px rgba(0,0,0,.16);
}

.showcase-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,.38);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-slider-prev {
    left: 12px;
}

.showcase-slider-next {
    right: 12px;
}

.showcase-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.showcase-slider-dot {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 999px;
    background: rgba(255,255,255,.55);
    cursor: pointer;
    padding: 0;
}

.showcase-slider-dot.active {
    width: 28px;
    background: #fff;
}

.showcase-side-box {
    background: #fff;
    border-radius: clamp(16px, 1.8vw, 28px);
    padding: clamp(14px, 1.3vw, 20px);
    height: 100%;
    min-height: clamp(360px, 31vw, 560px);
    box-shadow: 0 16px 38px rgba(15,23,42,.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.showcase-side-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 16px;
}

.showcase-side-head h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 900;
    color: #111827;
}

.showcase-side-head span {
    font-size: 12px;
    font-weight: 800;
    color: #64748b;
}

.showcase-side-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
    padding-right: 2px;
}

.showcase-side-item {
    display: grid;
    grid-template-columns: 66px minmax(0,1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid #edf1f5;
    border-radius: 18px;
    background: #fff;
    text-decoration: none;
}

.showcase-side-image {
    width: 66px;
    height: 66px;
    border-radius: 12px;
    overflow: hidden;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-side-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.showcase-side-info {
    min-width: 0;
}

.showcase-side-info h4 {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.35;
    color: #1e293b;
    font-weight: 800;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.showcase-side-price {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.showcase-side-price strong {
    color: #000;
    font-size: 14px;
    font-weight: 900;
}

.showcase-side-price del {
    color: #7c8698;
    font-size: 12px;
}

.showcase-side-link {
    color: #111827;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.showcase-side-empty {
    padding: 16px;
    border-radius: 14px;
    background: #f8fafc;
    color: #64748b;
    font-size: 14px;
}

/* Desktop geniş ekran */
@media (min-width: 1800px) {
    .showcase-slider-container {
        width: min(100% - 48px, 1760px);
    }
}

/* Laptop */
@media (max-width: 1199px) {
    .showcase-slider-container {
        grid-template-columns: 1fr;
    }

    .showcase-side-box {
        min-height: auto;
    }

    .showcase-side-list {
        overflow: visible;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .showcase-slide-link,
    .showcase-slider-box {
        min-height: 390px;
        height: 390px;
    }

    .showcase-slide-content {
        left: 14px;
        right: 14px;
        top: 14px;
        width: auto;
        max-width: none;
        padding: 14px;
        border-radius: 16px;
    }

    .showcase-slide-title {
        font-size: clamp(22px, 6vw, 34px);
    }

    .showcase-slide-desc {
        font-size: 13px;
    }
}

/* Mobil */
@media (max-width: 767px) {
    .showcase-slider-container {
        width: calc(100% - 16px);
    }

    .showcase-slide-link,
    .showcase-slider-box {
        height: 330px;
        min-height: 330px;
    }

    .showcase-slide-content {
        left: 12px;
        right: 12px;
        top: 12px;
        padding: 12px;
        border-radius: 14px;
    }

    .showcase-slide-title {
        font-size: 23px;
        line-height: 1.1;
    }

    .showcase-slide-desc {
        font-size: 12px;
        line-height: 1.45;
    }

    .showcase-slide-button {
        min-height: 34px;
        padding: 8px 12px;
        font-size: 11px;
    }

    .showcase-slider-nav {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .showcase-side-item {
        grid-template-columns: 58px minmax(0,1fr);
    }

    .showcase-side-link {
        grid-column: 2 / 3;
    }
}

/* Küçük mobil */
@media (max-width: 575px) {
    .showcase-slider-container {
        width: calc(100% - 12px);
    }

    .showcase-slide-link,
    .showcase-slider-box {
        height: 290px;
        min-height: 290px;
    }

    .showcase-slide-title {
        font-size: 20px;
    }

    .showcase-slide-desc {
        font-size: 11px;
    }
}