/* =====================
   PRODUCT SHOWCASE - VIEW 10 (Rousseau Style)
   ===================== */

.product-showcase {
    width: 100%;
    background: #f5f5f5;
    padding: 60px 0;
}

.product-showcase-inner {
    display: flex;
    gap: 40px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    align-items: flex-start;
}

.showcase-card-img {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.showcase-cat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 25px 18px 25px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #000871;
    border-left: none;
    border-bottom: 1px solid #ddd;
    transition: all 0.15s ease;
    user-select: none;
    background: transparent;
    border-radius: 0;
    gap: 100px;
}

.showcase-cat-item:first-child {
    border-top: 1px solid #ddd;
}

.showcase-cat-item:hover {
    color: #f39c12;
    background: transparent;
}

.showcase-cat-item.active {
    background: #000871;
    color: #f39c12;
    border-bottom-color: #000871;
    border-top-color: #000871;
    font-weight: 300;
}

.showcase-cat-item i {
    font-size: 14px;
    color: inherit;
    transition: color 0.15s;
    opacity: 0.7;
}

.showcase-cat-item.active i {
    color: #ffffff;
    opacity: 1;
}

.showcase-cat-item:hover i {
    color: #f39c12;
}

/* SAĞ: Panel */
.showcase-panels {
    flex: 1;
    min-width: 0;
    padding: 0;
    background: transparent;
    overflow: visible;
}

.showcase-panel {
    display: none;
    overflow: visible;
}

.showcase-panel.active {
    display: block;
    overflow: visible;
}

/* Slider wrapper */
.showcase-slider-wrapper {
    position: relative;
    margin: -12px;
}

.showcase-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 12px;
    margin: -12px;
}

.showcase-slider::-webkit-scrollbar {
    display: none;
}

/* Kartlar */
.showcase-card {
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none !important;
    border: none;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    transition: all 0.25s ease;
    display: block;
    min-width: calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
    flex-shrink: 0;
    flex-grow: 0;
    scroll-snap-align: start;
}

.showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.14);
}

.showcase-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.showcase-card:hover .showcase-card-img img {
    transform: scale(1.04);
}

.showcase-card-no-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ddd;
    font-size: 48px;
}

.showcase-card-title {
    padding: 20px 24px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #f39c12;
    line-height: 1.35;
    transition: color 0.15s;
    background: #ffffff;
}

.showcase-card:hover .showcase-card-title {
    color: #000871;
}

/* Oklar - sol alt */
.showcase-nav {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    justify-content: flex-start;
}

.showcase-prev,
.showcase-next {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: #000871;
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
}

.showcase-prev:hover,
.showcase-next:hover {
    background: #f39c12;
    color: #ffffff;
}

.showcase-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    background: #fff;
    border-radius: 4px;
}

.showcase-cat-link {
    color: #000871;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}

.showcase-cat-link:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1100px) {
    .showcase-card { min-width: calc(50% - 12px); max-width: calc(50% - 12px); }
    .showcase-categories { width: 260px; min-width: 260px; }
}

@media (max-width: 768px) {
    .product-showcase { padding: 30px 0; }
    .product-showcase-inner {
        flex-direction: column;
        gap: 24px;
        padding: 0 16px;
    }
    .showcase-categories {
        width: 100%;
        min-width: unset;
        display: flex;
        overflow-x: auto;
        padding-bottom: 4px;
    }
    .showcase-cat-item {
        white-space: nowrap;
        border-bottom: none;
        border-top: none;
        border-right: 1px solid #ddd;
        padding: 12px 18px;
        flex-shrink: 0;
        font-size: 14px;
        gap: 15px;
    }
    .showcase-cat-item:first-child { border-top: none; }
    .showcase-cat-item.active { border-right-color: #000871; }
    .showcase-card { min-width: 100%; max-width: 100%; }
    .showcase-card-img { height: 180px; }
    .showcase-card-title { font-size: 15px; padding: 14px 16px 18px; }
}
