.scientific-output {
    background: #FAF8F9;
    padding: 100px 0 140px 0;
    position: relative;
}

.output-wrapper {
    max-width: 1440px;
	padding: 140px 5% 160px;
    padding: 0; /* BERSIH */
    position: relative;
    overflow: visible;
}

.apple-slider-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 22px; /* SNAP PRESISI */
    gap: 20px;
    scrollbar-width: none;
    padding: 40px 20px 20px 20px; /* NAPAS KIRI KANAN */
    -webkit-overflow-scrolling: touch;
}
.apple-slider-container::-webkit-scrollbar { display: none; }

.product-card-luxury {
    flex: 0 0 484px;
    scroll-snap-align: start;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.product-card-luxury:hover {
    transform: translateY(-4px);
}

.product-card-luxury:hover .card-visual {
    box-shadow: 0 2px 2px rgba(0,0,0,0.2);
}

.card-link-wrapper {
    display: block;
    text-decoration: none;
}

.card-visual {
    position: relative;
    width: 100%;
    height: 520px;
    border-radius: 18px;
    overflow: hidden;
    background: #f5f5f7;
    transition: box-shadow 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.card-info {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    padding: 44px;
    width: 100%;
}

.card-info h3 {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: #fff;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.lab-stat {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: -0.022em;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    color: #fff;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: rgba(0,0,0,0.35);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-50%) scale(1.08);
}

.nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.nav-btn.prev {
    left: 44px; /* 22 + 22 */
}

.nav-btn.next {
    right: 44px;
}

.nav-btn svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 734px) {
    .scientific-output {
        padding: 20px 0 60px 0;
    }
    .apple-slider-container {
        padding: 8px 16px 20px 16px; /* Mobile napas dikit */
        scroll-padding: 0 16px;
    }
    .product-card-luxury {
        flex: 0 0 85%;
    }
    .card-visual {
        height: 480px;
    }
    .card-info {
        padding: 32px;
    }
    .card-info h3 {
        font-size: 32px;
    }
    .nav-btn {
        width: 44px;
        height: 44px;
    }
    .nav-btn.prev {
        left: 20px;
    }
    .nav-btn.next {
        right: 20px;
    }
}


