.product-tabs {
    margin-top: 18px;
}

.tab-buttons-scroll {
    width: 100%;
    margin-bottom: 30px;
    overflow: hidden;
}

.tab-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scroll-padding-left: 0;
    scroll-padding-right: 0;
    padding-bottom: 10px;
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
    cursor: grab;
    touch-action: pan-x;
}

.tab-buttons.is-dragging {
    cursor: grabbing;
    user-select: none;
    scroll-snap-type: none;
}

.tab-buttons.is-dragging .tab-btn {
    pointer-events: none;
}

.tab-buttons::-webkit-scrollbar {
    height: 6px;
}

.tab-buttons::-webkit-scrollbar-thumb {
    background: rgba(211, 46, 18, 0.45);
    border-radius: 4px;
}

.tab-btn {
    flex: 0 0 auto;
    scroll-snap-align: start;
    white-space: nowrap;
    padding: 26px 92px;
    border: none;
    background: #eee;
    cursor: pointer;
    font-family: Mulish;
    font-weight: 400;
    font-style: regular;
    font-size: 20px;
    border-radius: 6px;
    color: #555555;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.tab-btn span {
    font-family: Mulish;
    font-weight: 800;
    font-style: Bold;
    font-size: 28px;
    margin-right: 8px;
    color: #D32E12;
}

.tab-btn.active span {
    background: #e50000;
    color: #fff !important;
}

.tab-btn.active {
    background: #e50000;
    color: #fff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-btn:hover {
    background: #d40000;
    color: #fff;
}

.tab-btn:hover span {
    background: #d40000;
    color: #fff;
}

.certificate-card {
    position: relative;
}

.certificate-card img {
    width: 100%;
    height: 474px;
    object-fit: cover;
    object-position: left;
}

.certificate-title {
    font-family: Mulish;
    color: #000000;
    font-weight: 600;
    font-size: 18px;
    position: absolute;
    bottom: 20px;
    background: #F2F2F2;
    padding: 10px 24px;
    border-radius: 0 12px 0 0;
    /* sağ üst köşe */
}

@media (max-width: 991.98px) {
    .tab-buttons-scroll {
        margin-left: -15px;
        margin-right: -15px;
        margin-bottom: 24px;
    }

    .tab-buttons {
        scroll-padding-left: 15px;
        scroll-padding-right: 15px;
        padding: 0 15px 12px;
    }

    .tab-btn {
        padding: 18px 24px;
        font-size: 16px;
    }

    .tab-btn span {
        font-size: 22px;
    }
}

@media (max-width: 575.98px) {
    .tab-btn {
        padding: 14px 18px;
        font-size: 14px;
    }

    .tab-btn span {
        font-size: 18px;
        margin-right: 6px;
    }
}